/*------------------------------------*\
    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;
}

.accordion-header {
  margin-bottom: 0px;
  margin-top: 0px;
}

.accordion-item + .accordion-item {
  margin-top: 0px;
}

/* 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: #111;
  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%;
}

.automation-mobile,
.automation-mobile-bg,
.automation-mobile-ca,
.automation-mobile-small,
.automation-mobile-big {
  display: none;
}

.automation-mobile-bg {
  display: none;
}

@media (max-width: 600px) {
  .video .video-player img.text-pattern {
    width: 60%;
    display: flex;
    margin: 0 auto;
  }
}

@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;
  }
}

/* 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);
}

.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: 600;
  line-height: 100%; /* 64px */
  letter-spacing: -1.92px;
  align-self: stretch;
}

.section-title-big {
  text-align: center;
  font-family: Manrope;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 79.2px */
  letter-spacing: -2.16px;
  background: linear-gradient(
    84deg,
    #0c1f1b -13.36%,
    #17463e 40.77%,
    #3dc8b3 94.91%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title-big-blue {
  text-align: center;
  font-family: Manrope;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 79.2px */
  letter-spacing: -2.16px;
  background: linear-gradient(
    84deg,
    #022950 -13.36%,
    #135da5 40.77%,
    #2391fa 94.91%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title-big-purple {
  text-align: center;
  font-family: Manrope;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 79.2px */
  letter-spacing: -2.16px;
  background: linear-gradient(
    84deg,
    #1c133e -13.36%,
    #492e9c 40.77%,
    #7548fa 94.91%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title-small {
  color: #216d61;
  text-align: center;
  font-family: Manrope;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 39.6px */
  letter-spacing: -0.72px;
}
.section-title-small-blue {
  color: #135da5;
  text-align: center;
  font-family: Manrope;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 39.6px */
  letter-spacing: -0.72px;
}
.section-title-small-purple {
  color: #5935b9;
  text-align: center;
  font-family: Manrope;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 39.6px */
  letter-spacing: -0.72px;
}

.section-subtitle,
.section-subtitle-desktop {
  color: #020106;
  text-align: center;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  align-self: stretch;
}

.section-subtitle-mobile {
  display: none;
}

.section-subtitle-blue {
  color: #020106;
  text-align: center;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  align-self: stretch;
  margin-top: 0px;
}

.test-container-mobile {
  display: none;
}

.hero-bg {
  background: url(https://rocketium.com/website/product-images/hero-bg.png);
  padding-bottom: 38px;
  border-radius: 64px;
}

.hero-bg-blue {
  background: url(https://rocketium.com/website/product-images/bg-hero-blue.png);
  padding-bottom: 38px;
  border-radius: 64px;
}

.hero-bg-purple {
  background: url(https://rocketium.com/website/product-images/bg-hero-purple.png);
  padding-bottom: 38px;
  border-radius: 64px;
}

.email-address::placeholder {
  color: #82899d;
  text-align: center;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.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: 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%);
}

.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;
}

.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;
}

.book-demo {
  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;
}

a.search-button {
  margin-right: 4px;
}

section.features.py-5 {
  background: #fff;
}

.list-rocketium {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px; /* Adjust spacing between items */
  color: #020106;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 24px 0;
}

.list-rocketium span {
  flex: 1; /* Makes all items occupy equal width */
}

.list-rocketium strong {
  font-weight: bold; /* Highlights the emphasized text */
}

.heading-rocketium {
  color: #020106;
  font-family: Manrope;
  font-size: 46px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 59.063px */
  margin-bottom: 24px;
}

.sub-heading-rocketium {
  color: #000;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.heading-section {
  color: #020106;
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
}

/* 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: 500;
  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;
}

/* Optionally add spacing between accordion items */
.accordion-item + .accordion-item {
  margin-top: 10px;
}

.accordion-body {
  color: #020106;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: 20px;
  margin-bottom: 20px;
}

.color-purple {
  color: #9a76fa;
}

span.red {
  background: linear-gradient(90deg, #f00050 0%, #cc0003 75.82%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.44px;
}

span.green {
  background: linear-gradient(250deg, #3dc8b3 14.17%, #216d61 65.16%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.button-rocketium {
  width: 435px;
  display: flex;
  padding: 8px 9px;
  align-items: center;
  gap: 8px;
  border-radius: 80px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(61, 200, 179, 0.25);
}

.without-rocketium {
  display: inline-flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 40px;
  background: linear-gradient(90deg, #f00050 0%, #c30003 98.83%);
  border: none;
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.with-rocketium {
  display: inline-flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 40px;
  background: linear-gradient(270deg, #216d61 1.38%, #40d3bc 98.07%);
  border: none;
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.comparison-container {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  min-height: 464px;
  box-shadow: 0px 4px 24px 0px rgba(62, 200, 179, 0.15) inset,
    0px 4px 250px 0px rgba(62, 200, 179, 0.15) inset;
}

button.without-rocketium:focus {
  border-radius: 40px;
  background: linear-gradient(90deg, #f00050 0%, #c30003 98.83%);
  box-shadow: 0px 8px 4px 0px rgba(0, 0, 0, 0.3) inset;
}

button.with-rocketium:focus {
  border-radius: 40px;
  background: linear-gradient(270deg, #216d61 1.38%, #40d3bc 98.07%);
  box-shadow: 0px 8px 4px 0px rgba(0, 0, 0, 0.3) inset;
}

.img-comp {
  width: 100%;
  height: 464px;
  border-radius: 40px;
}
.image-cont {
  position: relative;
  width: 1278px;
  height: 464px;
  border-radius: 10px;
  margin-top: 12px;
}

.circles-purple {
  width: 181.429px;
  height: 115.455px;
}

.background-image {
  width: 1268px;
  height: 464px;
  opacity: 0;
  animation: fadeIn 2.5s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.divider {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  animation: moveRightToLeft 0.7s forwards;
}
.divider:after {
  content: " ";
  display: block;
  height: 100%;
  border-left-width: var(--divider-width);
  border-left-style: solid;
  border-left-color: var(--divider-color);
  box-shadow: var(--divider-shadow);
}
.divider-mobile {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  animation: moveLeftToRightMobile 1s forwards;
}
.divider-mobile:after {
  content: " ";
  display: block;
  height: 100%;
  border-left-width: var(--divider-width);
  border-left-style: solid;
  border-left-color: var(--divider-color);
  box-shadow: var(--divider-shadow);
}
.divider-red {
  position: absolute;
  height: 100%;
  top: 0;
  right: 4%;
  animation: none;
}
.divider-red:after {
  content: " ";
  display: block;
  height: 100%;
  border-left-width: var(--divider-width);
  border-left-style: solid;
  border-left-color: var(--divider-color);
  box-shadow: var(--divider-shadow);
}
.divider-red-desktop {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0%;
  animation: moveRightToLeftDesktopDiv 0.7s forwards;
}
.divider-red-desktop:after {
  content: " ";
  display: block;
  height: 100%;
  border-left-width: var(--divider-width);
  border-left-style: solid;
  border-left-color: var(--divider-color);
  box-shadow: var(--divider-shadow);
}
.moving-svg-red-desktop {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  animation: moveRightToLeftDesktop 0.7s forwards;
}

.moving-svg {
  position: absolute;
  top: 50%;
  right: -3.2%;
  transform: translateY(-50%);
  animation: moveLeftToRight 0.7s forwards;
}

.moving-svg-red {
  position: absolute;
  top: 50%;
  right: -5.2%;
  transform: translateY(-50%);
  animation: none;
}
.moving-svg-mobile {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation: moveLeftToRightMobileSVG 1s forwards;
}

@keyframes moveLeftToRightMobile {
  from {
    right: 0%;
  }
  to {
    right: 96%;
  }
}
@keyframes moveLeftToRightMobileSVG {
  from {
    right: -3%;
  }
  to {
    right: 87%;
  }
}

@keyframes moveLeftToRight {
  from {
    right: -3%;
  }
  to {
    right: 96%;
  }
}
@keyframes moveRightToLeft {
  from {
    right: 0%;
  }
  to {
    right: 99%;
  }
}
@keyframes moveRightToLeftDesktop {
  from {
    left: 0%;
  }
  to {
    left: 97%;
  }
}
@keyframes moveRightToLeftDesktopDiv {
  from {
    left: 0%;
  }
  to {
    left: 100%;
  }
}

.g-mobile {
  display: none;
}

.draw {
  border-radius: 16.406px;
  border: 1.658px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 753.32px 210.547px 0px rgba(247, 68, 39, 0),
    0px 482.617px 192.773px 0px rgba(247, 68, 39, 0.01),
    0px 270.703px 162.695px 0px rgba(247, 68, 39, 0.02),
    0px 120.313px 120.313px 0px rgba(247, 68, 39, 0.04),
    0px 30.078px 65.625px 0px rgba(247, 68, 39, 0.04);
}

.camp-bg {
  width: 1309px;
  background: url(https://rocketium.com/website/product-images/camp1-bg.png);
}

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;
}

.hero-banner {
  width: 1255.322px;
  height: 669.791px;
}

/* 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;
  }

  .section-title-big {
    text-align: center;
    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 39.6px */
    letter-spacing: -1.44px;
    margin-bottom: 10px;
  }
}

footer#footer {
  background: linear-gradient(
    212deg,
    #fff 45.16%,
    rgba(154, 118, 250, 0.02) 361.46%
  );
  background-size: cover;
}

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.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;
}

h2.sign-up-heading-bg {
  color: #020106;
  text-align: center;
  font-family: Manrope;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -2px;
}

.internal-testimonials-1 {
  width: 1296px;
  height: 455px;
  border-radius: 40px;
  background: url(https://rocketium.com/website/product-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;
}

.internal-testimonials-ca-1 {
  width: 1296px;
  height: 455px;
  border-radius: 40px;
  background: url(https://rocketium.com/website/product-images/test-bg-purple.png) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.internal-testimonials-ca-2 {
  width: 1296px;
  height: 455px;
  border-radius: 40px;
  background: url(https://rocketium.com/website/product-images/test-bg-orange.png) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.internal-testimonials-blue-1 {
  width: 1296px;
  height: 455px;
  border-radius: 40px;
  background: url(https://rocketium.com/website/product-images/test-bg-blue1.png) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.internal-testimonials-blue-2 {
  width: 1296px;
  height: 455px;
  border-radius: 40px;
  background: url(https://rocketium.com/website/product-images/test-bg-blue2.png) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.internal-testimonials-2 {
  width: 1296px;
  height: 455px;
  border-radius: 40px;
  background: url(https://rocketium.com/website/product-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 {
  height: 455px;
  border-radius: 40px;
  background: url(https://rocketium.com/website/product-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/product-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-orange {
  color: #e4750b;
  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;
}

/* Custom Previous Arrow */
.swiper-button-prev {
  background: none; /* Remove default background */
  background-image: url("https://rocketium.com/website/product-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: 12px 40px;
  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/product-images/right-icon.svg");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  width: auto;
  height: auto;
  padding: 12px 40px;
  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/product-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/product-images/left-icon-white.svg");
}

.container.testimonials-experience {
  margin-top: 36px;
  margin-bottom: 46px;
}

/* Optional: Positioning of the buttons */
.testimonials-swiper-button {
  position: relative;
  top: 0;
  display: inline-block;
}

.swiper-button-prev {
  margin-right: 5px;
}

.swiper-button-next {
  margin-left: 1rem;
  border-radius: 16px;
  border: 0.638px solid #020106;
}

.swiper-button-prev:after {
  content: "";
}

.swiper-button-next:after {
  content: "";
}

/* Custom Styles */

.growth {
  background: url(https://rocketium.com/website/product-images/growth-bg.png);
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 80px;
}

.growth-purple {
  background: linear-gradient(
    91deg,
    #3e247d -34%,
    #5935b9 60.06%,
    #b89dff 154.12%
  );
  padding-top: 80px;
  padding-bottom: 80px;
}
.growth-blue {
  background: linear-gradient(
    90deg,
    #005bb2 5.94%,
    #3f98ee 65.06%,
    #aad4fd 124.18%
  );
  padding-top: 80px;
  padding-bottom: 80px;
}
.heading-automation {
  color: #020106;
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 78.75px */
  letter-spacing: -0.96px;
}

.heading-auto {
  width: 460px;
  color: #020106;
  font-family: Manrope;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 45.938px */
  margin-bottom: 36px;
  margin-top: 0px;
}

.heading-auto-ca {
  width: 477px;
  color: #020106;
  font-family: Manrope;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 45.938px */
  margin-bottom: 36px;
}

.text-auto {
  width: 485px;
  color: #020106;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-automation {
  position: relative;
  background: radial-gradient(
    100% 50% at 0% 50%,
    rgba(61, 200, 179, 0.4) 0%,
    rgba(61, 200, 179, 0) 100%
  );
  z-index: 0;
  animation: moveGradient 5s infinite alternate;
  background-size: 200%; /* Ensures smoother transitions */
}

.section-automation-green {
  position: relative;
  background: radial-gradient(
    100% 50% at 0% 50%,
    rgba(61, 200, 179, 0.4) 0%,
    rgba(61, 200, 179, 0) 100%
  );
  z-index: 0;
  animation: reverseMoveGradient 5s infinite alternate;
  background-size: 200%; /* Ensures smoother transitions */
}

@keyframes moveGradient {
  0% {
    background: radial-gradient(
      100% 50% at 0% 50%,
      rgba(61, 200, 179, 0.4) 0%,
      rgba(61, 200, 179, 0) 100%
    );
  }
  25% {
    background: radial-gradient(
      100% 50% at 25% 50%,
      rgba(61, 200, 179, 0.35) 0%,
      rgba(61, 200, 179, 0) 100%
    );
  }
  50% {
    background: radial-gradient(
      100% 50% at 50% 50%,
      rgba(61, 200, 179, 0.3) 0%,
      rgba(61, 200, 179, 0) 100%
    );
  }
  75% {
    background: radial-gradient(
      100% 50% at 75% 50%,
      rgba(61, 200, 179, 0.35) 0%,
      rgba(61, 200, 179, 0) 100%
    );
  }
  100% {
    background: radial-gradient(
      100% 50% at 100% 50%,
      rgba(61, 200, 179, 0.4) 0%,
      rgba(61, 200, 179, 0) 100%
    );
  }
}

@keyframes reverseMoveGradient {
  0% {
    background: radial-gradient(
      100% 50% at 100% 50%,
      rgba(61, 200, 179, 0.4) 0%,
      rgba(61, 200, 179, 0) 100%
    );
  }
  25% {
    background: radial-gradient(
      100% 50% at 75% 50%,
      rgba(61, 200, 179, 0.35) 0%,
      rgba(61, 200, 179, 0) 100%
    );
  }
  50% {
    background: radial-gradient(
      100% 50% at 50% 50%,
      rgba(61, 200, 179, 0.3) 0%,
      rgba(61, 200, 179, 0) 100%
    );
  }
  75% {
    background: radial-gradient(
      100% 50% at 25% 50%,
      rgba(61, 200, 179, 0.35) 0%,
      rgba(61, 200, 179, 0) 100%
    );
  }
  100% {
    background: radial-gradient(
      100% 50% at 0% 50%,
      rgba(61, 200, 179, 0.4) 0%,
      rgba(61, 200, 179, 0) 100%
    );
  }
}

.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;
}

.section-automation-blue {
  position: relative;
  background: radial-gradient(
    100% 50% at 0% 50%,
    rgba(35, 145, 250, 0.4) 0%,
    rgba(35, 145, 250, 0) 100%
  );
  z-index: 0; /* Ensures it stays behind the row */
  animation: moveBlueGradient 5s infinite alternate;
  background-size: 200%;
}

@keyframes moveBlueGradient {
  0% {
    background: radial-gradient(
      100% 50% at 0% 50%,
      rgba(35, 145, 250, 0.4) 0%,
      rgba(35, 145, 250, 0) 100%
    );
  }
  25% {
    background: radial-gradient(
      100% 50% at 25% 50%,
      rgba(35, 145, 250, 0.35) 0%,
      rgba(35, 145, 250, 0) 100%
    );
  }
  50% {
    background: radial-gradient(
      100% 50% at 50% 50%,
      rgba(35, 145, 250, 0.3) 0%,
      rgba(35, 145, 250, 0) 100%
    );
  }
  75% {
    background: radial-gradient(
      100% 50% at 75% 50%,
      rgba(35, 145, 250, 0.35) 0%,
      rgba(35, 145, 250, 0) 100%
    );
  }
  100% {
    background: radial-gradient(
      100% 50% at 100% 50%,
      rgba(35, 145, 250, 0.4) 0%,
      rgba(35, 145, 250, 0) 100%
    );
  }
}

.section-automation-purple {
  position: relative;
  background: radial-gradient(
    100% 50% at 0% 50%,
    rgba(119, 72, 250, 0.4) 0%,
    rgba(119, 72, 250, 0) 100%
  );
  z-index: 0; /* Ensures it stays behind the row */
  animation: movePurpleGradient 5s infinite alternate;
  background-size: 200%;
}

@keyframes movePurpleGradient {
  0% {
    background: radial-gradient(
      100% 50% at 0% 50%,
      rgba(119, 72, 250, 0.4) 0%,
      rgba(119, 72, 250, 0) 100%
    );
  }
  25% {
    background: radial-gradient(
      100% 50% at 25% 50%,
      rgba(119, 72, 250, 0.35) 0%,
      rgba(119, 72, 250, 0) 100%
    );
  }
  50% {
    background: radial-gradient(
      100% 50% at 50% 50%,
      rgba(119, 72, 250, 0.3) 0%,
      rgba(119, 72, 250, 0) 100%
    );
  }
  75% {
    background: radial-gradient(
      100% 50% at 75% 50%,
      rgba(119, 72, 250, 0.35) 0%,
      rgba(119, 72, 250, 0) 100%
    );
  }
  100% {
    background: radial-gradient(
      100% 50% at 100% 50%,
      rgba(119, 72, 250, 0.4) 0%,
      rgba(119, 72, 250, 0) 100%
    );
  }
}

.automation {
  height: 780px;
  position: relative; /* Ensures it appears above the parent */
  background: url(https://rocketium.com/website/product-images/auto-bg.png) no-repeat center center;
  background-size: cover;
  z-index: 1; /* Places it above the parent gradient */
  margin-bottom: 50px;
  /* Use Flexbox to center content */
  display: flex;
  align-items: center; /* Centers content vertically */
  justify-content: flex-start; /* Aligns content to the left */
}

.automation-blue {
  height: 780px;
  position: relative; /* Ensures it appears above the parent */
  background: url(https://rocketium.com/website/product-images/auto-bg-bgov.png) no-repeat center center;
  background-size: cover;
  z-index: 1; /* Places it above the parent gradient */
  margin-bottom: 50px;
  /* Use Flexbox to center content */
  display: flex;
  align-items: center; /* Centers content vertically */
  justify-content: flex-start; /* Aligns content to the left */
}

.automation2 {
  height: 780px;
  position: relative; /* Ensures it appears above the parent */
  background: url(https://rocketium.com/website/product-images/auto-bg1.png) no-repeat center center;
  background-size: cover;
  z-index: 1; /* Places it above the parent gradient */
  margin-bottom: 50px;
  /* Use Flexbox to center content */
  display: flex;
  align-items: center; /* Centers content vertically */
  justify-content: flex-start; /* Aligns content to the left */
}

.automation2-blue {
  height: 780px;
  position: relative; /* Ensures it appears above the parent */
  background: url(https://rocketium.com/website/product-images/auto-bg1-bgov.png) no-repeat center center;
  background-size: cover;
  z-index: 1; /* Places it above the parent gradient */
  margin-bottom: 50px;
  /* Use Flexbox to center content */
  display: flex;
  align-items: center; /* Centers content vertically */
  justify-content: flex-start; /* Aligns content to the left */
}

.automation3 {
  height: 780px;
  position: relative; /* Ensures it appears above the parent */
  background: url(https://rocketium.com/website/product-images/auto-bg-ca.png) no-repeat center center;
  background-size: cover;
  z-index: 1; /* Places it above the parent gradient */
  margin-bottom: 50px;
  /* Use Flexbox to center content */
  display: flex;
  align-items: center; /* Centers content vertically */
  justify-content: flex-start; /* Aligns content to the left */
}

.automation3-purple {
  height: 780px;
  position: relative; /* Ensures it appears above the parent */
  background: url(https://rocketium.com/website/product-images/auto-bg-ca1.png) no-repeat center center;
  background-size: cover;
  z-index: 1; /* Places it above the parent gradient */
  margin-bottom: 50px;
  /* Use Flexbox to center content */
  display: flex;
  align-items: center; /* Centers content vertically */
  justify-content: flex-start; /* Aligns content to the left */
}

.green-section {
  width: 172px;
}

.auto-img {
  width: 698px;
  height: 700px;
  margin-top: -10px;
  margin-left: 120px;
}

.bg-auto-img {
  margin-left: 46px !important;
}

.auto-img2 {
  width: 690px;
  height: 690px;
  margin-top: 0px;
  margin-left: 38px;
}

.auto-col6 {
  padding-left: 65px;
}

.auto-col62 {
  margin-left: -80px;
  padding-left: 0px;
}

.auto-divider {
  margin-bottom: 20px;
}

.color-green {
  color: #3dc8b3;
}

.color-ca-purple {
  color: #5b34c4;
}

.color-blue {
  color: #31a8ff;
}

.color-bg-blue {
  color: #135da5;
}

.purple-mobile {
  display: none;
}

.color-bg-light-blue {
  color: #2391fa;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.color-light-green {
  color: #3dc8b3;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.color-light-purple {
  color: #835cea;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.growth-text {
  color: #fff;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 22.969px */
  margin-top: 16px;
  margin-bottom: 16px;
}

.case-studies {
  margin-top: 80px;
}

.case-studies-mobile {
  display: none;
}

.growth-subtext {
  width: 280px;
  color: #fff;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 21.328px */
}

.heading-section-white {
  color: #fff;
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: -0.96px;
}

.heading-light-green {
  color: #00ffd7;
}

.growth-sub-heading {
  width: 980px;
  color: #fff;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

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-bottom: 40px;
}

.case-studies-text {
  width: 442px;
  color: #020106;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 24px;
  margin-bottom: 24px;
}

.cs-bg-section-y {
  width: auto;
  height: 396px;
  background-image: url(https://rocketium.com/website/product-images/cs-bg2.png) !important;
  border-radius: 12px;
  margin: 30px 0px 0px 25px;
}

.nums {
  width: 540px;
  display: flex;
  gap: 36px;
  justify-content: space-between;
}

.case-study-item {
  min-width: 136px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.case-study-item2 {
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.case-study-item3 {
  min-width: 132px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

span.case-studies-number {
  color: #020106;
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 57.6px */
  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%; /* 21.6px */
}

p.cs-sub-text {
  color: #020106;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
}

.btn-group {
  width: 100%;
  padding: 12px;
  align-items: center;
  flex-shrink: 0;
}

.swiper-slide {
  display: flex;
  align-items: center;
}
.slide-content {
  width: 1280px;
  height: 457px;
  margin-left: 0;
  background-image: url(https://rocketium.com/website/product-images/bg-cs.png);
  background-repeat: no-repeat;
}

.square-box {
  width: 131px;
  height: 133px;
  position: absolute;
  top: 0rem;
  right: 1rem;
  cursor: pointer;
  display: none;
}

.test-sym {
  width: 64.513px;
  height: 55.906px;
  margin-bottom: 20px;
  margin-top: 0px;
}

.cs-num {
  width: 475px;
}
.slide-content img {
  border-radius: 1rem;
  width: 100%;
}
.slide-details {
  flex: 1;
  padding: 14px 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: 45rem;
  top: -3.5rem;
  display: inline-block;
}

.tabs-slider-prev {
  position: relative;
  left: 34rem;
  top: -3.5rem;
  display: inline-block;
}

.img-cs {
  width: auto !important;
}

.cs-bg-section {
  width: auto;
  height: 409px;
  background-image: url(https://rocketium.com/website/product-images/cs-bg1.png) !important;
  border-radius: 12px;
  margin: 24px 0px 24px 24px;
}

.cs-bg-section-p {
  width: auto;
  height: 409px;
  background-image: url(https://rocketium.com/website/product-images/cs-bg-p.png) !important;
  border-radius: 12px;
  margin: 24px 0px 24px 24px;
}

.cs-bg-section1 {
  width: auto;
  height: 409px;
  background-image: url(https://rocketium.com/website/product-images/cs-bg2.png) !important;
  background-size: cover;
  border-radius: 12px;
  margin: 24px 0px 24px 24px;
}

.cs-bg-section2 {
  width: auto;
  height: 409px;
  background-image: url(https://rocketium.com/website/product-images/cs-bg3.png) !important;
  border-radius: 12px;
  margin: 24px 0px 24px 24px;
}

.cs-bg-section2-lp {
  width: auto;
  height: 409px;
  background-image: url(https://rocketium.com/website/product-images/cs-bg3-lp.png) !important;
  border-radius: 12px;
  margin: 24px 0px 24px 24px;
}

.cs-bg-content {
  padding: 42px;
}

.cs-download {
  position: absolute;
  bottom: 6rem;
}

.cs-download-p {
  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%; /* 48px */
}

span.bold {
  font-weight: 700;
}

.hero-banner-gif {
  margin-top: 40px;
  text-align: -webkit-center;
}

.img-comp-container {
  position: relative;
  height: 429px; /*should be the same height as the product-images*/
}

.img-comp-img {
  position: absolute;
  width: auto;
  height: auto;
  overflow: hidden;
}

.img-comp-img img {
  display: block;
  vertical-align: middle;
}

.img-comp-slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  /*set the appearance of the slider:*/
  width: 40px;
  height: 40px;
  background-color: #2196f3;
  opacity: 0.7;
  border-radius: 50%;
}

.logo {
  height: 22.11px;
  width: 167px;
}

.section-title-mobile {
  display: none;
}

.d-flex-mobile {
  display: flex;
}

p.logo-text {
  margin-bottom: 40px;
}

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;
}
footer#footer {
  background: url(https://rocketium.com/website/product-images/footer-bg.png);
  background-size: cover;
}
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 */
}

.features-mobile {
  display: none;
}

.section-title-tab {
  display: none;
}
.mobile-nav {
  display: none;
}
@media (max-width: 375px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
  }

  * {
    box-sizing: border-box;
  }
  * {
    margin: 0;
    padding: 0;
  }
  /* Adjust for iPhone SE */
  .container {
    max-width: 100% !important;
    padding-left: 10px;
    padding-right: 10px;
  }
  .growth-subtext {
    width: 156px !important;
  }
}
/* General Reset for Mobile */
@media only screen and (max-width: 389px) {
  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;
  }
  .growth-subtext {
    width: 156px !important;
  }

  .section-subtitle {
    font-size: 16px !important;
  }

  .ai-section-heading {
    width: 100% !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: 0.25rem !important;
  }

  /* Adjust margins and paddings that might cause issues */
  * {
    margin: 0;
    padding: 0;
  }
}

@media only screen 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: 100% !important;
    font-size: 21px !important;
  }

  img.footer-medal {
    width: 336px !important;
  }

  .ai-mobile-case,
  .ai-mobile {
    width: 100% !important;
    max-width: 100vw;
  }

  .inner {
    margin-left: 1.5% !important;
  }

  * {
    margin: 0;
    padding: 0;
  }
}
/* 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;
  }
  * {
    margin: 0;
    padding: 0;
  }
  .growth-sub-heading {
    width: 340px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-left: -15px;
  }
  .growth-icon {
    max-height: 36px;
  }
  section.sign-up-testimonial {
    margin-top: 20px !important;
  }
  .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%
    );
  }
  .test-image-mobile {
    width: 262.518px;
    height: 60.781px;
  }
  .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;
  }
  .testimonials-text-mobile {
    color: #000;
    text-align: center;
    font-family: Manrope;
    font-size: 20px;
    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;
  }
  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;
  }
  .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;
  }
  .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,
  .internal-experience-new {
    display: none;
  }
  .login-section-mobile {
    display: block;
  }
  .login-button {
    text-align: left !important;
    margin-left: 0px !important;
  }
  .logo {
    height: 27px;
    width: 27px; /* Automatically adjusts width to maintain aspect ratio */
  }
  .section-title {
    display: none;
  }
  .ai-inner-img {
    margin-top: 1.5rem;
  }
  .purple-mobile {
    display: block;
  }
  .section-title-mobile {
    display: block;
    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.08px;
    background: linear-gradient(
      84deg,
      #0c1f1b -13.36%,
      #17463e 40.77%,
      #3dc8b3 94.91%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -1rem !important;
    margin-bottom: 0.5rem;
  }
  section.features.py-1 {
    display: none;
  }
  .hero-bg {
    padding-bottom: 20px;
    border-radius: 25px;
  }
  .section-title-small {
    color: #216d61;
    text-align: center;
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 25px;
    letter-spacing: 0;
  }
  .section-title-small-blue {
    text-align: center;
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 25px;
    letter-spacing: 0;
  }
  .section-subtitle {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 0px;
  }
  .section-subtitle-desktop {
    display: none;
  }
  .section-subtitle-mobile {
    display: block;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 0px;
  }
  .without-rocketium {
    font-size: 14px;
  }
  .with-rocketium {
    font-size: 14px;
  }
  .d-flex-mobile {
    display: inline-grid;
    gap: 12px;
  }
  .email-address {
    width: 330px;
  }
  .hero-banner {
    width: 369px;
    height: 384px;
  }
  .hero-banner-gif {
    margin-top: 24px;
  }
  .logo-bar {
    width: 366px;
    background: #e8daff;
    margin-left: 0.75rem;
    margin-top: -34px;
    border-radius: 24px;
    padding: 0px;
    padding-bottom: 26px !important;
    margin-bottom: 20px;
  }
  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;
  }

  section.content {
    display: none;
  }
  .case-studies-container {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  h2.case-study-header {
    color: #020106;
    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 36px */
    letter-spacing: -1.08px;
  }
  .btn-group {
    width: 80%;
    padding: 0px;
    align-items: center;
    flex-shrink: 0;
  }

  section.testimonials.py-5.bg-white {
    display: none;
  }

  section.case-studies.py5.bg-white {
    width: 100%;
    display: none;
  }

  .slide-content {
    width: 366px;
    height: 530px;
    margin-left: 4vw;
    background-image: none !important;
    background-repeat: no-repeat;
    border: 1px solid gainsboro;
    border-radius: 25px;
  }

  .g-mobile {
    display: block;
  }

  .camp-bg {
    width: 360px;
    background: url(https://rocketium.com/website/product-images/campign-bg.png);
    box-shadow: 0px 551px 154px 0px rgba(247, 68, 39, 0),
      0px 353px 141px 0px rgba(247, 68, 39, 0.01),
      0px 198px 119px 0px rgba(247, 68, 39, 0.02),
      0px 88px 88px 0px rgba(247, 68, 39, 0.04),
      0px 22px 48px 0px rgba(247, 68, 39, 0.04);
  }

  .cs-bg-section {
    width: 336px;
    height: 206px;
    background-image: url(https://rocketium.com/website/product-images/bg-case1.png) !important;
    background-repeat: no-repeat;
    border-radius: 4px;
    margin: 18px 0px 0px 28px;
  }
  .cs-bg-section-y {
    width: 336px;
    height: 206px;
    background-image: url(https://rocketium.com/website/product-images/bg-case2-p.png) !important;
    background-repeat: no-repeat;
    border-radius: 4px;
    margin: 18px 0px 0px 28px;
  }
  .cs-bg-section1 {
    width: 336px;
    height: 206px;
    background-image: url(https://rocketium.com/website/product-images/bg-case2.png) !important;
    background-repeat: no-repeat;
    border-radius: 4px;
    margin: 18px 0px 0px 28px;
  }
  .cs-bg-section2 {
    width: 336px;
    height: 206px;
    background-image: url(https://rocketium.com/website/product-images/bg-case3.png) !important;
    background-repeat: no-repeat;
    border-radius: 4px;
    margin: 18px 0px 0px 28px;
  }
  .cs-bg-section2-lp {
    width: 336px;
    height: 206px;
    background-image: url(https://rocketium.com/website/product-images/bg-case2-lp.png) !important;
    background-repeat: no-repeat;
    border-radius: 4px;
    margin: 18px 0px 0px 28px;
  }
  .cs-bg-section2-p {
    width: 336px;
    height: 206px;
    background-image: url(https://rocketium.com/website/product-images/bg-case2-p.png) !important;
    background-repeat: no-repeat;
    border-radius: 4px;
    margin: 18px 0px 0px 28px;
  }
  .cs-bg-section3 {
    width: 336px;
    height: 206px;
    background-image: url(https://rocketium.com/website/product-images/bg-case2.png) !important;
    background-repeat: no-repeat;
    border-radius: 4px;
    margin: 18px 0px 0px 28px;
  }
  .cs-image-text {
    color: #020106;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
  }
  /* .tab-content {
      margin-left: 1rem;
    } */
  .cs-bg-content {
    padding: 0px;
    width: 272px;
    margin-top: 14px;
    margin-left: 8px;
  }
  .cs-download {
    position: absolute;
    bottom: 20rem;
  }
  .case-studies-text {
    width: 324px;
    color: #020106;
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  span.case-studies-number {
    color: #020106;
    font-family: Manrope;
    font-size: 22.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -1.6px;
  }
  .slide-details {
    flex: 1;
    padding: 12px 0;
    margin-left: 30px;
  }
  .tabs-slider-prev {
    position: relative;
    left: -4rem;
    top: -2.5rem;
    display: inline-block;
  }

  .tabs-slider-next {
    position: relative;
    left: 7rem;
    top: -2.5rem;
    display: inline-block;
  }
  .row-case-studies {
    width: 334px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 10px;
  }
  span.cs-sub-text {
    color: #020106;
    font-family: Manrope;
    font-size: 11px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 16.8px */
  }
  p.cs-sub-text {
    margin-top: 0px;
    color: #020106;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
  }
  img.footer-logo {
    width: 100%;
    height: 53.902px;
    margin-top: 60px;
  }
  .experience {
    display: flex;
    width: 366px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 25.6px;
    background: rgba(255, 255, 255, 0.49);
    border: 0.6px solid rgba(2, 1, 6, 0.3);
    backdrop-filter: blur(25.449665069580078px);
  }
  button.primary-button {
    display: flex;
    padding: 12.681px 40.201px;
    justify-content: center;
    align-items: center;
    gap: 19.021px;
    border-radius: 38.042px;
    border: 2.378px solid #d3c6ff;
    background: linear-gradient(81deg, #8a3ffc -7.53%, #9a76fa 80.97%);
    color: #fff;
    text-align: center;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  h2.sign-up-heading {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
  }
  .case-studies-mobile {
    display: block;
  }
  .internal-experience {
    width: 330px;
    height: 250.96px;
    padding: 5px;
    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%
    );
  }
  .mobile-sign-up {
    display: none;
  }
  .email-address-mobile {
    width: 288px;
    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;
  }
  .hero-bg-blue,
  .hero-bg-purple {
    border-radius: 24px;
  }
  .primary-button-form {
    font-size: 18px;
  }
  .border-top.py-2 {
    display: none;
  }
  .email-address-mobile::placeholder {
    color: #82899d;
    font-size: 18px;
  }
  .mobile-sign {
    display: block;
  }
  section.case-studies-mobile.py2.bg-white {
    display: block;
  }
  .heading-rocketium {
    font-size: 24px;
    letter-spacing: -0.72px;
  }
  span.red {
    font-size: 24px;
    letter-spacing: -0.72px;
  }
  span.green {
    font-size: 24px;
    letter-spacing: -0.72px;
  }
  .background-image {
    width: 390px;
    height: auto;
  }
  .image-cont {
    position: relative;
    width: auto;
    height: auto;
    border-radius: 10px;
  }
  .button-rocketium {
    width: 333px;
    display: flex;
    padding: 8px 9px;
    align-items: center;
    gap: 8px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0px 0px 1.889px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
  }
  .features-mobile {
    display: block;
    position: relative; /* Required for positioning within the section */
    margin-top: 40px;
  }

  .button-rocketium {
    position: sticky;
    top: 0; /* Sticks the button section to the top of the viewport */
    background: white; /* Ensures the buttons have a background when fixed */
    z-index: 10; /* Keeps the buttons above other elements */
    padding: 10px 10px;
    text-align: center; /* Center-align buttons */
    border-bottom: 1px solid #ddd; /* Optional: Add a border for clarity */
  }
  .test-container-mobile {
    display: block;
  }
  .test-sym {
    margin-bottom: 30px;
    margin-top: 0px;
  }
  .heading-automation {
    color: #020106;
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.72px;
    margin-left: -15px;
  }
  .sub-heading-rocketium {
    color: #000;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 23.4px */
    margin-bottom: 20px;
  }
  .growth {
    background: linear-gradient(
      91deg,
      #1c4f48 -8.43%,
      #216d61 47.06%,
      #61f1da 138.94%
    );
  }
  ul.ul-list {
    padding: 0rem 2rem;
  }
  .automation {
    display: none;
  }
  .automation3 {
    display: none;
  }
  .automation3-purple {
    display: none;
  }

  .section-title-small-purple {
    color: #5935b9;
    text-align: center;
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 25px;
    letter-spacing: 0;
  }

  .section-title-big-blue {
    text-align: center;
    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -1.44px;
    background: linear-gradient(
      84deg,
      #022950 -13.36%,
      #135da5 40.77%,
      #2391fa 94.91%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
  }

  .section-title-big-purple {
    text-align: center;
    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -1.44px;
    background: linear-gradient(
      84deg,
      #1c133e -13.36%,
      #492e9c 40.77%,
      #7548fa 94.91%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
  }

  .img-circle-mobile {
    height: 54px;
  }

  .purple-desktop {
    display: none;
  }

  .row.automation2 {
    display: none;
  }
  section.features.py-5 {
    background: #fff;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .auto-img {
    width: 349px;
    height: 307px;
    margin-top: 6px;
    margin-left: 11px;
    margin-bottom: 5px;
  }
  .auto-img2 {
    width: 349px;
    height: 307px;
    margin-top: 6px;
    margin-left: px;
    margin-bottom: 5px;
  }
  .auto-img2-bg {
    width: 349px;
    height: 307px;
    margin-top: 6px;
    margin-left: 10px;
    margin-bottom: 5px;
  }
  .auto-img3 {
    width: 349px;
    height: 307px;
    margin-top: 0px;
    margin-left: 10px;
    margin-bottom: 5px;
  }
  .auto-img3-bg {
    width: 349px;
    height: 307px;
    margin-top: 6px;
    margin-left: 11px;
    margin-bottom: 5px;
  }
  .color-green {
    color: #3dc8b3;
    font-weight: 500;
  }
  .heading-auto {
    width: 366px;
    font-size: 20px;
    padding-left: 4px;
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .text-auto {
    width: 100%;
    font-size: 16px;
    line-height: 105%;
    margin-bottom: 12px;
  }

  .auto-text-container {
    width: 350px;
    padding: 8px 0px 0px 17px;
  }

  .auto-text-container-big {
    width: 350px;
    padding: 30px 0px 0px 17px;
  }

  .heading-section-white {
    color: #fff;
    font-family: Manrope;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 28.6px */
    letter-spacing: -0.66px;
    margin-left: -15px;
  }

  .g-desktop {
    display: none;
  }

  .g-mobile {
    padding-bottom: 2rem;
    padding-left: 1rem;
  }

  .growth,
  .growth-blue,
  .growth-purple {
    padding-top: 10px !important;
  }

  .growth-text {
    color: #fff;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .growth-subtext {
    width: 175px;
    color: #fff;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
  }

  .case-studies {
    display: none;
  }

  .automation-blue {
    display: none;
  }

  .automation2-blue {
    display: none;
  }

  .automation-mobile {
    display: inline-block;
    width: 100%;
    height: 610px;
    position: relative;
    background: url(https://rocketium.com/website/product-images/subtract.png) no-repeat center center;
    box-shadow: 0px 1.944px 11.664px 0px rgba(61, 200, 179, 0.05),
      0px 11.664px 11.664px 0px rgba(61, 200, 179, 0.05),
      0px 1.944px 11.664px 0px rgba(61, 200, 179, 0.05);
    background-size: cover;
    z-index: 1;
    border-radius: 12px;
    margin: auto;
  }
  .automation-mobile-big {
    display: inline-block;
    width: 100%;
    height: 670px;
    position: relative;
    background: url(https://rocketium.com/website/product-images/subtract.png) no-repeat center center;
    box-shadow: 0px 1.944px 11.664px 0px rgba(61, 200, 179, 0.05),
      0px 11.664px 11.664px 0px rgba(61, 200, 179, 0.05),
      0px 1.944px 11.664px 0px rgba(61, 200, 179, 0.05);
    background-size: cover;
    z-index: 1;
    border-radius: 12px;
    margin: auto;
    margin-bottom: 20px;
  }
  .automation-mobile-small {
    display: inline-block;
    width: 100%;
    height: 555px;
    position: relative;
    background: url(https://rocketium.com/website/product-images/substract-small.png) no-repeat center
      center;
    box-shadow: 0px 1.944px 11.664px 0px rgba(61, 200, 179, 0.05),
      0px 11.664px 11.664px 0px rgba(61, 200, 179, 0.05),
      0px 1.944px 11.664px 0px rgba(61, 200, 179, 0.05);
    background-size: cover;
    z-index: 1;
    border-radius: 12px;
    margin: auto;
    margin-bottom: 20px;
  }
  .automation-mobile-ca {
    display: inline-block;
    width: 100%;
    height: 610px;
    position: relative;
    background: url(https://rocketium.com/website/product-images/subtract.png) no-repeat center center;
    box-shadow: 0px 2px 12px 0px rgba(154, 118, 250, 0.05),
      0px 12px 12px 0px rgba(154, 118, 250, 0.05),
      0px 2px 12px 0px rgba(154, 118, 250, 0.05);
    background-size: cover;
    z-index: 1;
    border-radius: 12px;
    margin: auto;
    margin-bottom: 20px;
  }
  .automation-mobile-bg {
    display: inline-block;
    height: 610px;
    width: 100%;
    position: relative;
    background: url(https://rocketium.com/website/product-images/subtract.png) no-repeat center center;
    box-shadow: 0px 2px 12px 0px rgba(35, 145, 250, 0.05),
      0px 12px 12px 0px rgba(35, 145, 250, 0.05),
      0px 2px 12px 0px rgba(35, 145, 250, 0.05);
    background-size: cover;
    z-index: 1;
    border-radius: 12px;
    margin: auto;
    margin-bottom: 20px;
  }
  .feature-mobile-section {
    display: flex;
    gap: 48px;
    align-items: center;
  }
  .features-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 20px;
  }
  section.features-mobile.py-2 {
    display: block;
  }

  .features-image-container img {
    max-width: 100%; /* Ensures the image scales properly */
    height: auto; /* Maintains aspect ratio */
  }
  .features-text-y {
    color: #cb8f00;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 19.6px */
    margin-left: 24px;
  }
  .features-text-b {
    color: #057aeb;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 19.6px */
    margin-left: 24px;
  }
  .features-text-g {
    color: #198f39;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 19.6px */
    margin-left: 24px;
  }
  .features-text-r {
    color: #9e1b05;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 19.6px */
    margin-left: 24px;
  }
  .features-text-dr {
    color: #26b59f;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 19.6px */
    margin-left: 24px;
  }
  .sub-text-features {
    color: #020106;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-left: 24px;
    margin-right: 14px;
  }
  button.cs-download-button {
    border-radius: 73px;
    border: 1.5px solid #020106;
    padding: 3px 20px;
    background: transparent;
    color: #020106;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }
  /* Custom Previous Arrow */
  .features-swiper-button-prev {
    background: none; /* Remove default background */
    background-image: url("https://rocketium.com/website/product-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/product-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-slider-next {
    width: 24px;
    height: 24px;
    padding: 14px;
    position: relative;
    bottom: 25rem;
    left: 20rem;
  }
  .features-slider-prev {
    width: 24px;
    height: 24px;
    padding: 14px;
    position: relative;
    bottom: 25rem;
    left: -4.5rem;
  }
  .integrations-heading {
    color: #020106;
    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.44px;
  }
  .integrations-text {
    color: #020106;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.4px;
    margin-top: 0px;
  }

  section.integrations.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  #mobile-footer {
    display: block;
    margin-top: -3rem;
  }

  .accordion-header button {
    text-align: left;
    padding: 16px;
    color: #000;
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    margin-top: -10px;
    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;
  }
  .accordion-button:not(.collapsed) .arrow-icon {
    transform: rotate(180deg);
  }
  img.footer-logo {
    width: 204px;
    height: 27px;
    margin-top: 60px;
  }
  img.footer-medal {
    width: 350px;
    margin-top: 20px;
    margin-bottom: 14px;
  }
  #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);
  }

  .credits-section {
    align-items: center;
    gap: 24px;
  }

  .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;
  }

  .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;
  }

  .testimonials-experience {
    width: 100%;
    height: 520px;
    flex-shrink: 0;
  }

  .test-mobile-prev-next {
    text-align: center;
  }

  .internal-testimonials-1 {
    width: auto;
    height: 478px;
    padding: 60px;
    border-radius: 12px;
    background: url(https://rocketium.com/website/product-images/1.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .internal-testimonials-ca-1 {
    width: auto;
    height: 478px;
    padding: 60px;
    border-radius: 12px;
    background: url(https://rocketium.com/website/product-images/1.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .internal-testimonials-ca-2 {
    width: auto;
    height: 478px;
    padding: 60px;
    border-radius: 12px;
    background: url(https://rocketium.com/website/product-images/ca-bg-orange.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .internal-testimonials-blue-1 {
    width: auto;
    height: 478px;
    padding: 60px;
    border-radius: 12px;
    background: url(https://rocketium.com/website/product-images/test-bg-blue-mob.png) no-repeat center
      center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .internal-testimonials-blue-2 {
    width: auto;
    height: 478px;
    padding: 60px;
    border-radius: 12px;
    background: url(https://rocketium.com/website/product-images/test-bg-blue-mob2.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;
  }
  .testimonials-author-title-blue {
    font-size: 20px;
  }
  .testimonials-author-title-orange {
    font-size: 20px;
  }
  .testimonials-author-title-purple {
    font-size: 20px;
  }
  .internal-testimonials-2 {
    width: auto;
    height: 478px;
    padding: 60px;
    border-radius: 12px;
    background: url(https://rocketium.com/website/product-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: auto;
    height: 478px;
    padding: 60px;
    border-radius: 12px;
    background: url(https://rocketium.com/website/product-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: auto;
    height: 478px;
    padding: 60px;
    border-radius: 12px;
    background: url(https://rocketium.com/website/product-images/4.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .testimonials-text {
    font-size: 20px;
    padding: 0 0;
  }

  .test-container {
    display: none;
  }

  .heading-section {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.48px;
    margin-bottom: 20px;
  }

  .testimonials-swiper-button {
    position: relative;
    top: -3.5rem;
    right: 0rem;
    left: -1rem;
    display: inline-block;
  }
  .swiper-button-next {
    margin-left: 0rem;
    border-radius: 16px;
    border: 0.638px solid #020106;
  }
  section.testimonials-mobile {
    display: block;
  }
}

/* Styles for tablet portrait mode */
@media (min-width: 600px) and (max-width: 899px) {
  .section-subtitle-desktop {
    font-size: 22px;
  }
  section.sign-up-testimonial {
    margin-top: 0px !important;
  }
  .internal-experience-new {
    width: 650px !important;
    height: 290px !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 {
    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;
  }
  .section-title-small,
  .section-title-small-blue,
  .section-title-small-purple {
    font-size: 19.2px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 26.4px */
    letter-spacing: -0.384px;
  }

  .section-title-big,
  .section-title-big-blue,
  .section-title-big-purple {
    text-align: center;
    font-size: 38.4px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 52.8px */
    letter-spacing: -1.536px;
    margin-bottom: 5px;
  }

  h1.section-title.text-center.mt-4.aos-init.aos-animate {
    display: none;
  }

  .mt-4 {
    margin-top: 12.8px !important;
  }

  .hero-banner-gif {
    margin-top: 30px;
  }

  .section-title-tab {
    display: block;
    margin-top: 12.8px !important;
    margin-bottom: 8.5px;
  }

  .section-subtitle {
    width: 390.4px;
    color: #020106;
    text-align: center;
    font-family: Manrope;
    font-size: 12.8px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .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: 686.843px;
    height: 364.78px;
  }

  .button-rocketium {
    width: 272px;
  }

  .without-rocketium,
  .with-rocketium {
    font-size: 10.6px;
  }

  .heading-rocketium,
  span.red,
  span.green {
    font-size: 25.6px;
    letter-spacing: -0.768px;
    margin-bottom: 16px;
  }

  .circles-purple {
    height: 61.576px;
    width: 96.762px;
  }

  .sub-heading-rocketium {
    font-size: 12.6px;
  }

  .list-rocketium {
    font-size: 9.6px;
    margin: 16px 0;
  }

  .image-cont {
    width: 700px;
    height: 247.467px;
    margin-top: 8px;
  }

  .growth {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  @keyframes moveRightToLeftDesktop {
    from {
      left: 0%;
    }
    to {
      left: 95%;
    }
  }

  @keyframes moveLeftToRight {
    from {
      right: 0%;
    }
    to {
      right: 92%;
    }
  }

  @keyframes moveRightToLeft {
    from {
      right: 0%;
    }
    to {
      right: 98%;
    }
  }

  .background-image {
    width: 685px;
    height: 247.467px;
  }

  section.features.py-5 {
    background: #fff;
    margin-top: -3rem;
  }

  .heading-section {
    font-size: 25.6px;
    letter-spacing: -0.512px;
  }

  .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: 685px;
    height: 292px;
  }

  .testimonials-text {
    font-size: 19.2px;
    padding: 0px 80px;
    margin-bottom: 0;
  }

  .testimonials-author-title,
  .testimonials-author-title-blue,
  .testimonials-author-title-purple,
  .testimonials-author-title-orange {
    font-size: 19.2px;
  }

  .test-sym {
    width: 46px;
    margin-bottom: 20px;
    margin-top: 0px;
  }

  .container.testimonials-experience {
    margin-top: 19.2px;
    margin-bottom: 19.2px;
  }

  .heading-automation {
    width: 352px;
    font-size: 25.6px;
    letter-spacing: -0.512px;
  }

  .heading-auto,
  .heading-auto-ca {
    width: 260px;
    font-size: 19.2px;
    margin-bottom: 18px;
  }

  .text-auto {
    width: 270px;
    font-size: 9px;
    margin-bottom: 10.6px;
  }

  .auto-img {
    width: 373px;
    height: 373px;
    margin-top: 20px;
    margin-left: 74px;
  }

  .auto-divider {
    width: 257px;
    margin-bottom: 10.6px;
  }

  .auto-col6 {
    padding-left: 36px;
  }

  .auto-col62 {
    margin-left: -45px;
    padding-left: 0px;
  }

  .automation,
  .automation2,
  .automation-blue,
  .automation2-blue,
  .automation3,
  .automation3-purple {
    width: 730px;
    height: 430px;
  }

  .auto-img2 {
    width: 373px;
    height: 373px;
    margin-top: 25px;
    margin-left: 16px;
  }

  .bg-auto-img {
    margin-top: 33px !important;
    margin-left: 29px !important;
  }

  .heading-section-white {
    font-size: 25.6px;
    letter-spacing: -0.512px;
  }

  .growth-sub-heading {
    width: 406px;
    font-size: 12.8px;
  }

  .growth-text {
    font-size: 12.8px;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .growth-blue,
  .growth-purple {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .growth-subtext {
    width: 160px;
    font-size: 9.6px;
    margin-bottom: -20px;
  }

  .cs-image-text {
    font-size: 19.2px;
  }

  button.cs-download-button {
    font-size: 9.6px;
  }

  .case-studies {
    margin-top: 30px;
  }

  .case-studies-text {
    width: 227.2px;
    font-size: 9.6px;
    margin-top: 4px;
    margin-bottom: 12px;
  }

  .nums {
    width: 304.356px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
  }

  .cs-bg-content {
    padding: 27px 22px;
  }

  .slide-content {
    width: 682.667px;
    height: 243.743px;
    margin-left: 0;
    background-image: url(https://rocketium.com/website/product-images/bg-cs-tab-p.png);
    background-repeat: no-repeat;
  }

  .cs-bg-section {
    width: 330.667px;
    height: 218.133px;
    background-image: url(https://rocketium.com/website/product-images/cs-bg1.png) !important;
    border-radius: 12px;
    margin: 14px 0px 17px 17px;
  }

  .cs-bg-section-p {
    width: 330.667px;
    height: 218.133px;
    background-image: url(https://rocketium.com/website/product-images/cs-bg-p.png) !important;
    border-radius: 12px;
    margin: 14px 0px 17px 17px;
  }

  .cs-bg-section1 {
    width: 330.667px;
    height: 218.133px;
    background-image: url(https://rocketium.com/website/product-images/cs-bg2.png) !important;
    border-radius: 12px;
    margin: 14px 0px 17px 17px;
  }

  .cs-bg-section2-lp {
    width: 330.667px;
    height: 218.133px;
    background-image: url(https://rocketium.com/website/product-images/cs-bg3-lp.png) !important;
    border-radius: 12px;
    margin: 14px 0px 17px 17px;
  }

  .square-box {
    width: 69.371px;
    height: 70.847px;
    position: absolute;
    top: 0rem;
    right: 1rem;
  }

  .case-study-item,
  .case-study-item3,
  .case-study-item2 {
    min-width: 93px;
  }

  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;
  }
  .slide-details {
    flex: 1;
    padding: 12px 12px;
  }

  .tabs-slider-prev {
    left: 18.5rem;
    top: -2.5rem;
  }

  .tabs-slider-next {
    left: 25rem;
    top: -2.5rem;
  }

  .swiper-button-prev {
    background-size: 11px 11px;
    padding: 10px 24px;
  }

  .swiper-button-next {
    background-size: 11px 11px;
    padding: 10px 24px;
  }

  .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%; /* 57.6px */
    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;
  }

  .logo {
    width: 27.6px;
    height: 27.6px;
  }

  .col-3.col-lg-auto.book-demo {
    display: none;
  }

  .navbar-expand-lg .offcanvas {
    visibility: visible !important;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }

  #desktop-footer {
    display: block;
    margin-bottom: 24rem;
  }

  .nav-link {
    font-size: 11.662px;
  }

  .primary-button {
    font-size: 9.956px;
  }

  img.img-fluid.green-section {
    width: 92.191px;
    height: 58.667px;
  }
}

/* Styles for landscape tablets */
@media (min-width: 900px) and (max-width: 1180px) {
  .section-subtitle-desktop {
    font-size: 22px;
  }
  .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;
  }
  h1.section-title.text-center.mt-4.aos-init.aos-animate {
    margin-top: 5px !important;
    margin-bottom: 17px !important;
  }
  .section-title-small,
  .section-title-small-blue,
  .section-title-small-purple {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 26.4px */
    letter-spacing: -0.48px;
  }

  .section-title-big,
  .section-title-big-blue,
  .section-title-big-purple {
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 52.8px */
    letter-spacing: -1.92px;
  }

  .section-subtitle {
    color: #020106;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .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;
  }

  .button-rocketium {
    width: 365px;
  }

  .without-rocketium {
    font-size: 16px;
  }

  .with-rocketium {
    font-size: 16px;
  }

  .heading-rocketium {
    font-size: 32px;
    letter-spacing: -0.96px;
  }

  span.red,
  span.green {
    font-size: 32px;
    letter-spacing: -0.96px;
  }

  .circles-purple {
    width: 132.814px;
    height: 82.101px;
  }

  .sub-heading-rocketium {
    font-size: 16px;
  }

  .list-rocketium {
    font-size: 14px;
  }

  .image-cont {
    width: 910px;
    height: 329px;
  }

  .background-image {
    width: 900.267px;
    height: 329.956px;
  }

  .heading-section {
    font-size: 32px;
  }

  .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: 45.876px;
    height: 39.755px;
    margin-bottom: 20px;
    margin-top: 0px;
  }

  .heading-automation {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  .heading-auto,
  .heading-auto-ca {
    width: 342px;
    font-size: 24px;
    margin-bottom: 24px;
  }

  .text-auto {
    width: 342px;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .auto-img {
    width: 497px;
    height: 497px;
    margin-top: 20px;
    margin-left: 95px;
  }

  .automation {
    width: 910px;
    height: 547px;
  }

  .auto-divider {
    width: 342px;
    margin-bottom: 12px;
  }

  .auto-col6 {
    padding-left: 36px;
  }

  .auto-col62 {
    margin-left: -80px;
    padding-left: 0px;
  }

  .automation,
  .automation2,
  .automation-blue,
  .automation2-blue,
  .automation3,
  .automation3-purple {
    width: 960px;
    height: 562px;
  }

  .auto-img2 {
    width: 497px;
    height: 497px;
    margin-top: 25px;
    margin-left: 24px;
  }

  .bg-auto-img {
    margin-left: 35px !important;
  }

  .heading-section-white {
    font-size: 32px;
    letter-spacing: -0.72px;
  }

  .growth {
    padding-top: 40px;
    padding-bottom: 100px;
  }

  .growth-sub-heading {
    width: 541px;
    font-size: 16px;
  }

  .growth-text {
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .growth-subtext {
    width: 257px;
    font-size: 14px;
    margin-bottom: -30px;
  }

  .cs-image-text {
    font-size: 24px;
  }

  .case-study-item {
    min-width: 120px;
  }

  button.cs-download-button {
    font-size: 14px;
    border-radius: 28px;
  }

  .case-studies-text {
    width: 331.356px;
    font-size: 14px;
    margin-top: 2px;
  }

  .nums {
    width: 304.356px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
  }

  .slide-content {
    width: 915px;
    height: 328px;
    margin-left: 0;
    background-image: url(https://rocketium.com/website/product-images/bg-cs-tab.png);
    background-repeat: no-repeat;
  }

  .cs-bg-section {
    width: auto;
    height: 291px;
    background-image: url(https://rocketium.com/website/product-images/cs-bg1.png) !important;
    border-radius: 14px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section-p {
    width: auto;
    height: 291px;
    background-image: url(https://rocketium.com/website/product-images/cs-bg-p.png) !important;
    border-radius: 14px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section1 {
    width: auto;
    height: 291px;
    background-image: url(https://rocketium.com/website/product-images/cs-bg2.png) !important;
    border-radius: 14px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section2-lp {
    width: auto;
    height: 291px;
    background-image: url(https://rocketium.com/website/product-images/cs-bg3-lp.png) !important;
    border-radius: 14px;
    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: 22rem;
    top: -2.5rem;
  }

  .tabs-slider-next {
    left: 33rem;
    top: -2.5rem;
  }

  .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;
  }

  .nav-link {
    font-size: 11.662px;
  }

  .primary-button {
    font-size: 9.956px;
  }

  img.img-fluid.green-section {
    width: 122.925px;
    height: 78.222px;
  }
  .case-studies {
    margin-top: 50px;
  }
  .growth-blue,
  .growth-purple {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1181px) and (max-width: 1366px) {
  .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-small,
  .section-title-small-blue,
  .section-title-small-purple {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 26.4px */
    letter-spacing: -0.48px;
  }

  .section-title-big,
  .section-title-big-blue,
  .section-title-big-purple {
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 52.8px */
    letter-spacing: -1.92px;
  }

  .section-subtitle {
    color: #020106;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .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: 1116px;
    height: auto;
  }

  .button-rocketium {
    width: 364px;
  }

  .without-rocketium {
    font-size: 16px;
  }

  .with-rocketium {
    font-size: 16px;
  }

  .heading-rocketium {
    font-size: 32px;
    letter-spacing: -0.96px;
  }

  span.red,
  span.green {
    font-size: 32px;
    letter-spacing: -0.96px;
  }

  .circles-purple {
    width: 132.814px;
    height: 82.101px;
  }

  .sub-heading-rocketium {
    font-size: 16px;
  }

  .list-rocketium {
    font-size: 14px;
  }

  .image-cont {
    width: 1156px;
    height: auto;
  }

  .background-image {
    width: 1106px;
    height: auto;
  }

  .heading-section {
    font-size: 36px;
  }

  .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: 1110px;
    height: 370px;
  }

  .testimonials-text {
    font-size: 24px;
    padding: 0px 235px;
  }

  .testimonials-author-title,
  .testimonials-author-title-blue,
  .testimonials-author-title-purple,
  .testimonials-author-title-orange {
    font-size: 24px;
  }

  .test-sym {
    margin-bottom: 20px;
    margin-top: 0px;
  }

  .heading-automation {
    font-size: 36px;
    letter-spacing: -0.64px;
  }

  .heading-auto,
  .heading-auto-ca {
    width: 342px;
    font-size: 24px;
    margin-bottom: 24px;
  }

  .text-auto {
    width: 342px;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .auto-img {
    width: 595px;
    height: 595px;
    margin-top: 38px;
    margin-left: 110px;
  }

  .automation {
    width: 910px;
    height: 547px;
  }

  .auto-divider {
    width: 342px;
    margin-bottom: 12px;
  }

  .auto-col6 {
    padding-left: 36px;
  }

  .auto-col62 {
    margin-left: -80px;
    padding-left: 0px;
  }

  .automation,
  .automation2,
  .automation-blue,
  .automation2-blue,
  .automation3,
  .automation3-purple {
    width: 1140px;
    height: 670px;
  }

  .auto-img2 {
    width: 595px;
    height: 595px;
    margin-top: 20px;
    margin-left: 30px;
  }

  .bg-auto-img {
    margin-top: 39px !important;
    margin-left: 39px !important;
  }

  .heading-section-white {
    font-size: 36px;
    letter-spacing: -0.72px;
  }
  .case-studies {
    margin-top: 50px;
  }
  .growth-blue,
  .growth-purple {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .growth-text {
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .growth-subtext {
    width: 240px;
    font-size: 12px;
  }

  .cs-image-text {
    font-size: 32px;
  }

  button.cs-download-button {
    font-size: 16px;
  }

  .case-studies-text {
    width: 400px;
  }
  .growth {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .nums {
    width: 400px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
  }

  .slide-content {
    width: 1140px;
    height: 400px;
    margin-left: 0;
    background-image: url(https://rocketium.com/website/product-images/bg-cs-tab.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .cs-bg-section {
    width: auto;
    height: 364px;
    background-image: url(https://rocketium.com/website/product-images/cs-bg1.png) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section-p {
    width: auto;
    height: 364px;
    background-image: url(https://rocketium.com/website/product-images/cs-bg-p.png) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section1 {
    width: auto;
    height: 364px;
    background-image: url(https://rocketium.com/website/product-images/cs-bg2.png) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section2-lp {
    width: auto;
    height: 364px;
    background-image: url(https://rocketium.com/website/product-images/cs-bg3-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: 25px 0;
  }

  .tabs-slider-prev {
    left: 29rem;
    top: -2.5rem;
  }

  .tabs-slider-next {
    left: 40rem;
    top: -2.5rem;
  }

  .experience {
    width: 1140px;
    padding: 24px;
  }

  .internal-experience {
    width: 1106px;
    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;
    height: 100vh;
  }

  img.img-fluid.green-section {
    width: 122.925px;
    height: 78.222px;
  }
}

.navbar-expand-lg .navbar-nav {
  flex-direction: row;
  gap: 55px;
  position: relative;
}

.custom-dropdown {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-40%);
  /* width: 90vw; */
  /* max-width: 1100px; */
  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%; /* Ensure it takes the full width */
  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 {
  /* height: 183px; */
  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: 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 {
    margin: 0px -15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #020106;
    border-left: 1px solid #020106;
    height: 100%;
  } */

.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-bottom: 27px;
  margin-top: 24px;
}

.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: 5px;
  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: #f1f1f1;
}

.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:hover::after {
  transform: rotate(180deg);
}

.dropdown-toggle.show::after {
  transform: rotate(0deg);
}
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;
}
