/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Raleway:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

:root {
  --primary--color: #081839;
}

body {
  color: #fff;
  background-color: #f9fafc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  width: 100%;
  font-size: var(--text-reg);
}

/* =====fonts::start===== */
.font-plus-jakarta {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.font-space-grotesk {
  font-family: 'Space Grotesk', sans-serif;
}

.font-raleway {
  font-family: 'Raleway', sans-serif;
}

/* =====fonts::end===== */

/* =====common css::start===== */
.container {
  max-width: 1536px;
  margin: 0 auto;
}

input {
  background: transparent !important;
}

footer p {
  color: #fff;
}

.text-light {
  color: #5a5c5f !important;
}

.text-black {
  color: #111827;
}

.navlink {
  position: relative;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.navlink::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  /* Initially set width to 0 */
  background: #fff;
  border-radius: 2px;
  -webkit-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  transition: width 0.5s ease;
  /* Smoothly animate the width change */
}

.navlink_active::after {
  width: 25px;
  /* Expand the underline on hover */
}

.navlink:hover::after {
  width: 25px;
  /* Expand the underline on hover */
}

.menu-item {
  position: relative;
}

.menu-item > a {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

/* Submenu Styles */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: -50%;
  overflow: hidden;
  min-width: 200px;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
}

.menu-item:hover .submenu {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.submenu li {
  position: relative;
}

.submenu li a {
  text-decoration: none;
  color: var(--primary--color);
  padding: 10px 20px;
  display: block;
  font-size: 16px;
  width: 100%;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.submenu li a:hover {
  background-color: #f0f0f0;
}

/* Ensure submenu stays visible when hovering over it */
.menu-item:hover .submenu,
.submenu:hover {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.primary-description {
  width: 60%;
  margin: 0 auto;
  color: #5a5c5f;
  text-align: center;
  font-family: 'Plus Jakarta Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

.error-page {
  min-height: calc(100vh - 110px);
}

.error-image {
  height: 610px;
}

.error-title {
  color: #141414;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 132%;
  letter-spacing: -0.64px;
}

.error-description {
  color: #5a5c5f;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 164%;
  text-transform: capitalize;
}

.button {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 13px 33px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  border-radius: 44px;
  background: #fff;
  outline: none;
  border: none;
  cursor: pointer;
}

.button-white {
  background: #fff;
  color: var(--primary--color);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid #fff;
}

.button-white:hover {
  background-color: transparent;
  color: white;
}

.button-transparent {
  background: transparent;
  border: 1px solid #fff;
  color: white;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.button-transparent svg path {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.button-transparent:hover {
  background-color: #fff;
  color: var(--primary--color);
}

.button-transparent:hover svg path {
  fill: var(--primary--color);
}

.homepage-hero-glow-btn {
  color: var(--primary--color);
}

.homepage-hero-glow-btn,
.button-title {
  cursor: auto !important;
}

.homepage-hero-glow-btn svg path {
  fill: var(--primary--color);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.homepage-hero-search-button {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: var(--primary--color);
  background: var(--primary--color);
  border: 1px solid var(--primary--color);
}

.homepage-hero-search-button svg path {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.homepage-hero-search-button:hover {
  background: white;
  color: var(--primary--color);
}

.homepage-hero-search-button:hover svg path {
  stroke: var(--primary--color);
}

/* hover */
.featured-button,
.trial-button,
.footer-button,
.footer-earning-button,
.details-filter-input-btn,
.contact-send-message-btn {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid var(--primary--color);
  background: var(--primary--color);
}

.featured-button:hover,
.trial-button:hover,
.footer-button:hover,
.footer-earning-button:hover,
.details-filter-input-btn:hover,
.contact-send-message-btn:hover {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: transparent;
  color: var(--primary--color);
}

.footer-earning-button svg path,
.blog-search-button svg path,
.details-filter-input-btn svg path,
.contact-send-message-btn svg path {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer-earning-button:hover svg path,
.blog-search-button:hover svg path,
.details-filter-input-btn:hover svg path,
.contact-send-message-btn:hover svg path {
  stroke: var(--primary--color);
}

.blog-search-button {
  outline: none;
  border: none;
  background: transparent;
  padding: 0;
}

/* hover */

.button-title {
  background: transparent;
  border: 1px solid #081839;
  font-weight: 500;
  padding: 10px 33px;
  color: #141414;
}

.featured-button {
  color: #fff;
  border-radius: 4px;
  border: 1px solid var(--primary--color);
  background: var(--primary--color);
}

.featured-button-advantage {
  color: #fff;
  border-radius: 4px;
  border: 1px solid var(--primary--color);
  background: var(--primary--color);
  cursor: auto !important;
}

.footer-button {
  cursor: pointer;
  color: #fff;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  padding: 13px 35px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: #081839;
}

.footer-earning-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  height: 56px;
  padding: 13px 29px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: var(--10-primary-button, #081839);
}

.primary-title {
  color: var(--Text-Heading, #141414);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 132%;
  /* 52.8px */
  letter-spacing: -0.8px;
}

.trial-button {
  border-radius: 30px;
  background: #081839;
  padding: 15px 58px;
}

.blog-details-link-button {
  color: var(--primary--color);
  display: block;
  border: 1px solid var(--primary--color);
  padding: 6px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 6px;
  margin: 20px 0px !important;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.blog-details-link-button:hover {
  background: var(--primary--color);
  color: #fff;
}

.blog-card-single {
  overflow: hidden !important;
}

/* =====common css::end===== */

/* ==============navbar============== */
.header {
  background: #091836;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 110px;
  width: 100%;
}

.homepage,
.pricing-page,
.blog-page-main,
.blog-details-page-main-wrapper,
.affiliate-page-main-wrapper,
.contact-us-page-main-wrapper,
.error-page-main-wrapper,
.sign-in-main-wrapper,
.register-main-wrapper {
  margin-top: 110px;
}

/* ==============footer============== */
.footer {
  background: #091836;
}

.footer-item-title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 164%;
  text-transform: capitalize;
}

.footer-item {
  color: #c7e2e4;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

.footer-form-title {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 164%;
  text-transform: capitalize;
  letter-spacing: 0.7px;
}

.footer-earning-wrapper {
  background: #b9dde7;
  border-radius: 24px;
  padding: 40px 180px;
  position: relative;
}

.footer-earning-title {
  color: #050505;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}

.footer-earning-description {
  color: #050505;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 199%;
}

.footer-bottom {
  border-top: 1px solid #42526e;
}

.footer-earning-image-wrapper-left {
  height: 150px;
  width: 150px;
  position: absolute;
  top: -5%;
  left: -2%;
}

.footer-earning-image-wrapper-right {
  height: 150px;
  width: 150px;
  position: absolute;
  bottom: -5%;
  right: -2%;
}

.footer-earning-image-wrapper-left img,
.footer-earning-image-wrapper-right img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ==============Homepage Hero============== */
.hero {
  /* min-height: calc(100vh - 110px); */
  background: #091836;
  overflow: hidden;
  padding-bottom: 400px;
}

.hero-wrapper {
  z-index: 1;
  /* min-height: calc(100vh - 110px); */
}

.hero-title {
  color: #fff;
  text-align: center;
  font-family: Raleway;
  font-size: 76px;
  font-style: normal;
  font-weight: 600;
  line-height: 132%;
  letter-spacing: -0.76px;
}

.glowing-hero-title {
  color: #add8e6;
  font-size: 76px;
}

.banner-filter-input {
  max-width: 400px;
  min-width: 400px;
  width: 100%;
}

.banner-image {
  height: 700px;
  width: 700px;
  position: absolute;
  right: 80px;
  bottom: -20%;
}

/* hero video section */

.hero-video-wrapper {
  margin-top: -290px;
  position: relative;
  border-radius: 16px;
  width: 100%;
  height: 780px;
  overflow: hidden;
  width: 100% !important;
  padding-left: 0;
  padding-right: 0;
}

.hero-video-wrapper-shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* Adjust opacity as needed */
}

#hero-video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-video-play-btn {
  cursor: pointer;
  padding: 20px;
  fill: rgba(0, 0, 0, 0.25);
  stroke-width: 1px;
  stroke: #fff;
  -webkit-box-shadow: -0.73px 0.73px 0.73px -1.46px rgba(255, 255, 255, 0.35) inset;
  box-shadow: -0.73px 0.73px 0.73px -1.46px rgba(255, 255, 255, 0.35) inset;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* ==============Features::start============== */
.feature-card-wrapper {
  background: #f9fafc;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.feature-image-card {
  height: 550px;
  width: 40%;
  background-color: #eceef2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.feature-image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.feature-card {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.feature-card-right {
  width: 60%;
  padding-left: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0 16px 16px 0;
  border-top: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.feature-card-left {
  width: 60%;
  padding-right: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 16px 0 0 16px;
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.feature-image-card-left {
  border-radius: 16px 0 0 16px !important;
}

.feature-image-card-right {
  border-radius: 0 16px 16px 0 !important;
}

.feature-card h3 {
  color: #141414;
  font-family: 'Space Grotesk';
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 132%;
  letter-spacing: -0.64px;
}

.feature-card p {
  color: #141414;
  font-family: 'Space Grotesk';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.4px;
}

/* ==============Features::end============== */

/* ==============Testimonial::start============== */
.testimonial-slider-wrapper {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.testimonial-slider {
  border: 1px solid #e5e5e5;
  background: #fff;
}

.testimonial-slider-description {
  color: #5a5c5f;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}

.testimonial-slider-user-image {
  width: 68px;
  height: 70px;
  overflow: hidden;
}

.testimonial-slider-user-image img {
  height: 100%;
  width: 100%;
  border-radius: 70px;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonial-slider h4 {
  color: #141414;
}

.testimonial-slider-user-designation {
  color: #5a5c5f;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.testimonials-nav-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  padding: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: #f0f0f0;
  cursor: pointer;
  -webkit-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  transition: ease 0.5s;
}

.testimonials-nav-btn svg path {
  -webkit-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  transition: ease 0.5s;
}

.testimonials-nav-btn:hover {
  background: var(--primary--color);
}

.testimonials-nav-btn:hover svg path {
  stroke: #fff;
}

/* ==============Testimonial::end============== */

/* ==============Article::start============== */
.articles-section-wrapper {
  padding: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #eceef21a;
}

.article-card-image-wrapper {
  height: 350px;
  width: 100%;
}

.article-card-image-wrapper img {
  height: 100%;
  width: 100%;
  border-radius: 24px;
  -o-object-fit: cover;
  object-fit: cover;
}

.article-card-title {
  color: #081839;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 6px;
}

.article-card-big-title {
  color: #141414;
  font-size: 26px;
  font-weight: 600;
  line-height: 132%;
  letter-spacing: -0.64px;
  margin-bottom: 6px;
}

.article-card-description {
  color: #5a5c5f;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 8px;
}

.article-card-date {
  color: #8993a4;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 164%;
}

/* ==============Article::end============== */

/* ==============Trial::Start============== */
.trial-wrapper {
  margin-top: 60px;
  margin-bottom: 60px;
  max-height: 550px;
  min-height: 550px;
  height: full;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#c2d5fd),
    to(#c2d5fd)
  );
  background: -o-linear-gradient(left, #c2d5fd 0%, #c2d5fd 100%);
  background: linear-gradient(to right, #c2d5fd 0%, #c2d5fd 100%);
}

.trial-title {
  color: #141414;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 132%;
  letter-spacing: -1.28px;
}

.trial-description {
  text-align: center;
  width: 70%;
  margin: 0 auto;
  color: #141414;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

/* ==============Trial::end============== */

/*==========================================Pricing Page::start=========================================== */
.pricing-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
}

.tab-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 12px;
  margin-bottom: 30px;
  border: 1px solid #d7dcda;
  border-radius: 126.556px;
  background-color: #ebecf0;
}

.tab-button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 13px 25px;
  font-size: 16px;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.tab-button.active {
  color: white;
}

.indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 111px;
  background-color: #081839;
  border-radius: 126.556px;
  -webkit-transition: left 0.3s ease, width 0.3s ease;
  -o-transition: left 0.3s ease, width 0.3s ease;
  transition: left 0.3s ease, width 0.3s ease;
}

.content-container {
  width: 100%;
  overflow: hidden;
}

.content {
  display: none;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease,
    -webkit-transform 0.3s ease;
}

.content.active {
  opacity: 1;
  display: -ms-grid;
  display: grid;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.pricing-card {
  position: relative;
  border-radius: 10.124px;
  background: #fff;
  border-right: 1px solid #e4e4e7;
  border-bottom: 1px solid #e4e4e7;
  border-left: 1px solid #e4e4e7;
  padding: 40px 32px;
  color: #141414;
}

.pricing-card-button {
  color: #081839;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 164%;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  border-radius: 94px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: 1px solid #081839;
}

.pricing-card-button svg path {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.pricing-card-button:hover {
  background: var(--primary--color);
  color: #fff;
}

.pricing-card-button:hover svg path {
  stroke: #fff;
}

.pricing-card-1 {
  border-top: 2.531px solid #5a5c5f;
}

.pricing-card-2 {
  border-top: 2.531px solid #ffab00;
}

.pricing-card-3 {
  border-top: 2.531px solid #05d9a8;
}

.pricing-card-popular-button {
  position: absolute;
  padding: 8px 16px;
  right: 16.127px;
  top: 16.75px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  border-radius: 126.556px;
  background: #059669;
}

.pricing-card-4 {
  border-top: 2.531px solid #081839;
}

/* accordion ::start*/
.pricing-accordion-section,
.pricing-accordion-header,
.pricing-accordion-content,
.pricing-dropdown--arrow {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.pricing-accordion-section {
  margin-bottom: 20px;
  width: 100%;
}

.pricing-accordion-header {
  background: #f2f2f3;
  padding: 20px 32px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}

.pricing-accordion-content {
  max-height: 0px;
  overflow: hidden;
  padding: 0 15px;
  background-color: #fff;
  -webkit-transition: max-height 0.3s ease, padding 0.3s ease;
  -o-transition: max-height 0.3s ease, padding 0.3s ease;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

/* Table Styles */
.pricing-accordion-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 750px;
  /* Minimum width for mobile scroll */
}

.pricing-accordion-content-item {
  border-bottom: 1.261px solid #d4d4d8;
}

/* Table Cell Styles */
.pricing-accordion-content td {
  padding: 24px 32px !important;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 1px solid #d4d4d8;
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}

.pricing-accordion-content td:first-child {
  width: 200px;
  font-weight: 500;
}

.pricing-accordion-content td svg {
  margin: 0 auto;
  display: block;
}

/* Mobile Styles (320px+) */
@media screen and (min-width: 320px) {
}

/* Tablet Styles (768px+) */
@media screen and (min-width: 768px) {
  .pricing-accordion-header {
    padding: 20px 24px;
  }

  .pricing-accordion-header h4 {
    font-size: 20px;
  }

  .pricing-accordion-content td {
    padding: 16px;
    font-size: 16px;
  }

  .pricing-accordion-content td svg {
    width: 22px;
    height: 22px;
  }
}

/* accordion ::end*/
/*==========================================Pricing Page::end=========================================== */

/*==========================================Blog Page::start=========================================== */
.blog-search-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
  padding: 12px 32px;
  border-radius: 40px;
  border: 1px solid var(--Text-Body, #5a5c5f);
  background: #fff;
}

.blog-search-input {
  min-width: 250px;
}

.blog-tabs-wrapper .nav {
  gap: 28px;
}

.blog-tabs-wrapper .nav-link {
  text-decoration: none;
  min-width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 7px 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #141414;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  border-radius: 29px;
  border: 1px solid #141414;
}

.blog-tabs-wrapper .nav-pills .nav-link:hover {
  background-color: var(--primary--color);
  color: white;
  /* This ensures text remains visible on black background */
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* This creates a smooth transition effect */
}

.blog-tabs-wrapper .nav-pills .nav-link.active:hover {
  background-color: var(--primary--color);
}

.blog-tabs-wrapper .nav-link.active {
  color: #fff;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
  border-radius: 29px;
  background: #081839;
}

/*==========================================Blog Page::end=========================================== */
/*========================================Blog Details::end========================================= */
.blog-details-banner {
  height: 650px;
}

.blog-details-banner img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-details-description {
  color: #5a5c5f;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  line-height: 164%;
  margin-bottom: 6px;
}

.blog-details-images-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.blog-details-image {
  height: 500px;
  width: 100%;
}

.blog-details-link {
  color: var(--primary--color);
  text-decoration: underline;
  font-weight: 500;
}

.blog-details-image img {
  height: 100%;
  width: 100%;
  border-radius: 40px;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-details-page {
  background: var(--primary--color);
  min-height: 400px;
}

.details-bg {
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.details-filter-input {
  min-width: 400px;
}

.details-filter-input-btn {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}

/*========================================Blog Details::start======================================== */

/*========================================Affiliate::start======================================== */
.affiliate-title {
  color: #000;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 132%;
  letter-spacing: -1.28px;
}

.affiliate-description {
  color: #5a5c5f;
  width: 50%;
  font-style: normal;
  font-weight: 400;
  line-height: 164%;
  /* 29.52px */
}

.affiliate-banner-bg {
  max-width: 600px;
  overflow: hidden;
}

.affiliate-banner-bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.affiliate-buttons-wrapper {
  gap: 85px;
}

.affiliate-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 62px;
  padding: 15px 31px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: #dfe1e6;
  color: #141414;
  font-style: normal;
  font-weight: 500;
  line-height: 164%;
}

/* accordion */
.affiliate-faq .accordion {
  --bs-accordion-btn-focus-border-color: none;
  --bs-accordion-active-color: none;
  --bs-accordion-active-bg: none;
  --bs-accordion-btn-focus-box-shadow: none;
}

.affiliate-faq .accordion-button {
  color: #111827;
  font-size: 20px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 34.521px;
  /* 155.556% */
}

.affiliate-faq .accordion-body p {
  color: #79637c;
  font-family: 'Plus Jakarta Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

/*========================================Affiliate::end======================================== */

/*========================================Contact Us::Start======================================== */
.contact-us-description {
  font-size: 18px;
  width: 66%;
  font-style: normal;
  font-weight: 400;
  line-height: 164%;
}

.contact-us-card {
  padding: 32px;
  border-radius: 18px;
  border: 1.172px solid #e5e7eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 23.447px;
  width: 50%;
}

.contact-us-card-icon {
  padding: 12px;
  border-radius: 50%;
  background: #081839;
}

.contact-us-card-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 132%;
  letter-spacing: -0.48px;
}

.contact-us-card-description {
  color: #6b7280;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
}

.contact-form label {
  color: #4b5563;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 164%;
  /* 29.52px */
  text-transform: capitalize;
}

.contact-input {
  margin: 12px 0;
  padding: 12px 16px;
  border-radius: 11722.166px;
  border: 1.172px solid #d1d5db;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.contact-input input,
.contact-form textarea {
  width: 100%;
  border: none;
  outline: none;
}

.contact-form textarea {
  padding: 16px;
  margin-top: 12px;
  border-radius: 18.757px;
  border: 1.172px solid #d1d5db;
  resize: none;
}

.contact-form button {
  padding: 16px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  border-radius: 11722.166px;
  background: var(--primary--color);
  -webkit-box-shadow: 0px 1.172px 2.345px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1.172px 2.345px 0px rgba(0, 0, 0, 0.05);
}

/*========================================Contact Us::End======================================== */

/*========================================Auth pages::Start======================================== */
.auth-wrapper {
  max-width: 500px;
  min-width: 500px;
}

.auth-title {
  color: #232323;
  font-size: 28px;
  font-weight: 500;
  line-height: 164%;
  text-transform: capitalize;
}

.auth-title-bold {
  color: #232323;
  font-size: 32px;
  font-weight: 600;
  line-height: 132%;
  letter-spacing: -0.8px;
}

/* Container for input and label */
.auth-input-container {
  position: relative;
}

/* Input field styling */
.auth-input-field {
  background-color: transparent;
  height: 3rem;
  width: 100%;
  border-radius: 6px;
  color: #232323 !important;
  border: 1px solid #d9d9d9;
  padding: 0 1rem;
  outline: none;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;

  /* Placeholder hidden */
  color: transparent;
}

.auth-input-field:focus {
  border-color: var(--primary--color);
}

/* Label styling */
.auth-input-label {
  position: absolute;
  top: -0.75rem;
  left: 0.75rem;
  font-size: 0.875rem;
  color: #081839;
  background-color: #f9fafc !important;
  padding: 0 0.75rem;
  cursor: text;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.auth-input-field::-webkit-input-placeholder {
  color: transparent;
}

.auth-input-field::-moz-placeholder {
  color: transparent;
}

.auth-input-field:-ms-input-placeholder {
  color: transparent;
}

.auth-input-field::-ms-input-placeholder {
  color: transparent;
}

.auth-input-field::placeholder {
  color: transparent;
}

.auth-input-field:-moz-placeholder-shown + .auth-input-label {
  font-size: 1rem;
  color: #6b7280;
  top: 0.625rem;
  right: 12px;
  width: -moz-fit-content;
  width: fit-content;
}

.auth-input-field:-ms-input-placeholder + .auth-input-label {
  font-size: 1rem;
  color: #6b7280;
  top: 0.625rem;
  right: 12px;
  width: fit-content;
}

.auth-input-field:placeholder-shown + .auth-input-label {
  font-size: 1rem;
  color: #6b7280;
  top: 0.625rem;
  right: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* Focused input styling */
.auth-input-field:focus + .auth-input-label {
  font-size: 14px;
  color: var(--primary--color);
  padding: 0 4px;
  background: #fff;
  z-index: 11111;
  top: -0.75rem;
}

/* show/hide pass */
.auth-input-container .pass-svg {
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.auth-button {
  color: #fff;
  outline: none;
  border: none;
  font-weight: 500;
  line-height: 164%;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 10px 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid var(--primary--color);
  background: var(--10-primary-button, #081839);
}

.auth-button:hover {
  background: transparent;
  color: var(--primary--color);
}

.auth-ssl-button {
  color: #141414;
  font-weight: 500;
  line-height: 164%;
  text-transform: capitalize;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
}

.hr-line {
  height: 1px;
  width: 100%;
  background: #eeeeee;
}

.auth-toggle {
  color: #6c6c6c;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
}

.auth-toggle-link {
  color: var(--primary--color);
  -webkit-font-feature-settings: 'liga' off, 'clig' off;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: 'Plus Jakarta Sans';
  font-weight: 500;
  line-height: 150%;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/*========================================Auth pages::End======================================== */

/* custom */
.hero-search-filter-wrapper {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  border-radius: 48px;
  padding: 4px 4px 4px 24px;
  min-height: 40px;
}

.hero-search-filter-svg {
  margin-top: -3px;
}

.hero-search-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 8px;
}

.banner-filter-input {
  margin-top: 18px;
  width: 100%;
  resize: none;
  font-size: 16px;
  line-height: 1.5;
  min-height: 24px;
  /* Single line height */
  padding: 4px 0;
  /* Reduced padding from 8px to 4px */
  display: block;
  overflow-y: hidden;
}

.banner-filter-input.scrollable {
  overflow-y: auto;
}

/* Custom scrollbar */
.banner-filter-input::-webkit-scrollbar {
  width: 6px;
}

.banner-filter-input::-webkit-scrollbar-track {
  background: transparent;
}

.banner-filter-input::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

/* blog */
.blog-details-newsletter-form {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* Changed to allow height growth */
  gap: 12px;
  border-radius: 48px;
  padding: 4px 24px;
  min-height: 40px;
}

.blog-details-newsletter-form-logo img {
  display: block;
}

.blog-details-newsletter-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.details-filter-input {
  margin-top: 16px;
  width: 100%;
  resize: none;
  font-size: 16px;
  line-height: 1.5;
  min-height: 24px;
  padding: 4px 0;
  overflow-y: hidden;
}

.details-filter-input.scrollable {
  overflow-y: auto;
}

/* Custom scrollbar */
.details-filter-input::-webkit-scrollbar {
  width: 6px;
}

.details-filter-input::-webkit-scrollbar-track {
  background: transparent;
}

.details-filter-input::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.ai-chat-bot-message-icon-wrapper {
  position: relative;
}

.ai-chat-bot-message-icon {
  position: fixed;
  bottom: 40px;
  right: 40px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 100;
  z-index: 1000;
}

.ai-chat-bot-message-icon.hide {
  opacity: 0;
  z-index: -1000;
}

.ai-chat-bot-message-overlay {
  color: var(--primary--color);
  background: #fff;
  position: absolute;
  padding: 8px 12px;
  text-align: center;
  border-radius: 12px;
  min-width: 200px;
  right: -50%;
  -webkit-box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.08);
  top: -100%;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: -10px;
  z-index: -100;
}

.ai-chat-bot-message-icon:hover .ai-chat-bot-message-overlay {
  opacity: 100;
  z-index: 100;
}

.chat-bot-chat-wrapper {
  position: fixed;
  bottom: 40px;

  right: 40px;
  border-radius: 20px;
  width: 352px;
  overflow: hidden;
  -webkit-box-shadow: 0px 24px 34px 0px rgba(224, 217, 217, 0.45);
  box-shadow: 0px 24px 34px 0px rgba(224, 217, 217, 0.45);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  z-index: -999;
}

.chat-bot-chat-wrapper.show {
  opacity: 100;
  z-index: 1000;
}

.chat-bot-header {
  background: var(--primary--color);
  width: 352px;
  min-height: 42px;
  padding: 24px 16px 16px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 95px;
}

.chat-bot-header-left-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.online-status-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.online-status-wrapper span {
  font-size: 12px;
}

.chat-bot-header-title {
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.chat-bot-minimize-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary--color);
  /* Primary color */
  border-radius: 50%;
  cursor: pointer;
  margin-top: -12px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Smooth hover transition */
}

.chat-bot-minimize-button:hover {
  -webkit-transform: scale(1.1);

  -ms-transform: scale(1.1);

  transform: scale(1.1);
  /* Slightly enlarge the button */
}

.chat-bot-minimize-button svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Smooth SVG transition */
}

.chat-bot-minimize-button:hover svg .outer-circle {
  stroke: #ffffff;
  /* Brighten the stroke */
}

.chat-bot-minimize-button:hover svg .minus-icon {
  stroke: #fffa65;
  /* Change the minus icon color on hover */
}

.chat-bot-message-main-wrapper {
  min-height: 450px;
  height: 450px;
  max-height: 450px;
  overflow-y: auto;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.chat-bot-normal-response-wrapper,
.chat-bot-suggestions-response-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.chat-bot-suggestions-response-wrapper.hide,
.chat-bot-normal-response-wrapper.hide {
  display: none;
}

.chat-bot-message-main-wrapper {
  padding: 24px 16px;
}

.user-text-message-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.user-text-message {
  color: #444;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 12px;
  background: #dee2e6;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 289px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 16px 32px 20px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
}

.user-text-message-time {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-row: 4;
  grid-area: 4px;
  color: #888;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.chat-bot-message-response-main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.chat-bot-message-response {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 16px 32px 20px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  border-radius: 12px;
  background: var(--primary--color);
  -webkit-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.05);
  color: #fff;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.chat-bot-chat-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  border-radius: 0px 0px 20px 20px;
  background: #fff;
  -webkit-box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.08);
}

.chat-bot-suggestions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  border-radius: 10px;
  background: #f3f5f6;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.12);
  color: #444;
  font-family: Inter;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.chat-suggestions-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.chat-bot-message-input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  display: flex;
  padding: 20px 22px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  border-radius: 16px;
  border-top: 1px solid #f3f5f6;
  background: #e8ebf0;
}

.chat-bot-message-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none !important;
  resize: none;
  color: #444;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.chat-bot-message-input-submit-btn {
  cursor: pointer;
}

.fade-item-custom {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-in, transform 0.5s ease-in;
}

.fade-in-custom {
  opacity: 1;
  transform: translateY(0);
}
/* custom */
