/**--- OTHER CSS INCLUDE ---*/
@import url(libs.css);
@import url(variables.css);
/**--- OTHER CSS INCLUDE ---*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/**--- RESETS START ---*/
* {
  margin: 0;
  padding: 0;
}
*, *::before, *::after {
  box-sizing: border-box;
}
/**:not(.no-focus-reset, .btn, input, select, textarea, div, a:has(i[class*="right"])):where(:focus) {*/
/*    outline: none;*/
/*    border-bottom: 1px solid currentColor;*/
/*}*/
i[class*="right"]:where(:focus) {
  opacity: .8;
  outline: none;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: var(--clr-primary);
}
html, body {
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  font-family: var(--ff-primary);
}
section {
  padding: var(--section-padding);
}
.section-padding {
  padding: var(--section-padding);
}
input[type='number'].hide-arrow::-webkit-inner-spin-button {
  appearance: none;
}
/* SCROLL BAR RESET START */ ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
  border-radius: 0px;
}
::-webkit-scrollbar-corner, ::-webkit-scrollbar-track-piece, ::-webkit-scrollbar-track {
  background-color: #e0e0e0;
}
/* SCROLL BAR RESET END */
img {
  max-width: 100%;
  height: auto;
}
button {
  background: none;
  outline: none;
  border: none;
}
ul, ol {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
h1, h2, h3, h4, h5, h6, p {
  padding: 0;
  margin-bottom: 0;
}
p {
  font-size: var(--fs-18);
  font-weight: 400;
  line-height: 1.3;
  color: var(--clr-grey-700);
}
::placeholder {
  color: #9D9D9D;
}
:disabled {
  background: gray;
}
input.disabled {
  background: #ddd;
  border: 1px solid #fff;
  cursor: not-allowed;
}
input {
  outline: none;
  width: 100%;
}
label {
  display: block;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  /* pointer-events: none;*/
  margin-bottom: 5px;
}
input[type="checkbox"], input[type="radio"], label {
  cursor: pointer;
}
:is(input:not([type="checkbox"], [type="radio"]), select, textarea, .ms-options-wrap>button) {
  border: 1px solid #b8b6b6;
  border-radius: 8px;
  padding-left: 15px;
  min-height: 46px;
  width: 100%;
  display: block;
  font-size: 15px;
}
:is(input:not([type="checkbox"], [type="radio"]), select, textarea):is(:hover, :focus) {
  outline: 1px solid var(--clr-secondary);
}
/* SLICK RESET */
.slick-dots li {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
}
.slick-dots li button::before {
  display: none;
}
.slick-dots li button {
  --_size: 16px;
  display: block;
  background: #6D6D6D;
  height: 8px;
  width: var(--_size);
  border-radius: 100%;
  margin: 0 2px;
  padding: 0;
  transition: width 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: center;
}
.slick-dots li.slick-active button {
  /* background: var(--clr-primary); */
  background: linear-gradient(90deg, #81B734, #97ED1E);
}
.slick-slide {
  height: auto;
}
.dots-variant-1 .slick-dots li button {
  --_size: 8px;
  background-color: rgba(109, 109, 109, 1);
}
.dots-variant-1 .slick-dots li button:hover, .dots-variant-1 .slick-dots li.slick-active button {
  background-color: var(--clr-primary);
  width: 31px;
  border-radius: 5px;
}
/* SLICK RESET */
/* LOADER */
*:has(> .loader.center) {
  position: relative;
}
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader {
  display: none;
  --size: 50px;
  height: var(--size);
  width: var(--size);
  border: calc(var(--size) * .16) solid #f3f3f3;
  border-radius: 100%;
  border-top: calc(var(--size) * .16) solid var(--clr-secondary);
  animation: loader 2s linear infinite;
  margin-top: 20px;
}
.loader.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* LOADER */
/**--- RESETS END ---*/
/**--- CUSTOM LAYOUT CSS START ---*/
.grid-auto-flow-dense {
  grid-auto-flow: dense;
}
.grid {
  display: grid;
}
.grid-column-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-center {
  place-content: center;
}
.flex-1 {
  flex: 1;
}
.gap-5 {
  gap: 5px;
}
.gap-10 {
  gap: 10px;
}
.gap-15 {
  gap: 15px;
}
.gap-20 {
  gap: 20px;
}
.gap-25 {
  gap: 25px;
}
.gap-30 {
  gap: 30px;
}
.gap-40 {
  gap: 40px;
}
.gap-50 {
  gap: 50px;
}
.gap-60 {
  gap: 60px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-41 {
  margin-bottom: 41px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-54 {
  margin-bottom: 54px;
}
.mb-60 {
  margin-bottom: 60px;
}
.util__panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ctaCard p {
  min-height: 85px;
}
/*Custom Css*/
.pr-logos {}
.pr-logos li {
  border: 0px none !important;
  padding: 15px !important;
}
.extra .slick-slide img, .pr-logos li img {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
/* the slides */
.extra .slick-slide {
  margin: 0 27px;
}
/* the parent */
/*Blog Css*/
.animate-logo {
  width: max-content;
  overflow-x: hidden;
  white-space: nowrap;
  display: flex;
  gap: 30px;
}
.animate-logo {
  animation: 60s slide infinite linear
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
ul.tabs {
  padding: 15px;
  border: 0 !important;
  display: flex;
  width: 100%;
  justify-content: space-around;
  padding-bottom: 15px;
  background: #f9f6fd;
}
ul.tabs li {
  cursor: pointer;
  /* border-bottom: 3px solid #f7f7f7; */
  background: #e7defd;
  color: #a179f4;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  width: 50%;
  text-align: center;
  border-right: 1px solid #fff;
  line-height: 50px;
  transition: all 100ms ease;
  letter-spacing: -.2px;
  font-size: 18px;
}
ul.tabs li.active-tab {
  position: relative;
  color: #fff;
  background: #9f78f2;
  /* border-bottom: 3px solid #9f78f2; */
  font-weight: 600;
  text-decoration: none;
}
.custom-adjustments:nth-child(2) {
  margin-top: 50px;
}
.content-container h3 {
  font-weight: 500;
  font-size: 23px;
  line-height: 130%;
  color: #151411;
  margin: 0 0 20px;
  border: 0px none;
  letter-spacing: -1px;
  min-height: 65px;
}
.flex-bot {
  color: #000;
}
.flex-bot time {
  color: #9b9b9b;
}
.img-container:hover img {
  transition: transform .2s;
}
.img-container {
  margin-bottom: 10px;
  height: 264px;
  overflow: hidden;
  border-radius: 4px !important;
  width: 100%;
  margin-top: 25px;
}
.img-container img {
  width: 100%;
}
.press-rel-box {
  background: #f9f7f7;
  position: relative;
}
.press-rel-box:after {
  content: "";
  position: absolute;
  background-image: url(assets/images/green-corner.png);
  width: 35px;
  height: 76px;
  bottom: 0px;
}
.content-container {
  padding: 0px 15px 15px;
}
.flex-bot {
  color: #000;
  text-align: center;
  padding: 0 30px 15px;
  display: flex;
  justify-content: space-between;
}
.press-rel-box {
  background: #f9f7f7;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Add transition for smooth effect */
}
/* Define hover effect */
.press-rel-box:hover {
  transform: scale(1.05);
  /* Slight zoom on hover */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  /* Add drop shadow on hover */
}
@media only screen and (max-width: 992px) {
  .img-container {
    height: auto;
  }
}
@media (min-width: 1401px) {
  .blogSectionMain .container {
    /*max-width: 1551px;*/
  }
}
.blogImg {
  position: absolute;
  top: 50%;
  left: -18.8%;
}
.pr-info {
  margin: 22px 0 32px;
}
.pr-info * {
  text-transform: uppercase;
  letter-spacing: 3.2px;
}
.newsStoryCardText .d-flex * {
  white-space: nowrap;
}
.newsAndStoryCard .img_wrap img {
  height: 130px;
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
  width: 144px;
  object-fit: cover;
}
.newsAndStoryCard {
  margin-bottom: 20px;
}
.newsAndStoryCard .newsStoryCardText :is(> h5, > p) {
  font-size: 14px;
}
.full-width-content h1 {
  font-size: 44px;
  font-weight: 600;
}
.single-page-content p {
  /*font-weight: 400;

  font-size: var(--fs-25);

  color: #000000;

  line-height: 1.8;

  margin-bottom: 42px;*/
  font-weight: 300;
  font-size: var(--fs-18);
  line-height: 180%;
  color: #000000;
  padding-bottom: 15px;
  letter-spacing: -.2px;
}
.single-page-content p a {
  color: #a179f2;
}
.single-page-content h2 {
  color: #A179F2;
  border: none;
  font-size: var(--fs-25);
  margin-bottom: 0;
  line-height: 1.3;
  margin-top: 15px;
}
.single-page-content h3 {
  color: #2a2a2a;
  border: none;
  font-size: var(--fs-22);
  margin-bottom: 0;
  line-height: 1.3;
  margin-top: 15px;
}
.blogSectionMain {
  overflow: hidden;
  background: url(https://www.bettamint.com/assets/images/blog-bg.png);
  background-position: 0 -230px;
  background-repeat: no-repeat;
  padding-top: 120px;
}
.single-page-main-container {
  max-width: 1029px;
  width: 100%;
}
.blog-sidebard h3, .single-page-main-container h1 {
  text-transform: capitalize;
  font-size: 35px;
}
.single-page-content h2:has(+ ul) {
  margin-bottom: 40px !important;
  color: var(--clr-primary);
}
.single-page-content :is(ul, ol) {
  counter-reset: item;
}
.single-page-content :is(ul, ol) {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
}
.single-page-content :is(ul, ol) li {
  flex: 1 0 50%;
  margin-bottom: 34px;
  position: relative;
  padding-left: 90px;
  padding-right: 17px;
  counter-increment: item;
  /*font-size: var(--fs-18);

  font-weight: 400;

  color: #000;*/
  font-weight: 300;
  font-size: var(--fs-18);
  line-height: 180%;
  color: #000000;
  padding-bottom: 15px;
  letter-spacing: -.2px;
}
.single-page-content :is(ul, ol) li::before {
  content: counter(item);
  display: grid;
  place-content: center;
  border-radius: 100%;
  background: #F5F7FA;
  font-weight: 500;
  color: #000;
  font-size: var(--fs-18);
  height: 62px;
  width: 62px;
  position: absolute;
  left: 0;
}
.single-page-content :is(ul, ol) li h3 {
  margin-top: 15px;
}
.maxsocial {
  margin-bottom: 30px;
}
.maxsocial * {
  margin-right: 2px;
  color: var(--clr-primary);
}
.maxsocial .mb-label {
  font-size: 22px;
  font-weight: 700;
}
.maxsocial .mb-icon svg {
  scale: 1.5;
  position: relative;
  top: -3px;
}
@media (max-width: 1370px) {
  .newsStoryCardText {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .single-page-content :is(ul, ol) li {
    flex: 1 1 100%;
  }
  .blogImg {
    display: none;
  }
  .pr-info * {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .single-page-content :is(ul, ol) li {
    padding-inline: 0;
  }
  .single-page-content :is(ul, ol) li::before {
    display: none;
  }
  .newsAndStoryCard .img_wrap img {
    height: auto;
    width: auto;
  }
}
/*Blog Css*/
/*Custom Css*/
@media only screen and (max-width: 992px) {
  .util__panel {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .ctaCard p {
    min-height: auto;
  }
}
/* left || Right Sided Containers */
@media only screen and (min-width: 1400px) {
  .container-left {
    --container-size: 1366px;
    margin-inline: auto;
    margin-right: 0;
    max-width: calc(var(--container-size) + ((100% - var(--container-size)) / 2));
  }
  .container-right {
    --container-size: 1366px;
    margin-inline: auto;
    margin-left: 0;
    max-width: calc(var(--container-size) + ((100% - var(--container-size)) / 2));
  }
  .container {
    //max-width: 1366px;
  }
  .container.container-large {
    /*max-width: 1562px;*/
  }
}
/**--- CUSTOM LAYOUT CSS START ---*/
/**--- UTLITIY CLASSES START ---*/
.btn {
  padding: 1.13em 2em;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-15);
  font-weight: 600;
  line-height: normal;
  transition: all 250ms ease;
  text-transform: capitalize;
  gap: 5px;
  color: #fff;
  border: none;
}
.btn:is(:focus) {
  outline: none;
  box-shadow: none !important;
}
header {
  box-shadow: 15px 15px 15px #0000001a;
  padding: 0px !important;
}
.btn-lg {
  width: 100%;
  max-width: 100%;
}
.btn-white-border {
  min-height: 42px;
  color: #000;
  padding: 0;
  min-width: 99px;
  width: 100%;
  border: 1px solid #000;
}
.btn-white-border:is(:hover, :focus) {
  background-color: #FFF;
  color: #000;
}
.btn-white-border img {
  filter: invert(1);
}
.btn-white-border:is(:hover, :focus) img {
  filter: invert(1);
}
.btn-primary:where(:hover, :focus, :active) {
  opacity: .8;
}
.btn-primary:where(:hover, :focus, :active), .btn-primary {
  background-color: var(--clr-primary) !important;
  color: #FFF;
  box-shadow: none;
}
.btn-secondary:where(:hover, :focus, :active) {
  opacity: .8;
}
.btn-secondary:where(:hover, :focus, :active), .btn-secondary {
  background-color: var(--clr-secondary) !important;
  color: #FFF;
  box-shadow: none;
}
.btn-secondary-300:where(:hover, :focus, :active), .btn-secondary-300 {
  padding-inline: 26px;
  border-radius: 5px;
  background-color: var(--clr-secondary-300) !important;
  color: #B768D5 !important;
}
.section_label {
  color: var(--clr-primary-300);
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
}
.section_heading {
  font-size: var(--fs-section-heading);
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
  letter-spacing: -1px;
}
.section_heading:has(+p) {
  margin-bottom: 30px;
}
.section_text .section_label {
  margin-bottom: 0;
}
.section_text.small {
  max-width: 833px;
  width: 100%;
}
.grey_main {
  padding: 50px 0;
  background: #FAFAFA;
}
.hidden {
  display: none;
}
.column-span-two {
  grid-column: span 2;
}
.row-span-two {
  grid-column: span 2;
}
.error .error_message {
  display: block;
}
*:has(> .error_message) {
  position: relative;
}
*:has(> .success_message) {
  position: relative;
}
.email-error, .error_message {
  position: absolute;
  bottom: -23px;
  left: unset;
  font-size: 12px;
  color: #ff4343;
  font-weight: 500;
  display: none;
  right: 0;
  letter-spacing: .2px;
  text-transform: capitalize;
}
.success_message {
  position: absolute;
  bottom: -18px;
  left: 10px;
  font-size: 11px;
  color: green;
  font-weight: 700;
  display: none;
}
.error + .error_message {
  display: block;
}
.border-right {
  border-right: 1px solid var(--fc-accent);
  padding-right: 10px;
}
.border-right + * {
  padding-left: 10px;
}
@media only screen and (min-width: 1550px) {
  .text-md-nowrap {
    text-wrap: nowrap;
  }
}
.fixed {
  position: fixed;
}
.stickyTop {
  position: fixed;
  top: 0;
}
.absoluteBottom {
  position: absolute;
  bottom: 0;
  top: unset;
}
.lines-count-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lines-count-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lines-count-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.border-r-2 {
  border-radius: 2rem;
}
.mw-1100 {
  max-width: 1100px;
  width: 100%;
}
.hover-opacity:hover {
  opacity: .8;
}
.hover-underline:hover {
  text-decoration: underline;
}
.primary-link-button {
  font-size: var(--fs-25);
  font-weight: 600;
  line-height: 1;
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  gap: 1.2em;
}
.primary-link-button:hover {
  text-decoration: underline;
}
.secondary-link-button {
  color: var(--clr-secondary);
  gap: 10px;
  line-height: 1;
  font-size: var(--fs-15);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.white-link-button {
  color: #fff;
  gap: 10px;
  line-height: 1;
  font-size: var(--fs-15);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  cursor: default;
}
.white-link-button:hover {
  color: #000;
  text-decoration: none;
}
.purple_label {
  color: #A179F2;
  font-size: var(--fs-16);
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: 3px;
  line-height: 1.3;
  text-transform: uppercase;
}
.hover-white:hover {
  color: #FFF;
}
.list-style-disc {
  list-style: disc;
}
.pointer-events-none {
  pointer-events: none !important;
}
.purple_number {
  height: 36px;
  width: 36px;
  border-radius: 100%;
  background-color: var(--clr-secondary);
  color: #FFF;
  font-size: var(--fs-18);
  display: grid;
  place-content: center;
  line-height: normal;
  font-weight: 400;
  flex-shrink: 0;
}
/* BACKGROUNDS START */
.bg-primary-300 {
  background-color: var(--clr-primary-300) !important;
}
.bg-primary {
  background-color: #fff !important;
}
.bg-secondary {
  background-color: var(--clr-secondary) !important;
}
.bg-white {
  background: #FFF;
}
.bg-black {
  background: #000;
}
.bg-grey-400 {
  background-color: #F4F5F6;
}
@media (min-width: 1400px) {
  .bg-grey-image {
    background-image: url(../images/grey-bg-img.png);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .bg-grey-half-image {
    background-image: url(../images/half-grey-bg-img.png);
    background-position: right;
    background-repeat: no-repeat;
  }
}
/* BACKGROUNDS END */
/* FONT FAMILIES START */
.ff-primary {
  font-family: var(--ff-primary);
}
.ff-secondary {
  font-family: var(--ff-secondary);
}
/* FONT FAMILIES END */
/* FONT COLORS START */
.fc-white {
  color: #FFF;
}
.fc-black {
  color: #000;
}
.fc-primary {
  color: var(--clr-primary);
}
.fc-secondary {
  color: var(--clr-secondary);
}
.fc-light-black {
  color: #020202;
}
.fc-dark {
  color: #222222;
}
.fc-grey-700 {
  color: var(--clr-grey-700);
}
.fc-silver {
  color: #58677D;
}
.fc-silver-2 {
  color: #9A9BAE;
}
/* FONT COLORS END */
/* FONT WEIGHTS START */
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}
/* FONT WEIGHTS END */
/* LINE HEIGHT START */
.lh-normal {
  line-height: normal;
}
.lh-1 {
  line-height: 1;
}
.lh-1-1 {
  line-height: 1.1;
}
.lh-1-2 {
  line-height: 1.2;
}
.lh-1-3 {
  line-height: 1.3;
}
.lh-1-4 {
  line-height: 1.4;
}
.lh-1-5 {
  line-height: 1.5;
}
/* LINE HEIGHT END */
/* LTS start */
.lts-_5 {
  letter-spacing: .5px;
}
.lts-1 {
  letter-spacing: 1px;
}
.-lts-_1 {
  letter-spacing: -.1px;
}
.lts-25 {
  letter-spacing: -2.5%;
}
/* LTS end */
/* FONT SIZES START */
.fs-10 {
  font-size: var(--fs-10);
}
.fs-11 {
  font-size: var(--fs-11);
}
.fs-12 {
  font-size: var(--fs-12);
}
.fs-13 {
  font-size: var(--fs-13);
}
.fs-14 {
  font-size: var(--fs-14);
}
.fs-16 {
  font-size: var(--fs-16);
}
.fs-18 {
  font-size: var(--fs-18);
}
.fs-20 {
  font-size: var(--fs-20);
}
.fs-22 {
  font-size: var(--fs-22);
}
.fs-24 {
  font-size: var(--fs-24);
}
.fs-25 {
  font-size: var(--fs-25);
}
.fs-30 {
  font-size: var(--fs-30);
}
.fs-35 {
  font-size: var(--fs-35);
}
.fs-40 {
  font-size: var(--fs-40);
}
.fs-45 {
  font-size: var(--fs-45);
}
.fs-50 {
  font-size: var(--fs-50);
}
.fs-55 {
  font-size: var(--fs-55);
}
.fs-60 {
  font-size: var(--fs-60);
}
.fs-65 {
  font-size: var(--fs-65);
}
.fs-70 {
  font-size: var(--fs-70);
}
.fs-80 {
  font-size: var(--fs-80);
}
.fs-90 {
  font-size: var(--fs-90);
}
.fs-100 {
  font-size: var(--fs-90);
}
/* FONT SIZES END */
/**--- UTLITIY CLASSES END ---*/
.gap-39 {
  gap: 39px;
}
/* header start */
header .container {
  /*max-width: 1582px;*/
}
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}
header .logo {
  position: relative;
  top: -5px;
}
.headerMain {
  padding-block: 17px;
}
header nav {
  margin-left: calc(40px - var(--bs-gutter-x));
}
.navList > li > a {
  color: #000;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1;
  padding-inline: 15px;
}
i.icon.arrow-down::after {
  content: url(../images/icons/arrow-down-white.svg);
  display: inline-block;
}
.navList > li > a > i {
  margin-left: 8px;
  position: relative;
  top: -3px;
  filter: brightness(0);
}
.navList > li:is(:hover, :focus, :active) > a {
  color: #000;
}
.navList > li:is(:hover, :focus, :active) > a > i {
  filter: brightness(0);
}
.burgerButton {
  width: 30px;
  padding: 2px !important;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  position: absolute;
  top: 22%;
  right: 20px;
  transform: translateY(-50%);
  display: none;
}
/* HEADER SUBMENU START */
.rf--header-submenu-button {
  position: relative;
  --width-of-submenu: 312px;
  --height-of-submenu: auto;
  --spacing-from-top: 26px;
  --bg: #fff;
  --ul-padding: 28px 0;
  --ul-bd-radius: 0px;
  --ul-bd: none;
  --li-padding: 12px 42px;
  --li-bd: none;
  --first-last-child-padding: 12px;
  --li-hover-clr: #fff;
  --li-hover-bg: #e1e1e1;
}
.rf-header-submenu {
  position: absolute;
  left: 0;
  /*padding-top: var(--spacing-from-top);*/
  width: var(--width-of-submenu);
  z-index: 10;
  display: none;
  box-shadow: rgba(0, 0, 0, 0.176) 0px 6px 12px;
}
.rf--header-submenu-button:where(:hover, :focus) .rf-header-submenu, .rf-header-submenu.active {
  display: block;
}
.rf-header-submenu ul::-webkit-scrollbar {
  display: none;
  appearance: none;
}
.rf-header-submenu > ul {
  border-radius: var(--ul-bd-radius);
  padding: var(--ul-padding);
  background-color: var(--bg);
  border: var(--ul-bd);
  height: var(--height-of-submenu);
  overflow-y: scroll;
  border-right: 1px solid #e7e7e7;
}
.rf-header-submenu ul li {
  display: block;
  border-bottom: var(--li-bd);
  padding: var(--li-padding);
  transition: all 259ms ease;
}
.rf-header-submenu li.active, .rf-header-submenu > ul li:not(.nohover):hover {
  background: var(--li-hover-bg);
}
.rf-header-submenu li.active, .rf-header-submenu > ul li:not(.nohover):hover a {
  color: var(--li-hover-clr);
}
.rf-header-submenu ul li a.fc-accent {
  color: var(--clr-accent) !important;
}
.rf-header-submenu ul li:first-child {
  padding-top: var(--first-last-child-padding);
}
.rf-header-submenu ul li:last-child {
  border: none;
  padding-bottom: var(--first-last-child-padding);
}
.rf-header-submenu ul li p {
  color: #898B8E;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.3;
}
/* Rf Mobile  Menu */
.rfMobileMenu {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  padding: 0px;
  width: 100%;
  background: #FFF;
  border-right: 1px solid #e7e7e7;
  transform: translateX(-100%);
  transition: transform 200ms ease;
  z-index: 1000;
}
.rfMobileMenu.active {
  transform: translateX(0);
}
.rfMobileMenuHeader {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  margin: 0;
  border-bottom: 1px solid #E3E4E6;
}
.rfMobileMenuClose i {
  color: #000;
  font-size: 2rem;
}
.rfMobileMenuButton {
  font-size: 19px;
  font-weight: 600;
  color: #555;
  border-bottom: 1px solid #E3E4E6;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.rfMobileMenuButton.active {
  background-color: #F4F5F6;
}
.rfMobileMenuButton i.icon {
  font-family: 'remixicon' !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.rfMobileMenuButton i.icon::before {
  content: "\ea4e";
}
.rfInnerMobileMenuList {
  padding-block: 0.25rem;
  border-bottom: 1px solid #E3E4E6;
}
.rfInnerMobileMenuButton {
  font-size: 16px;
  padding-block: 12px;
  font-weight: 500;
  padding-inline: 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  header nav {
    display: none;
  }
  .headerButton {
    max-width: 100px;
    margin-right: 50px;
  }
  .headerButton-mobile {
    display: block;
  }
  a.btn.btn-white-border.headerButton-mobile {
    background: #81b734;
    line-height: 40px;
    margin-top: 15px;
    width: 90%;
    margin: 15px auto;
    color: #fff;
    font-size: 15px;
    border: 0px none;
  }
  header .logo {
    position: relative;
    top: 0;
  }
  .rfMobileMenu, .burgerButton {
    display: block;
  }
}
@media only screen and (max-width: 400px) {
  .headerMain .row {
    justify-content: center;
  }
  .headerButton {
    max-width: 100%;
    margin-right: 50px;
    margin-top: 20px;
  }
  .burgerButton {
    top: 20px;
  }
}
/* header end */
/* Banner start */
.banner {
  padding: 0;
  position: relative;
  background-color: #000;
  --controller: 50px;
}
.banner.prop-bottom-left::after {
  left: -4%;
}
.bannerTextContainer {
  position: absolute;
  top: calc(50% - var(--controller));
  transform: translateY(-50%);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 55;
}
@media (min-width: 1401px) {
  .bannerTextContainer.close-to-bottom, .bannerSlider .bannerTextContainer {
    top: unset;
    bottom: 200px;
    transform: unset;
  }
  .mediaKitBanner .bannerTextContainer.close-to-bottom {
    bottom: 130px;
  }
}
.bannerSlider .slick-dots {
  position: absolute;
  bottom: 150px;
}
.bannerText:not(.not-small) {
  max-width: 894px;
  width: 100%;
  position: relative;
  z-index: 55;
}
.bannerImage:before {
  width: 100%;
  height: 100%;
  display: block;
  background: #0000007a;
  position: absolute;
  z-index: 55;
  content: "";
  display: block;
}
.bannerLabel {
  text-transform: uppercase;
  font-size: var(--fs-14);
  line-height: auto;
  color: #FFF;
  font-weight: 400;
  margin-bottom: 8px;
}
.bannerTitle {
  font-size: var(--fs-55);
  color: #FFF;
  line-height: 1;
  font-weight: 500;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: .1em;
}
.bannerSubtitle {
  font-size: var(--fs-16);
  color: #FFF;
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
}
.bannerSubtitle.small {
  max-width: 600px;
  width: 100%;
  margin-inline: auto;
}
.bannerToggleButton, .bannerToggleButton .dot {
  transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.bannerToggleButton {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  min-height: 101px;
  width: 36px;
  border: 1px solid #fff;
  border-radius: 100px;
  bottom: calc(0px + 147px);
  opacity: .2;
  cursor: pointer;
}
.bannerToggleButton .dot {
  height: 19px;
  width: 19px;
  background-color: #FFF;
  display: block;
  border-radius: 100%;
  position: absolute;
  bottom: 10px;
  margin: 0 auto;
  left: 0;
  right: 0;
  opacity: 1;
}
.bannerToggleButton:is(:hover, :focus, :active) {
  border: 1px solid var(--clr-primary);
  opacity: 1;
  background-color: var(--clr-primary);
}
.bannerToggleButton:is(:hover, :focus, :active) .dot {
  bottom: calc(100% - 24px);
}
/* Prop elements */
.prop {
  position: absolute;
  z-index: 1;
}
.prop-top-left {
  top: 0;
  left: 0;
}
.prop-bottom-right {
  bottom: 0;
  right: 0;
}
/* Prop elements */
/* Prop css */
[class*="prop"]:not(img) {
  position: relative;
  --prop-url: url(../images/prop-lg.png);
}
.prop-xs {
  --prop-url: url(../images/prop-xs.png) !important;
}
.prop-sm {
  --prop-url: url(../images/prop-sm.png) !important;
}
.prop-lg {
  --prop-url: url(../images/prop-lg.png) !important;
}
[class*="prop"]::after {
  position: absolute;
  content: var(--prop-url);
  z-index: 1;
}
.prop-bottom-left::after {
  bottom: -13%;
  left: 0;
}
.prop-bottom-right::after {
  bottom: -25%;
  right: 0;
  display: none;
}
.prop-top-right::after {
  top: -25%;
  right: 0;
}
/* Prop css */
/* Banner with main image */
.bannerMainImageContainer {
  --offset: 430px;
  max-height: calc(var(--offset) + 100px);
}
.bannerMainImageContainer img {
  position: relative;
  top: calc(var(--offset) * -1);
}
.bannerWithMainImage {
  --controller: 88px;
}
.bannerWithMainImage .prop-bottom-left {
  --prop-url: url(../images/banner-with-image-prop.png) !important;
}
.bannerImage img {
  width: 100%;
  height: auto;
}
/* Banner end */
/* Solution start */
.solutionsSection .horizontalCard {
  gap: 20px;
}
@media (min-width: 1220px) {
  .solutionsSection div[class*="col"]:nth-of-type(even) .horizontalCard {
    padding-left: 80px;
  }
}
/* Solution end */
/* Product start */
.arrow-right-icon-green::after {
  content: url(../images/icons/arrow-right-green.svg);
  position: relative;
  top: 1px;
}
.arrow-right-icon-purple::after {
  content: url(../images/icons/arrow-right-purple.svg);
}
.arrow-right-icon-black::after {
  content: url(../images/icons/arrow-right-black.svg);
}
.arrow-right-icon-white::after {
  content: url(../images/icons/arrow-right-white.svg);
}
.productSection {
  position: relative;
  overflow-x: hidden;
}
.productSection::after {
  content: url(../images/product-section-bg.jpg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.productSectionText {
  position: relative;
}
.productCardContainer {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.productCardWrapper {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 887px;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  right: -40px;
  top: -58px;
}
.productCardWrapper .productCardContainer:nth-of-type(1) {
  position: relative;
  top: 78px;
}
.productCard {
  padding: 10px 10px 23px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  display: block;
  background-color: #FFF;
  position: relative;
}
.productCard .img_wrap {
  margin-bottom: 16px;
}
.productCardWrapper p {
  color: #010101;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  line-height: 20PX;
  padding-right: 25px;
  letter-spacing: -.2px;
  line-height: 30px;
}
@media (min-width: 1220px) {
  .productCard {
    max-width: 430px;
    width: 100%;
    min-height: 465px;
  }
}
.productCardWrapper .prop-top-left {
  left: -81px;
  z-index: 0;
  top: 18px;
}
.productCardWrapper .prop-bottom-right {
  right: -141px;
  bottom: -110px;
  z-index: 0;
}
/* Product end */
/* Support Start */
.supportCard:hover a {
  color: var(--clr-primary);
}
.supportCard {
  padding-block: 30px;
  gap: 40px;
}
.supportCard:nth-child(even) {
  border-block: 1px solid #CECECE;
}
.supportCard a {
  margin-bottom: 15px;
}
/* Support end */
/* news start */
@media (min-width: 1400px) {
  .newsSection .container {
    //max-width: 1575px;
  }
  .newsCardBigText {
    padding-left: 16px;
  }
}
.newsCardBigText {
  display: block;
}
.newsCardBigText:where(:hover, :focus) :where(strong) {
  color: #000;
}
.news-dot {
  position: relative;
}
.news-dot::before {
  content: '';
  background: var(--clr-primary);
  border-radius: 50%;
  height: 5px;
  width: 5px;
  position: absolute;
  top: 7px;
  left: -1px;
}
.newsStoryCardText {
  max-width: 270px;
  width: 100%;
}
.newsAndStories img {
  border-radius: 10px;
}
.newsStoryCardText .news-dot::before {
  left: -10px;
}
/* news end */
/* future start */
.futureSection {
  --prop-url: url(../images/future-prop.png) !important;
}
.futureSection.prop-top-right::after {
  top: -15%;
}
@media (min-width: 1400px) {
  .futureSection .container {
    //max-width: 1440px;
  }
}
.futureCardContainer {
  gap: 43px;
}
.futureCard h4 {
  margin-bottom: 24px;
}
.futureCardText {
  background-color: #181819;
}
.futureCard.bigCard {
  max-width: 540px;
  width: 100%;
}
.futureCard.bigCard .futureCardText {
  padding: 45px 25px 60px;
  min-height: 370px;
}
.futureCard.smallCard {
  display: flex;
}
.smallFutureCardContainer {
  max-width: 857px;
  width: 100%;
}
.futureCard.smallCard:nth-child(1) .futureCardMainImg img {
  height: 100%;
  object-fit: cover;
}
.futureCard.smallCard:nth-child(1) .futureCardText {
  padding-block: 49px;
  padding-right: 34px;
  padding-left: 41px;
}
.futureCard.smallCard .futureCardText {
  max-width: 587px;
  width: 100%;
  display: grid;
  place-content: center;
  padding: 40px;
}
.futureCard.smallCard:nth-of-type(1) .futureCardText {
  padding-right: 34px;
}
.futureCardText p {
  letter-spacing: -.2px;
}
.futureCard.smallCard:nth-child(2) img {
  height: 100%;
  object-fit: cover;
}
/* future end */
/* cta start */
.ctaSection {
  --prop-url: url(../images/cta-prop.png) !important;
}
.ctaSection .container {
  background: #f9f7f2;
  padding: 3% 5% !important;
  max-width: 1485px;
}
.ctaSection.prop-bottom-left::after {
  bottom: -50%;
}
@media (min-width: 1400px) {
  .ctaSection .container {
    //max-width: 1237px;
    //width: 100%;
  }
}
/* cta end */
/* New Hero Section */
.hero-section {
  position: relative;
  /*background: url("../images/new-banner-bg.png");*/
  background-position: center -15px;
  background-repeat: no-repeat;
  padding-top: 3%;
}
.hero-section.none {
  background: none;
}
.hero-section.none .row {
  /*background: url(../../Banner.png);
    background-repeat: no-repeat;
    width: 1320px;
    background-size: 100%;
    background-position: center;*/
}
.hero-section:not(.banner-with-side-images):after {
  position: absolute;
  content: "";
  background: #F9F7F2;
  right: 0;
  top: 0px;
  width: 30%;
  height: 100%;
  display: none;
}
.hero-section .container {
  position: relative;
  z-index: 55;
}
.hero-section .row {
  display: flex;
  align-items: center;
  transform: translateY(10px);
}
.hero-text h1 {
  font-weight: 600;
  font-size: var(--fs-section-heading);
  margin-bottom: 15px;
}
.hero-text h1 .highlight {
  color: #81B734;
}
.hero-text button {
  background-color: #d1b2f0;
  color: #fff;
  border: none;
}
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  /*max-width: 400px;*/
}
.overlay-elements {
  position: absolute;
  top: 10%;
  left: 25%;
}
.overlay-elements .card {
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.overlay-elements .card.invoice-card {
  width: 150px;
  top: -20px;
  left: -20px;
}
.overlay-elements .card.bill-card {
  width: 150px;
  bottom: -20px;
  right: -20px;
}
.hero-text a.btn {
  width: 200px;
  background: rgba(161, 121, 242, 1);
  color: #fff;
}
.hero-section .row {
  display: flex;
  align-items: center;
  min-height: 650px;
}
.hero-section .row.new-height {
  display: flex;
  align-items: center;
  min-height: 350px;
}
/* New Hero Section */
/**---Footer start ---*/
.evenColumns {
  display: flex;
  justify-content: space-between;
}
.footerlogoBlack img {
  width: 200px;
}
.align-items {
  align-items: center;
}
.footerMainText {
  max-width: 479px;
  width: 100%;
}
.footerMainText p {
  line-height: 19px;
}
.footerNavWrapper {
  max-width: 569px;
  width: 100%;
  padding-top: 15px;
}
footer {
  position: relative;
  padding-block: 107px;
  overflow: hidden;
}
footer::after {
  content: url(../images/footer-prop.png);
  position: absolute;
  bottom: -7px;
  right: 0;
  z-index: -1;
}
footer .logo {
  width: 160px;
  height: 20px;
  margin-bottom: 28px;
}
.footer__title {
  font-size: var(--fs-15);
  color: #000;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 1.3rem;
}
.footer_list li a {
  font-size: var(--fs-13);
  color: var(--clr-grey-800);
  font-weight: 400;
  line-height: 1rem;
}
.footer_list li {
  margin-bottom: 3px;
}
.footerIcons li a {
  font-size: 22px;
  color: var(--clr-grey-800);
}
footer a:hover {
  color: var(--clr-secondary);
}
.footerTermList {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-wrap: wrap;
}
.footerTermList li a {
  font-size: 13px;
  font-weight: 400;
  color: #656565;
}
.footerTermList li a {
  padding-inline: 12px;
  border-right: 1px solid #656565;
}
.footerTermList li:nth-child(1) a {
  padding-left: 0;
}
.footerTermList li:last-child a {
  border: none;
  padding-left: 12px;
}
.footerTerms span {
  font-size: 13px;
  font-weight: 400;
  color: #656565;
}
@media only screen and (max-width: 560px) {
  .footer_list li a {
    font-size: 15px;
  }
  .footerMainText p, .footer__title {
    font-size: 16px;
  }
  section {
    overflow: hidden;
  }
}
/**---Footer end ---*/
/*--Story start ---*/
.storyWrapper {
  position: relative;
}
.storyWrapper::after {
  content: "";
  min-height: calc(600px - -80px);
  width: 100%;
  background-color: var(--clr-primary);
  display: block;
  position: absolute;
  /* bottom: 30px; */
  bottom: 0;
  z-index: -1;
}
.storySliderCard {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.storyCardText {
  max-width: 671px;
  width: 100%;
  padding-bottom: 30px;
  padding-top: 15%;
}
.personContainer {
  max-width: 310px;
  width: 100%;
  gap: 11px;
}
.personContainer img {
  height: 54px;
  width: 54px;
  border-radius: 3px;
}
.img_wrap.mb-4 img {
  width: 110px;
  height: auto;
  filter: invert(100) brightness(100);
}
.storySlider .slick-dots {
  position: absolute;
  bottom: 68px;
  left: -114px;
  width: max-content;
  counter-reset: slick-counter;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.storySlider ul.slick-dots li {
  counter-increment: slick-counter;
}
.storySlider ul.slick-dots li button:hover, .storySlider ul.slick-dots li button:focus, .storySlider ul.slick-dots li button {
  background: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 1;
  margin: 0;
}
.storySlider ul.slick-dots li button:hover::before, .storySlider ul.slick-dots li.slick-active button::before {
  color: #fff;
  opacity: 1;
}
.storySlider ul.slick-dots li button::before {
  content: "0"counter(slick-counter);
  display: block;
  color: #FFF;
  font-family: var(--ff-poppins);
  font-size: var(--fs-22);
  font-weight: 400;
  line-height: normal;
  opacity: .4;
  height: auto;
  width: auto;
  position: relative;
  line-height: .6;
}
.storySlider ul.slick-dots li button::after {
  content: "";
  border-radius: 54px;
  background: #FFF;
  display: block;
  width: 1px;
  height: 0;
  transition: all 320ms ease;
}
.storySlider ul.slick-dots li.slick-active button::after {
  height: 92px;
}
/*--Story end ---*/
/* panel section */
.panelSection p {
  max-width: 610px;
  width: 100%;
}
.panelSection ul {
  margin-bottom: 25px;
  margin-left: 25px;
}
.panelSection ul li {
  font-weight: 400;
  line-height: 1.3;
  color: var(--clr-grey-700);
  line-height: 35px;
  list-style: disc;
}
/* panel section */
/* Mobile Banner section */
.bannerMobileContainer {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 150px;
  padding-top: 5%;
}
.bannerMobileContainer .d-flex {
  align-items: center;
}
.bannerMobileImage {
  position: absolute;
  bottom: -160px;
}
/* Mobile Banner section */
/* Performence start */
.performenceCards {
  gap: 20px;
  margin-bottom: 30px;
}
.performenceCards img {
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}
.performenceCards:hover img {
  transform: rotate(45deg);
  transition: transform 0.5s ease;
}
.performenceCards .text_wrap h4 {
  text-wrap: auto;
  padding-right: 25px;
}
@media (min-width: 1401px) {
  .performenceCards .text_wrap h4 {
    text-wrap: auto;
  }
  .performenceCards {
    margin-bottom: 65px;
  }
}
.performenceCards .img_wrap {
  width: 50px;
}
.performenceCards img[src="assets/images/icons/performence-2.svg"] {
  height: 40px;
  width: 40px;
}
.performenceCards .text_wrap {
  max-width: 657px;
  width: 100%;
}
.performenceCards .text_wrap p {
  padding-right: 60px;
}
/* Performence end */
/* Counter Start */
.counterSectionMain {
  background-color: #F4F5F6;
  background-image: url(../images/counter-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  max-width: 1320px;
  margin: 0px auto;
  border-bottom: 10px solid #80b735;
  border-radius: 0 0 15px 15px;
}
.counterCard {
  max-width: 407px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(20px, 7vw, 150px);
  font-weight: 600;
  background: #ffffff73;
  border-radius: 10px;
  /*background: url("../images/white-layer.png");
	background-position: center center;
	background-repeat: no-repeat;*/
}
.counterCard span {
  font-size: clamp(20px, 7vw, 150px);
  color: #000;
  font-weight: 600;
  line-height: normal;
}
.counterCard p {
  text-transform: capitalize;
  max-width: 300px;
  text-align: center;
  margin: -20px auto;
  padding-bottom: 25px;
}
.solutionCardContainer {
  max-width: 984px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.solutionCards .img_wrap {
  margin-bottom: 18px;
}
.solutionCards img {
  opacity: .9;
  filter: grayscale(1);
}
/* Counter End */
/* Banner Card start */
.bannerCard {
  max-width: 287px;
  width: 100%;
}
.bannerCard img {
  max-width: 250px;
  width: 100%;
  display: block;
  margin: 0 auto 22px;
  border-radius: 3px;
}
@media (min-width: 1401px) {
  .bannerCardContainer {
    max-width: 1067px;
    width: 100%;
    margin: 0 auto;
  }
}
/*************BETTA AI*************/
.center-it h6 {
  bottom: -120px;
  position: relative;
  left: 25px;
}
.beta-ai-banner .answer {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
img.circular-b {
  width: 30px;
}
.beta-ai-banner img.circular-b {
  width: 40px;
}
.blob-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  top: 180px;
  width: 100%;
  max-width: 289px;
  margin: 0px auto;
  left: 35px;
  height: 460px;
}
.blob-wrapper.bottom-animation {
  top: 100px;
  height: auto;
  left: auto;
}
.blob {
  position: absolute;
  animation: circular-motion 1s infinite ease-in-out;
}
.b {
  z-index: 5;
  position: relative;
  margin: 0px auto;
}
.blob1 {
  /*background-color: #a77bff;*/
  background: url("../images/blob/3.png");
  animation: circular-motion 2s infinite linear; /* Reduced to 2s for much faster rotation */
  animation-delay: 0s; /* Starts immediately */
  background-size: 100%;
  width: 100%;
  max-width: 266px;
  height: 279px;
}
.blob2 {
  /*background-color: #9166e8;*/
  background: url("../images/blob/2.png");
  animation: circular-motion 3s infinite linear; /* Reduced to 3s for faster rotation */
  animation-delay: 1s; /* Slightly delayed start */
  background-size: 100%;
  width: 100%;
  max-width: 270px;
  height: 248px;
}
.blob3 {
  /*background-color: #66c158;*/
  background: url("../images/blob/1.png");
  animation: circular-motion 4s infinite linear; /* Reduced to 4s for faster but slower than blob2 */
  animation-delay: 2s; /* Delayed start */
  background-size: 100%;
  width: 100%;
  max-width: 274px;
  height: 271px;
}
@keyframes circular-motion {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}
.question-one-div {
  position: absolute;
  top: 75px;
  left: 75px;
  z-index: 5;
}
.question-two-div {
  position: absolute;
  top: 298px;
  left: -41px;
  z-index: 5;
}
.question-two-three-div {
  position: absolute;
  top: 529px;
  left: -1px;
  z-index: 5;
}
.question-three-div {
  position: absolute;
  top: 156px;
  right: -18px;
}
.question-four-div {
  position: absolute;
  top: 445px;
  right: -65px;
}
.question {
  margin-bottom: 25px;
}
.question, .answer {
  opacity: 0;
  animation: fade-in 2s ease-in-out forwards;
}
.question-one-div .question {
  animation-delay: 1s;
}
.question-one-div .answer {
  animation-delay: 2s;
}
.question-two-div .question {
  animation-delay: 1s;
}
.question-two-div .answer {
  animation-delay: 2s;
}
.question-two-three-div .question {
  animation-delay: 1s;
}
.question-two-three-div .answer {
  animation-delay: 2s;
}
.question-three-div .question {
  animation-delay: 1s;
}
.question-three-div .answer {
  animation-delay: 2s;
}
.question-four-div .question {
  animation-delay: 1s;
}
.question-four-div .answer {
  animation-delay: 2s;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*.beta-ai-banner .container {
	/*background: url("../images/blob/blob-banner.png");
    background-position: center 85px;
    background-repeat: no-repeat;
    background-size: cover;*/
/*}*/
.betta-ai-logo {
  text-align: center;
}
.betta-ai-short-text .section_heading {
  //font-size: clamp(24px, 3vw, 50px);
}
.betta-ai-short .row {
  align-items: center;
}
.single-betta-ai-logo {
  position: relative;
  top: 225px;
}
.betta-ai-logo img.mobile-only {
  display: none
}
.why-betta-ai-container {
  background: #F9F7F2;
  padding: 60px 30px 20px 60px;
  background-image: url("../images/blob/betta-before.png");
  background-position: bottom left;
  background-repeat: no-repeat;
}
.betta-ai-choose .third-choose-card-container {
  grid-template-columns: 410px 410px 410px;
}
.why-betta-ai-container .row {
  align-items: center;
}
/*************BETTA AI*************/
/**********************************/
.home-blob-center-it h6 {
  bottom: -120px;
  position: relative;
  left: 25px;
}
.home-blob .answer {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.home-blob-blob-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  top: 40px;
  width: 100%;
  max-width: 229px;
  margin: 0px auto;
  left: -15px;
  height: 460px;
}
.home-blob-blob-wrapper.bottom-animation {
  top: 100px;
  height: auto;
  left: auto;
}
.home-blob-blob {
  position: absolute;
  animation: circular-motion 1s infinite ease-in-out;
}
.home-blob-b {
  z-index: 5;
  position: relative;
  margin: 0px auto;
}
.home-blob-blob1 {
  /*background-color: #a77bff;*/
  background: url("../images/home-banner/3.png");
  animation: circular-motion 2s infinite linear; /* Reduced to 4s for faster rotation */
  animation-delay: 0s; /* Starts immediately */
  background-size: 100%;
  width: 100%;
  max-width: 228px;
  height: 209px;
}
.home-blob-blob2 {
  /*background-color: #9166e8;*/
  background: url("../images/home-banner/2.png");
  animation: circular-motion 3s infinite linear; /* Reduced to 8s for moderately faster rotation */
  animation-delay: 2s; /* Delayed start */
  background-size: 100%;
  width: 100%;
  max-width: 225px;
  height: 236px;
}
.home-blob-blob3 {
  /*background-color: #66c158;*/
  background: url("../images/home-banner/1.png");
  animation: circular-motion 4s infinite linear; /* Reduced to 12s for faster slowest rotation */
  animation-delay: 4s; /* Delayed start */
  background-size: 100%;
  width: 100%;
  max-width: 230px;
  height: 229px;
}
.home-blob .home-blob-question {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}
.home-blob .home-blob-answer {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.home-blob .home-blob-question img.circular-b {
  visibility: hidden;
}
@keyframes circular-motion {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}
.home-blob-question-one-div {
  position: absolute;
  top: 98px;
  left: 485px;
  z-index: 5;
}
.home-blob-question-two-div {
  position: absolute;
  top: 268px;
  left: 459px;
  z-index: 5;
}
.home-blob-question-two-three-div {
  position: absolute;
  top: 438px;
  left: 510px;
  z-index: 5;
}
.home-blob-question-three-div {
  position: absolute;
  top: 176px;
  right: -73px;
}
.home-blob-question {
  margin-bottom: 25px;
}
.home-blob-question-four-div {
  position: absolute;
  top: 375px;
  right: -115px;
}
.home-blob-question, .home-blob-answer {
  opacity: 0;
  animation: fade-in 1s ease-in-out forwards;
}
.home-blob-question-one-div .home-blob-question {
  animation-delay: 1s;
  max-width: 307px;
}
.home-blob-question-one-div .home-blob-answer {
  animation-delay: 2s;
  max-width: 404px;
}
.home-blob-question-two-div .home-blob-question {
  //animation-delay: 1s;
  max-width: 273px;
}
.home-blob-question-two-div .home-blob-answer {
  animation-delay: 2s;
  max-width: 280px;
}
.home-blob-question-two-three-div .home-blob-question {
  animation-delay: 1s;
  max-width: 263px;
}
.home-blob-question-two-three-div .home-blob-answer {
  animation-delay: 2s;
  max-width: 365px;
}
.home-blob-question-three-div .home-blob-question {
  animation-delay: 1s;
  max-width: 273px;
}
.home-blob-question-three-div .home-blob-answer {
  animation-delay: 2s;
  max-width: 384px;
}
.home-blob-question-four-div .home-blob-question {
  animation-delay: 1s;
  max-width: 297px;
}
.home-blob-question-four-div .home-blob-answer {
  animation-delay: 2s;
  max-width: 400px;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**********************************/
/* Banner Card End */
/* News Section  */
@media (min-width: 1401px) {
  .latestBlogSection .container {}
}
.newsCard:not(.big) {
  max-width: 371px;
  width: 100%;
  margin: 0 auto;
}
.newsCardText {
  padding-top: 25px;
}
.newsCardText p {
  color: #58677D;
  font-size: var(--fs-16);
  font-weight: 400;
}
/* News Section  */
/* Tool section */
.toolCardContainer {
  max-width: 1131px;
  width: 100%;
  margin-inline: auto;
}
.toolCard {
  max-width: 289px;
  width: 100%;
  margin-bottom: 56px;
}
/* Tool section */
/* News Logo Slider */
.newsLogoSlider img {
  filter: grayscale(1);
}
/* News Logo Slider */
/* Blog Start */
.blogCard {
  position: relative;
  background-color: #F9F7F7;
  margin-bottom: 45px;
}
.blogCard::after {
  content: url(../images/blog-card-prop.svg);
  position: absolute;
  left: 0;
  bottom: 0;
}
.blogCardText {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 45px;
  padding-right: 35px;
}
.blogTitle {
  /*font-weight: 400;
  color: #000;
  font-size: var(--fs-25);
  margin-bottom: 10px;
  line-height: 1.1;
  min-height: 90px;
  text-transform: capitalize;*/
  font-weight: 500;
  font-size: 23px;
  line-height: 130%;
  color: #151411;
  margin: 0 0 20px;
  border: 0px none;
  letter-spacing: -1px;
  min-height: 65px;
	text-transform: capitalize;
}
.authorName {
  font-size: var(--fs-18);
  color: #000;
  font-weight: 400;
}
.blogCard time {
  color: rgba(101, 101, 101, 1);
}
.blogCard p {
  font-size: var(--fs-16);
  color: #656565;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 15px;
}
.blogCardButton {
  padding: 6px 23px;
  border: 2px solid var(--clr-primary);
  border-radius: 21px;
  font-size: 14px;
  color: var(--clr-primary);
  font-weight: 500;
}
.blogCard:where(:hover, :focus) .blogCardButton {
  background-color: var(--clr-primary);
  color: #FFF;
}
.img_wrap {
  position: relative;
}
.blogCard .img_wrap:after {
  position: absolute;
  background: url(../images/logo-green.png);
  background-position: center center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  content: "";
  z-index: 5;
  top: 20px;
  left: 20px;
  background-size: 100%;
}
/* Blog End */
/* About Start */
.aboutCard {
  opacity: .9;
  cursor: pointer;
  transform: scaleY(.98);
  transform-origin: bottom;
  margin-right: 30px;
  margin-bottom: 50px;
}
.aboutCard, .aboutCard * {
  transition: all 100ms ease;
}
.aboutCard img {
  filter: grayscale(1);
}
.aboutCardText {
  /*padding: 0 40px 40px;*/
  padding: 40px;
  padding-right: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  /*max-width: 375px;*/
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), black);
  border-radius: 25px;
}
.aboutCardText h6 {
  font-size: var(--fs-30);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
  color: #FFF;
}
.aboutCardText p {
  font-size: var(--fs-18);
  color: #FFF;
  font-weight: 400;
  display: none;
}
.aboutCardText button {
  background-color: none;
  outline: none;
  border: none;
  font-weight: 400;
  font-size: var(--fs-15);
  color: #CBBAED;
  display: flex;
  align-items: center;
  gap: 8px;
}
.item.slick-active .aboutCard, .aboutCard:hover {
  transform: scaleY(1);
  box-shadow: 15px 20px 20px rgba(0, 0, 0, .10);
}
.item.slick-active p, .aboutCard:hover p {
  display: block;
}
.item.slick-active .aboutCard button, .aboutCard:hover button {
  display: none;
}
.item.slick-active .aboutCard img, .aboutCard:hover img {
  filter: grayscale(0);
}
.companySlider img {
  display: block;
  margin: 0 auto;
  filter: grayscale(1);
}
.modal button.btn-close {
  background-color: var(--clr-primary);
  border-radius: 100%;
}
/* About End */
/*Full Width Layout*/
.full-width-banner {
  position: relative;
}
.full-width-banner h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 55px;
  line-height: 70px;
  letter-spacing: -2px;
  color: #FFFFFF;
  margin: 45px 0 45px;
  text-transform: capitalize;
  text-shadow: 2px 0px 15px #2a2a2a;
  position: relative;
}
.full-width-banner:before {
  content: "";
  position: absolute;
  width: 100%;
  background: #00000080;
  height: 100%;
  z-index: 1;
  inset: 0;
}
.home-banner-content {
  position: relative;
  z-index: 5;
}
.full-width-content .scrollactive-nav.menu-list ol li {
  border-bottom: 1px dotted #e7e7e7;
  line-height: 30px;
  list-style: none;
}
.full-width-content h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  color: #81B734;
  margin-bottom: 10px;
  margin-top: 10px;
  border-bottom: 1px dotted #A179F2;
}
.full-width-content ul li, .full-width-content ol li {
  font-weight: 300;
  border-bottom: 1px dotted #e7e7e7;
  line-height: 130%;
  font-size: 18px;
  color: #000000;
  padding-bottom: 8px;
  padding-top: 8px;
  letter-spacing: -.2px;
}
.full-width-content p:not(.error_message) {
  font-weight: 300;
  font-size: 18px;
  line-height: 180%;
  color: #000000;
  padding-bottom: 15px;
  letter-spacing: -.2px;
}
.full-width-content.extra > strong {
  padding-bottom: 15px;
  font-size: 20px;
}
/*Full Width Layout*/
/*Payment Page*/
#payment-page .form-group {
  margin-bottom: 15px;
}
.pos-rel-check .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.pos-rel-check .form-group label {
  position: relative;
  top: 15px !important;
  pointer-events: all;
}
.pos-rel-check .form-group label:before {
  content: "";
  -webkit-appearance: none;
  background: #f1f1f1;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}
.pos-rel-check .form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #0079bf;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.hold-err {
  color: red;
  margin-top: 30px;
  font-size: 11px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 6px;
  border-radius: 7px;
  display: none;
}
.pos-rel-check .form-group label {
  position: relative;
  top: 15px !important;
  pointer-events: all;
  font-size: 12px;
}
.pos-rel-check .form-group label a {
  color: #A179F2;
}
span.example-span {
  font-size: 12px;
  float: right;
  color: #bfc6cf;
}
span.example-span span {
  color: #a179f2;
}
span.gstin-error {
  font-weight: 300;
  font-size: 13px;
  line-height: 20px;
  color: #abb3be;
  display: block;
}
.input_wrap label {
  font-size: 16px;
  color: #afbdcf;
  padding: 14px;
  position: absolute;
  top: 0;
  left: 15px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  pointer-events: none;
  letter-spacing: -1px;
}
/*Payment Page*/
form.inquiry-form-pricing .form-group {
  margin-bottom: 15px;
}
.form_loader {
  position: absolute;
  right: 21px;
  bottom: 10px;
}
#carrer-top-sec h1 {
  margin-bottom: 15px;
  letter-spacing: -2px;
}
#carrer-top-sec .pr-info {
  margin-bottom: 15px;
  display: block;
}
.splide-1.logo-slider img {
  height: 56px;
  max-width: 300px;
  aspect-ratio: 3/2;
}
.newsAndStoryCard .img_wrap img {
  height: 130px;
  border-radius: 6px;
}
.newsCard img {
  border-radius: 4px;
  margin-bottom: 10px;
}
/* Career start */
.careerCard {
  background-color: #FFF;
  border-radius: 5px;
  box-shadow: 0 15px 30px 10px rgba(0, 0, 0, .05);
  min-height: 160px;
  display: flex;
  align-items: center;
  position: relative;
  padding-inline: 30px;
  max-width: 1240px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .careerCard {
    padding-left: 94px;
    padding-right: 58px;
  }
}
.careerCard::after {
  content: url(../images/career-card-prop.svg);
  position: absolute;
  top: -10px;
  left: -17px;
}
/* Career end */
/* Contact */
@media (min-width: 1401px) {
  .contactBanner .bannerTextContainer.close-to-bottom {
    bottom: 400px;
  }
  .contactSection {
    position: relative;
    /*top: -200px;
    z-index: 1;*/
  }
}
.contactAddressContainer {
  padding: 20px;
  background: url(../images/address-bg.png);
  background-size: 100% 100%;
  border-radius: 6px;
  max-width: 490px;
  width: 100%;
  height: 100%;
  padding: 47px 43px;
  padding-right: 64px;
}
.contactFormContainer {
  max-width: 1010px;
  width: 100%;
}
.contactCard {
  margin-bottom: 40px;
}
.contactCard h6 {
  display: flex;
  gap: 10px;
  color: #FFF;
  font-size: var(--fs-45);
  font-weight: 500;
  margin-bottom: 10px;
}
.contactCard p {
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  text-shadow: 5px 5px 15px #a179f2;
}
.form-style-1 {
  padding: 50px;
  padding-top: 61px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
  border: 1px solid #e7e7e7;
  background-color: #FFF;
  border-radius: 4px;
}
.form-style-1 .input_wrap {
  position: relative;
  padding-inline: 24px;
  padding-block: 10px;
  background-color: #FFF;
  border: 1px solid #D1D3E4;
  border-radius: 8px;
  margin-bottom: 14px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
}
.form-style-1 .input_wrap.select::after {
  content: url(../images/icons/contact-arrow-down.svg);
  position: absolute;
  top: 57%;
  transform: translateY(-50%);
  right: 25px;
}
.form-style-1 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('../images/icons/contact-arrow-down.svg') no-repeat right;
  padding-right: 20px;
  background-position-y: -100px;
}
.form-style-1 .input_wrap:focus-within {
  outline: 1px solid var(--clr-secondary);
}
.form-style-1 .input_wrap label {
  font-size: 12px;
  color: #333442;
  margin-bottom: 2px;
  font-weight: 700;
  position: static;
  padding: 0;
  pointer-events: all;
  letter-spacing: 0;
}
.form-style-1 .input_wrap.select label {
  padding-left: 4px;
}
.form-style-1 .input_wrap :is(input, select, textarea):is(:hover, :focus) {
  outline: none;
}
.form-style-1 .input_wrap :is(input:not([type="checkbox"]), select, textarea) {
  border: none;
  padding: 0;
  min-height: auto;
  font-size: var(--fs-16);
  font-weight: medium;
  color: #000;
  line-height: 1.1;
  letter-spacing: -2.5%;
  min-height: 20px;
}
.form-style-1 .input_wrap :is(input, select, textarea)::placeholder {
  color: #D1D3E4;
  text-transform: capitalize;
}
.form-style-1.paymentForm .input_wrap {
  margin-bottom: 25px;
}
form#paymentForm :disabled {
  background: #FFF !important;
}
.contactParagraph a {
  color: #3A7BF9;
}
.playstore-image {
  box-shadow: 4px 4px 13px rgba(255, 255, 255, .17);
}
/* Contact */
/* Bettapay start */
@media (min-width: 1201px) {
  .bettapayBannerList {
    max-width: 461px;
  }
}
.bettapayBannerList li {
  gap: 40px;
  margin-bottom: 50px;
}
.bettapayBannerList li span {
  min-width: 109px;
}
/* Bettapay end */
/* Benefit Start */
.benefitList li .number {
  height: 36px;
  width: 36px;
  border-radius: 100%;
  background-color: var(--clr-secondary);
  color: #FFF;
  font-size: var(--fs-18);
  display: grid;
  place-content: center;
  line-height: normal;
  font-weight: 400;
  flex-shrink: 0;
}
.benefitList li {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-bottom: 55px;
}
.benefitList li:nth-last-of-type(1) {
  margin-bottom: 0;
}
.benefitList li p {
  color: #000;
  font-weight: 400;
}
/* Benefit End */
/* Bettawork Start */
.bettaWorkMain {
  display: grid;
  place-content: center;
  min-height: 1080px;
  width: 100%;
  background: url(../images/bettapay-work-bg.png) bottom left no-repeat #000;
}
.bettaWorkCard {
  position: relative;
  min-height: 407px;
  display: grid;
  place-content: center;
  background-color: #FFF;
  box-shadow: 4px 11px 23px rgba(0, 0, 0, .06);
  border-radius: 5px;
}
.bettaWorkCard::after {
  content: url(../images/career-card-prop.svg);
  position: absolute;
  top: -12px;
  left: -15px;
}
.bettaWorkCard::before {
  content: url(../images/betta-card-prop.png);
  position: absolute;
  bottom: -50px;
  right: -20px;
}
.bettaWorkCard .text_wrap {
  max-width: 332px;
}
.bettaWorkCard .title {
  position: absolute;
  left: 91px;
  top: 20px;
}
.bettaWorkCard .number {
  color: var(--clr-secondary);
  font-size: var(--fs-18);
  font-weight: 700;
  line-height: normal;
  background-color: #f6f2fe;
  border-radius: 5px;
  display: grid;
  place-content: center;
  margin-bottom: 15px;
  height: 53px;
  width: 61px;
  margin-inline: auto;
}
.img_wrap.flex-shrink-0 img {
  border-radius: 4px;
}
.career-form .form-group {
  margin-bottom: 15px;
}
section.slidingLogoSection {
  padding: 35px 0;
}
/* Bettawork End */
/* Internship Start */
/* DIVE TAB START */
.dive_text > p {
  color: #000;
}
.tabbingButtonList li {
  max-width: 394px;
  width: 100%;
}
.tabbingButtonList li:not(:last-child) {
  margin-bottom: 30px;
}
.tabbingButtonList li button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  padding: 8px 15px;
  width: 100%;
  transition: all 350ms ease;
}
.tabbingButtonList li button.active, .tabbingButtonList li button:hover {
  background-color: #81B734;
  color: white;
}
.tabbingButtonList li button:active {
  background-color: #81B734;
  color: white;
}
.tabbingButtonList li button:focus {
  background-color: #81B734;
  color: white;
}
.tabbingPanel h6 {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 28.13px;
}
.tabbingPanelList li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}
/* DIVE TAB END */
/* BENEFIT START */
.benefitWrapper {
  padding-block: 200px;
  background-image: url('../images/benefit-wrapper-bg.png');
  background-position: bottom;
  background-size: auto;
  background-repeat: no-repeat;
}
.benefitCard {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: white;
  max-width: 412px;
  width: 100%;
  min-height: 160px;
  margin-bottom: 40px;
  border-radius: 5px;
  margin-inline: auto;
  background-image: url('../images/benefit-card-prop.png');
  background-repeat: no-repeat;
  background-size: 80px 90px;
  background-position: -15px -11px;
  padding-inline: 20px;
}
.benefitCardCount {
  position: absolute;
  top: 15px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background-color: #B768D5;
}
.benefiteMainContent > * {
  color: #000;
}
.benefiteMainContent h4 {
  margin-bottom: 15px;
}
/* BENEFIT END */
/* JOIN START */
.joinWrapper {
  padding-block: 100px;
}
.joinMainContent h4 {
  color: #000;
}
.joinMainContent p {
  color: #000;
  line-height: 24px;
}
/* JOIN END */
/* Internship End */
.bettaNumberCards {
  text-align: center;
  margin-bottom: 50px;
}
.bettaNumberCards h6 {
  color: var(--clr-secondary);
  font-size: clamp(25px, 10vw, 100px);
  font-weight: 300;
  line-height: 1;
}
.bettaNumberCards p {
  color: #FFF;
  font-size: var(--fs-18);
  font-weight: 400;
}
.benefitsOfBettaSection {
  min-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.bettaMobileImage {
  position: absolute;
  max-width: 1045px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: -230px;
}
.benefitsOfBettaSection {
  background: url('../images/benefits-of-betta-bg.png') no-repeat bottom left;
}
@media (max-width:1320px) {
  .bettaMobileImage {
    position: static;
    transform: unset;
  }
  .benefitsOfBettaSection {
    min-height: auto;
  }
}
@media (max-width:992px) {
  .bettaMobileImage {
    display: none;
  }
  .benefitsOfBettaSection {
    background-image: none;
  }
}
/* SECTION IMAGE BANK START */
.imageBank_text {
  margin-bottom: 70px;
  max-width: 984px;
  width: 100%;
}
.imageBankCard {
  max-width: 387px;
  width: 100%;
  margin-bottom: 25px;
  border-radius: 8px;
  margin-inline: auto;
  background-color: #F9F7F7;
  transition: all 550ms ease;
}
.imageBankCard:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.imageBankCardMainContent {
  padding-bottom: 34px;
  padding-left: 38px;
  padding-top: 24px;
  padding-right: 14px;
  background-image: url('../images/bank-card-prop.png');
  background-size: 35px 76px;
  background-repeat: no-repeat;
  background-position: 0px bottom;
}
.imageBankCardMainContent h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.imageBankCardMainContent span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #A179F2;
}
@media only screen and (max-width: 1506px) {
  .imageBankCardMainContent h5 {
    min-height: 60px;
    margin: 0;
  }
  .bannerImage img {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 900px) {
  .bannerSubtitle.small.bannerSubtitle.small {
    margin: 0 auto 15px;
  }
}
@media (max-width: 560px) {
  .imageBankCardMainContent h5 {
    min-height: auto;
    margin-bottom: 5px;
  }
}
.mediaKitBannerIcons img {
  transition: all 150ms ease;
}
.mediaKitBannerIcons img:hover {
  transform: scale(1.1);
}
/* SECTION IMAGE BANK END */
@media (max-width: 1250px) {
  .bannerSlider .slick-dots {
    position: absolute;
    bottom: 80px;
  }
}
@media (max-width: 992px) {
  .bannerSlider .slick-dots {
    position: absolute;
    bottom: 60px;
  }
}
.ai-section:has(+ .main-ct-sec) {
  padding-bottom: 0;
}
.ai-section + .main-ct-sec {
  padding-top: 0px;
}
.ai-section-container {
  min-height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  background-image: url(../images/ai-bg.png);
  background-size: cover;
  overflow: hidden;
  border-top-right-radius: 14px;
  border-top-left-radius: 14px;
  padding: 25px;
}
.ai-section-container .row {
  display: flex;
  align-items: center;
}
.ai-text {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.ai-text p {
  color: white;
  font-size: var(--fs-18);
  font-weight: 400;
}
.banner-with-side-images {
  background: url(../images/banner-bg.png);
  background-size: 100%;
  background-position: 0px -30PX;
  min-height: 854px;
  display: flex;
  align-items: center;
}
.inner-banner .hero-text {
  text-align: center;
}
.panelSection {
  position: relative;
}








/*************************Responsive Css*************************/
@media only screen and (max-width: 1670px) {
  .productCardWrapper {
    gap: 10px;
    position: static;
  }
  .storySlider .slick-dots {
    left: -52px;
  }
  .futureSection.prop-top-right::after {
    top: -10%;
    scale: .9;
    right: -10px;
  }
  .banner.prop-bottom-left::before, .productCardWrapper .prop-bottom-right {
    right: -61px;
    bottom: -80px;
    scale: .9;
  }
  .productSection {
    overflow: hidden;
  }
  .productCardWrapper .productCardContainer:nth-of-type(1) {
    top: 18px;
  }
  .ctaSection.prop-bottom-left::after {
    scale: .8;
    left: -20px;
    bottom: -220px;
  }
  .bannerWithMainImage {
    overflow: hidden;
  }
  .bannerWithMainImage [class*="prop"]::after {
    scale: .7;
    right: -40px;
    bottom: 40px;
  }
  .bannerWithMainImage .prop-bottom-left::after {
    left: -70px;
    right: unset;
  }
}
@media only screen and (max-width: 1570px) {
  .contactAddressContainer {
    display: block;
    max-width: 100%;
    /*background: var(--clr-primary);*/
    flex-wrap: wrap;
  }
  .contactAddressContainer .contactCard:nth-last-of-type(1) {
    margin-bottom: 0;
  }
  .contactFormContainer {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1399px) {
  .single-sourse-wrapper .container {
    background-size: cover;
  }
  .question-one-div {
    max-width: 420px;
  }
  .question-three-div {
    max-width: 490px;
  }
  .question-two-div {
    max-width: 420px;
  }
  .question-four-div {
    max-width: 400px;
  }
  .futureCard.bigCard {
    max-width: 100%;
    width: 100%;
    margin-bottom: 35px;
  }
  .futureCard.bigCard {
    max-width: 100%;
    width: 100%;
    margin-bottom: 35px;
  }
  .futureCard.bigCard .futureCardText {
    padding: 45px 25px 60px;
    min-height: auto;
  }
  header .container {
    /*max-width: fit-content;*/
  }
}
@media only screen and (max-width: 1440px) {
  .bannerToggleButton {
    bottom: calc(0px + 30px);
  }
  .storySliderCard {
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .storyWrapper {
    background-color: var(--clr-primary);
    margin-bottom: 0 !important;
    padding-block: 40px;
  }
  .storyWrapper::after {
    display: none;
  }
  .storyCardText {
    max-width: 571px;
    padding-bottom: 0;
  }
  .storyMainImage {
    margin-bottom: 15px;
  }
  .storySlider .slick-dots {
    left: -2%;
  }
  img[class*="prop"], [class*="prop"]::after {
    display: none;
  }
  .banner {
    --controller: 0px;
  }
  .bannerImage img {
    /*min-height: 641px;*/
    min-height: 450px;
  }
  .bannerMainImageContainer {
    --offset: 240px;
    max-height: 640px;
  }
}
@media only screen and (max-width: 1366px) {
  .home-blob-question-two-div {
    left: 379px;
  }
  .home-blob-question-two-three-div {
    top: 418px;
    left: 399px;
  }
  .home-blob-question-one-div {
    left: 445px;
  }
  .home-blob-question-four-div {
    right: -75px;
  }
  .home-blob-question-three-div {
    right: -98px;
  }
  .productSectionWrapper {
    flex-direction: row;
  }
  .productSectionText h4.section_heading {
    font-size: 30px;
  }
  .storySlider .slick-dots {
    left: -3%;
  }
  .futureCardText p {
    letter-spacing: -.2px;
    font-size: 16px;
  }
  .productCardWrapper {
    max-width: 740px;
  }
  .contactAddressContainer {
    display: block;
    max-width: 100%;
    /* background: var(--clr-primary); */
    flex-wrap: wrap;
  }
  .productCardWrapper .productCardContainer:nth-of-type(1) {
    position: static;
  }
  .productSectionText {
    text-align: left;
  }
  .productSection::after {
    display: none;
  }
  .productSection {
    background-color: var(--clr-grey-500);
  }
  .futureCard img {
    height: auto;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }
  .futureCard.smallCard, .futureCardContainer {
    flex-direction: row;
  }
  .futureCard.smallCard:nth-child(1) {
    /*flex-direction: column-reverse;*/
    flex-direction: row;
  }
  .futureCard.bigCard, .smallFutureCardContainer, .futureCard {
    margin-inline: auto;
    max-width: 800px;
  }
  .futureCard.smallCard .futureCardText {
    max-width: 100%;
    width: 100%;
  }
  .futureCardText {
    padding: 20px 15px !important;
  }
  .futureCardContainer {
    gap: 20px;
  }
  .bannerMainImageContainer {
    --offset: 240px;
    max-height: 640px;
  }
}
@media only screen and (max-width: 1220px) {
  .solutionsSection .horizontalCard img {
    width: 100%;
    min-height: 469px;
    object-fit: cover;
  }
  .storyCardText {
    padding-top: 0px;
  }
  .solutionsSection .flex-lg-row {
    flex-direction: column !important;
  }
  .solutionsSection .flex-xl-row {
    flex-direction: column !important;
  }
  .storySlider .slick-dots {
    left: 0;
  }
  .storySliderCard {
    flex-direction: column;
    gap: 0;
  }
  .bannerMainImageContainer img {
    top: -160px;
  }
  .bannerMobileImage {
    position: static;
    display: block;
    margin-inline: auto;
    display: none;
  }
  .bannerMobileContainer {
    top: 0;
    padding: var(--section-padding);
    margin: 0;
  }
}
@media only screen and (max-width: 1199px) {
   
	
  .question-two-three-div, .question-two-div, .question-one-div {
    position: relative;
    top: auto;
    left: auto;
    z-index: 5;
    width: 100%;
    max-width: 100%;
  }
  .question-four-div, .question-three-div {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
  }
  .blog-sidebard .flex-lg-row {
    flex-direction: column !important;
  }
  .futureCard.bigCard {
    flex-direction: row;
    display: flex;
  }
  .futureCard.bigCard, .smallFutureCardContainer, .futureCard {
    margin-inline: auto;
    max-width: 800px;
  }
  .futureCard.smallCard, .futureCardContainer {
    flex-direction: column;
  }
  .futureCard.smallCard, .futureCardContainer:nth-child(1) {
    flex-direction: row;
  }
  .futureCard img {
    object-position: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .productSectionWrapper {
    flex-direction: column;
  }
  .productSectionText {
    text-align: center;
    margin-bottom: 30px;
  }
  .newsAndStoryCard .img_wrap img {
    height: 130px;
    border-radius: 6px;
    width: 100%;
  }
}
@media only screen and (max-width: 1170px) {}
@media only screen and (max-width: 992px) {
	.counterCard p {
		margin: 10px auto;
	}
	
	.home-blob-question-four-div, 
   .home-blob-question-three-div,
   .home-blob-question-two-three-div, 
   .home-blob-question-two-div, 
   .home-blob-question-one-div {
		position: relative;
		top: auto;
		left: auto;
	    right: auto;
		z-index: 5;
		width: 100%;
		max-width: 100%;
	}
	.home-blob-blob-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    top: auto;
    width: 100%;
    max-width: 229px;
    margin: 0px auto;
    left: -25px;
    height: 240px;
}
	.home-blob-question {
    margin-top: 25px;
    text-align: center;
}
	
	
	
	
	
  :root {
    --font-controller: 2px;
  }
  .blog-sidebard .flex-lg-row {
    flex-direction: column !important;
  }
  .choose-card-container {
    grid-template-columns: 1fr !important;
  }
  .why-betta-ai-container {
    padding: 30px;
  }
  .burgerButton {
    color: #fff;
  }
  .newsCard .d-flex.align-items-center {
    display: flex !important;
    justify-content: center;
  }
  .section_heading.responsive {
    padding-left: 2%;
    padding-right: 2%;
  }
  .bannerMainImageContainer img {
    top: -60px;
  }
  .storyCardText {
    padding-top: 5%;
  }
  br {
    display: none;
  }
  br.not {
    display: block;
  }
  .counterSectionMain {
    min-height: auto;
    padding: var(--section-padding);
  }
  .solutionsSection .horizontalCard .img_wrap {
    margin-left: 0;
    margin-right: auto;
  }
  .solutionsSection .horizontalCard img {

    min-height: 300px;
  }
  .productCard {
    min-height: 430px;
    padding: 10px;
  }
  .newsStoryCardText {
    max-width: max-content;
  }
  .newsWrapper .splide__slide {
    margin-right: 10px !important;
  }
}
@media only screen and (max-width: 991px) {
  .newsAndStoryCard .img_wrap img {
    height: 130px;
    border-radius: 6px;
    width: 100%;
  }
  .home-banner-area .hero-text p {
    padding-right: 0;
    text-align: center;
  }
  .home-banner-area .hero-text a.btn {
    width: 200px;
    background: rgba(161, 121, 242, 1);
    color: #fff;
    padding: 0;
    height: 50px;
    margin: 0px auto;
    display: block;
    line-height: 50px;
  }
  .betta-ai-logo img.mobile-only {
    display: block;
    margin: 0px auto;
  }
  .betta-ai-logo .center-it {
    display: none;
  }
  .blog-sidebard .flex-lg-row {
    flex-direction: row !important;
  }
  .blogTitle {
    min-height: auto;
  }
  .blob-wrapper {
    top: -40px;
    margin: 0;
    height: auto;
  }
  .center-it h6 {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --section-padding: 40px 0;
    --font-controller: 3px;
  }
	.circular-b {
		display:none;
	}
  .choose-card.custom-width .choose-card-text {
    max-width: auto;
  }
  .contactAddressContainer {
    background-size: cover;
  }
  .hero-text p {
    padding-right: 0px !important;
  }
  .performenceCards .text_wrap p {
    padding-right: 0px !important;
  }
  ul.tabs li, ul.tabs {
    display: block;
    width: 100%;
  }
  ul.tabs li {
    margin-bottom: 15px;
  }
  .header-fixed {
    position: relative;
    z-index: 100;
  }
  .futureCard.bigCard {
    flex-direction: row;
    display: revert;
  }
  .futureCard.smallCard:nth-child(1) {
    flex-direction: column-reverse;
  }
  .futureCard.smallCard, .futureCardContainer:nth-child(1) {
    flex-direction: column;
  }
  .mobileLogo img {
    width: 200px;
  }
  .solutionsSection .horizontalCard {
    text-align: center;
  }
  .solutionsSection .horizontalCard .img_wrap {
    margin: 0 auto;
  }
  .solutionsSection .horizontalCard .img_wrap img {
    min-height: auto;
  }
  .productCardWrapper {
    flex-direction: column;
  }
  .productCard .img_wrap {
    text-align: center;
  }
  .productCard .img_wrap img {
    width: 100%;
  }
  .productCard {
    min-height: auto;
  }
  .supportCard {
    gap: 10px
  }
  .newsSliderContainer > h4, .productSectionText {
    margin-bottom: 30px;
  }
  footer {
    padding: var(--section-padding);
  }
  .storySlider .slick-dots {
    flex-direction: row;
    left: 0;
    bottom: -30px;
    right: 0;
    margin: 0 auto;
  }
  .storySlider ul.slick-dots li button:hover, .storySlider ul.slick-dots li button:focus, .storySlider ul.slick-dots li button {
    gap: 0;
  }
  .storySlider ul.slick-dots li.slick-active button::after {
    display: none;
  }
  footer .evenColumns:nth-child(1), footer .evenColumns {
    gap: 20px;
  }
  .footerlogoBlack {
    margin-bottom: 15px;
  }
  .footer__title {
    margin-bottom: 15px;
  }
  .aboutCard {
    margin-right: 0;
    margin: 0 auto;
  }
  .aboutCardText {
    padding-bottom: 20px;
    padding-inline: 10px;
  }
  .form-style-1 {
    padding: 30px 15px;
  }
  .form-style-1 .input_wrap {
    padding: 10px;
  }
  .form-style-1 .input_wrap label {
    font-size: 12px;
  }
  .form-style-1 .input_wrap.select::after {
    display: none;
  }
  .contactAddressContainer {
    padding: 20px 15px;
  }
  .benefitSection .col-md-4:nth-of-type(1) .benefitList li {
    flex-direction: row-reverse;
    justify-content: start;
  }
  .benefitList li {
    margin-bottom: 20px;
  }
  .blog-sidebard h3, .single-page-main-container h1 {
    /*text-transform: capitalize;*/
    font-size: 25px;
  }
  .pr-info {
    display: block !important;
  }
}
@media only screen and (max-width: 580px) {
  .ai-text {
    padding: 0 8px;
    text-align: center;
  }
  .single-sourse-wrapper .container {
    padding: 40px 30px;
  }
  .ai-text img {
    margin: 0 auto;
  }
  .ai-section-container {
    background-image: none;
    background-color: var(--clr-primary);
    min-height: auto;
    padding: var(--section-padding);
  }
  .banner-with-side-images {
    min-height: auto;
  }
}
@media only screen and (max-width: 480px) {
  :root {
    --font-controller: 3.5px;
  }
  .bannerMainImageContainer {
    --offset: 240px;
    max-height: 150px;
  }
}
@media only screen and (max-width: 1211px) {
  footer .evenColumns:nth-child(1) {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    gap: 30px;
    text-align: center;
  }
  .footerIcons {
    justify-content: center;
  }
}
@media only screen and (max-width: 800px) {
  footer {
    text-align: center;
  }
  .evenColumns {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    gap: 50px;
  }
  .footerMainText p {
    margin-bottom: 25px;
  }
  div:has(.footerTerms) {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    gap: 20px;
  }
}
@media only screen and (max-width: 1197px) {
  .solutionSection {
    padding-block: 150px !important;
  }
  .solutionsSection :is(.section_heading, .section_heading + p) {
    text-align: center;
  }
  .bannerToggleButton {
    display: none;
  }
}
@media only screen and (max-width: 989px) {
  .newsCardBigText {
    text-align: center;
  }
  .newsSection .purple_label {
    margin-block: 15px;
  }
  .newsCardBigText div:has(img) {
    justify-content: center !important;
  }
}
/*************************Responsive Css*************************/



/*************************Dev Css*************************/
@media only screen and (min-width: 1400px) {

}

.cta-green {
	color: #87c66a;	
}

.btn-white-border img {
  filter: none !important;
}
ul#top-btn {
  display: flex;
  gap: 10px;
  line-height: 40px;
}
ul#top-btn li a {
  border: 1px solid #81b734;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 14px;
  background: #81b734;
  color: #fff;
}
ul#top-btn li a img {
  filter: invert(1);
  padding-right: 5px;
  margin-top: -3px;
}
ul#top-btn li + li a {
  background: #A179F2;
  border: 1px solid #A179F2;
  color: #fff;
  padding: 10px 20px;
}
ul#top-btn li + li a:hover {
  background: #81b734;
  border: 1px solid #81b734;
}
.hero-text a.btn {
  width: 200px;
  background: rgba(161, 121, 242, 1);
  color: #fff;
  padding: 0;
  height: 50px;
}
.hero-text a.btn img {
  margin: 0 0 0 5px;
}
.hero-text p {
    padding-right: 105px;
}
.why-choose-txt h3 {
  color: #A179F2;
  font-size: 18px;
  font-weight: 400;
}
.why-choose-txt h2 {
  font-size: 33px;
  margin: 8px 0 15px;
}
.why-choose-txt a {
  width: 200px;
  display: block;
  background: #a179f2;
  height: 50px;
  text-align: center;
  line-height: 16px;
  font-size: 15px;
  color: #fff;
  border-radius: 7px;
}
.why-choose-txt a:hover {
  background: #81b734;
}
.why-box {
  background: #F9F7F2;
  padding: 50px 20px 15px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 283px;
  margin: 0 0 20px;
  transition: all .6s ease;
  box-shadow: 0px 0px 0px #00000038;
}
.why-box::before {
  content: attr(data-number);
  color: #0000000a;
  font-size: 130px;
  font-weight: 600;
  position: absolute;
  right: -22px;
  bottom: -60px;
}
.why-box h4 {
  font-size: 19px;
  width: 150px;
  margin: 10px 0 4px;
  transition: all .6s ease;
  position: relative;
  top: 0;
}
.why-box a {
  color: #a179f2;
  font-size: 13px;
}
.why-box p {
  font-size: 15px;
  text-shadow: 0 1px 1px rgb(0 0 0 / 25%);
  position: absolute;
  bottom: 10px;
  padding: 0 40px 0 0;
  opacity: 0;
  visibility: hidden;
}
.why-box img {
  width: 30px;
  position: relative;
  top: 0;
  transition: all .6s ease;
}
.why-box a:hover p {
  opacity: 1;
  visibility: visible;
}
.why-box:hover p {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}
.why-box:hover h4 {
  position: relative;
  top: -25px;
  color: #ffff;
}
.why-box:hover {
  background: #81b734;
  box-shadow: 10px 10px 10px #00000038;
}
.why-box:hover p {
  color: #fff;
  /*width: 290px;*/
}
.why-box:hover img {
  filter: invert(1);
  top: -22px;
  position: relative;
}
.why-box:hover a {
  display: none;
}
.why-box a img {
  width: 11px;
  margin: 0 0 0 4px;
}
section#why-choose {
  position: relative;
  padding: 170px 0 85px;
}
img.ct-box01 {
  position: absolute;
  top: -70px;
  width: 70px;
}
.why-box:hover:before {
  color: #ffffff21;
}
.ct-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.ct-heading h2 {
  color: #373737;
  /* max-width: 500px; */
  text-align: left;
  /* margin: 0 auto; */
  font-weight: 500;
  font-size: 40px;
}
.ct-heading a {
  background: #a179f2;
  width: auto;
  /* margin: 0 auto; */
  display: block;
  transition: all .6s ease;
}
.ct-heading a:hover {
  background: #81b734;
  color: #fff;
}
.ct-heading h2 span {
  font-style: italic;
}
.how-it-work-left {
	background: url(../images/bg.jpg);
	height: 606px;
	width: 50%;
	/* float: left; */
	background-repeat: no-repeat;
	background-position: right;
	background-size: 100% 100%;
}
.how-it-work-right {
  width: 50%;
  background: #faf7f2;
  /* float: left; */
  padding: 20px;
  margin: 1px 0 0 -5px;
  height: 480px;
  position: relative;
}
.how-it-work-box {
  width: 100%;
}
.how-box01 {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 25px;
  height: 88px;
}
.ct-inner-box:hover p {
  display: block;
  padding: 5px 0 0;
}
.ct-inner-box h2 {
  font-size: 17px;
}
.how-box01 img {
  width: 45px;
}
.how-box01 p {
  font-size: 13px;
  display: none;
}
.ct-inner-box h2 img {
  width: 9px;
  margin: 0 0 0 20px;
  transition: all .6s ease;
}
.ct-inner-box {
  width: 100%;
  transition: all .6s ease;
  box-shadow: 0px 0px 0px #00000036;
  border-radius: 7px;
  position: relative;
}
.ct-inner-box:hover {
  background: #F9F7F2;
  padding: 15px;
  box-shadow: 12px 11px 36px #00000036;
  cursor: pointer;
  position: relative;
  z-index: 999;
}
img.arrow-hide {
  display: none;
}
.ct-inner-box:hover img.arrow-hide {
  display: inline-block;
}
.ct-inner-box:hover img.arrow-show {
  display: none;
}
.ct-inner-box:hover h2 {
  color: #80b735;
}
div#how-work01 {
  position: relative;
  top: 10px;
}
div#how-work02 img {}
div#how-work02 img.hwo-icon {
  width: 35px;
  margin: 0 42px 0 0;
}
div#how-work02 {
  position: relative;
  top: 5px;
}
div#how-work03 img.hwo-icon {
  width: 75px;
}
div#how-work04 img.hwo-icon {
  width: 28px;
  margin: 0 48px 0 0;
}
div#how-work04 {
  position: relative;
  top: -9px;
}
div#how-work05 img.hwo-icon {
  width: 25px;
  margin: 0 51px 0 0;
}
div#how-work05 {
  position: relative;
  top: -17px;
}
div#how-work01 img.hwo-icon {
  margin: 0 30px 0 0;
}
.how-it-work-right-bottom a {
  background: #a179f2;
  height: 45px;
  margin: 0 !important;
  font-size: 13px;
  transition: all .6s ease;
}
.how-it-work-right-bottom {
  display: flex;
  margin: 40px 0 0 -50px;
  gap: 20px;
  align-items: center;
}
.how-it-work-right-bottom p {
  font-size: 13px;
}
.how-it-work-right-bottom a img {
  width: 15px;
  position: relative;
  top: 1px;
}
.how-it-work-right-bottom a:hover {
  background: #80b735;
  color: #fff;
}
.hwo-it-work-head {
  text-align: left;
  position: relative;	
}
.hwo-it-work-head h4 {
  font-size: 18px;
  text-transform: uppercase;
  color: #A179F2;
  font-weight: 400;
}
.hwo-it-work-head h2 {
  /*max-width: 550px;*/
  margin: 10px auto 20px;
  font-weight: 600;
  font-size: 40px;
}
section#how-it-works {
  padding: 80px 0 50px;
  position: relative;
  overflow: hidden;
}
img.ct-box02 {
  position: absolute;
  right: -5px;
  top: -50px;
}
.ct-vidoe {
  width: 90%;
  margin: 40px auto 0;
  border-radius: 10px;
  position: relative;
}
.ct-vidoe video {
  border-radius: 10px;
  width: 100%;
}
img.ct-box03 {
  position: absolute;
  width: 120px;
  top: -50px;
  left: -50px;
  z-index: -1;
}
img.ct-box04 {
  position: absolute;
  right: -50px;
  width: 130px;
  bottom: -50px;
  z-index: -1;
}
.cta-section {
  background: #F9F7F2;
  padding: 50px;
  border-radius: 7px;
}
.cta-section h4 {
  font-size: 35px;
}
.cta-section p {
  font-size: 16px;
  max-width: 450px;
}
img.playstore-image {
  margin: 0 0 0 -10px;
  width: 150px;
}
.ctaCard h6 {
  margin: 0 0 10px !important;
}
.ctaCard p {
  min-height: 85px;
  font-size: 15px !important;
}
a.btn.btn-lg.mt-4.ct-btn {
  background: #a179f2;
  width: 200px;
  margin: 0 !important;
  color: #fff;
}
a.btn.btn-lg.mt-4.ct-btn:hover {
  background: var(--clr-primary);
  color: white;
  color: #fff;
}
.main-ct-sec {
  position: relative;
}
.why-choose-txt a img {
  width: 17px;
  position: relative;
  top: -1px;
  left: 3px;
}
.how-div {
  display: flex;
  justify-content: center;
	margin-top: 25px;
}
.how-it-work-right:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background: #faf7f2;
  left: -220px;
  top: 0;
  z-index: -1;
}
#mob-head {
  display: none !important;
}
@media only screen and (max-width: 1399px) {
	.single-sourse-wrapper .container {
		background-size: cover !important;
	}
	.second-choose-card-container {
    	grid-template-columns: 380px 356px auto !important;
	}
	.third-choose-card-container {
		grid-template-columns: 360px 350px auto !important;
	}
}
/*Responsive */
@media (max-width: 992px) {
  .why-box img {
    width: 23px;
  }
  .why-box h4 {
    font-size: 16px;
    width: 130px;
  }
  .why-box:hover p {
    color: #fff;
    width: 88%;
    font-size: 13px;
    padding: 0 0px 0 0;
  }
  .how-it-work-left {
    height: 400px;
    width: 400px;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .how-it-work-right {
    width: 300px;
    float: left;
    padding: 20px;
    margin: 5px 0 0 -5px;
    height: 325px;
  }
  .how-box01 {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
    height: 55px;
  }
  .ct-inner-box h2 {
    font-size: 14px;
  }
  div#how-work01 {
    position: relative;
    top: 4px;
  }
  div#how-work04 {
    position: relative;
    top: -3px;
  }
  div#how-work05 {
    position: relative;
    top: -2px;
  }
  .how-box01 p {
    font-size: 10px;
  }
  .how-it-work-right-bottom {
    display: flex;
    margin: 40px 0 0 -40px;
    gap: 10px;
    align-items: center;
  }
  .how-it-work-right-bottom p {
    font-size: 9px;
  }
  .how-it-work-right-bottom a {
    background: #a179f2;
    height: 35px;
    margin: 0 !important;
    font-size: 9px;
    transition: all .6s ease;
    width: 450px !important;
  }
  .hero-text h1 {
    font-weight: 500;
    font-size: 45px;
    max-width: 430px;
    margin: 0 auto 10px;
  }
  .ct-inner-box:hover h2 {
    color: #80b735;
    font-size: 11px;
  }
  section#how-it-works {
    padding: 90px 0 50px;
    position: relative;
    overflow: hidden;
  }
  .ctaCard p {
    min-height: 85px;
    font-size: 12px !important;
  }
  .cta-section h4 {
    font-size: 29px;
  }
  .ctaCard h5.fs-35.fc-primary.fw-500.mb-1 {
    font-size: 22px;
  }
  .cta-section p {
    font-size: 14px;
    max-width: 450px;
  }
  .cta-section {
    background: #F9F7F2;
    padding: 30px;
    border-radius: 7px;
  }
  .ct-vidoe {
    width: 100%;
    margin: 40px auto 0;
    border-radius: 10px;
    position: relative;
  }
  section#why-choose {
    position: relative;
    padding: 100px 10px 85px;
  }
  img.ct-box01 {
    position: absolute;
    top: -130px;
    width: 60px;
  }
  ul#top-btn {
    display: flex;
    gap: 10px;
    margin: 0 70px 0 0;
  }
  .burgerButton {
    color: #80b735 !important;
  }
  .ct-heading h2 {
    color: #373737;
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
    font-weight: 500;
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .hero-section {
    position: relative;
        padding: 50px 0 0;
        text-align: center;
  }
  .hero-image img {
    width: 70%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }
  .how-it-work-left {
    display: none;
  }
  .how-it-work-right {
    width: 100%;
    float: left;
    padding: 20px;
    margin: 0;
    height: auto;
  }
  .how-box01 p {
    font-size: 13px;
    display: block;
  }
  .ct-vidoe video {
    border-radius: 10px;
    height: 100%;
  }
  .how-it-work-right-bottom {
    display: flex;
    margin: 30px 0 0;
    gap: 10px;
    align-items: center;
  }
  .how-box01 p {
    font-size: 12px;
    display: block;
    padding: 5px 0 0;
  }
  .how-box01 {
    height: 130px;
  }
  .ct-inner-box {
    background: #F9F7F2;
    padding: 15px;
    box-shadow: 12px 11px 36px #00000036;
    cursor: pointer;
    position: relative;
    z-index: 10;
  }
  .cta-section p {
    font-size: 14px;
    min-height: auto;
  }
  .ct-inner-box h2 {
    color: #80b735;
    font-size: 11px;
  }
  img.arrow-hide {
    display: inline-block;
  }
  img.arrow-show {
    display: none;
  }
  .ct-inner-box h2 img {
    width: 9px;
    margin: 0 0 0 11px;
    transition: all .6s ease;
  }
  ul#top-btn {
    display: flex;
    gap: 10px;
    margin: 40px 70px 0 0;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .headerMain .container.position-relative .row.align-items-center .col-auto:nth-child(3) {
    display: block;
    width: 100%;
  }
  .why-box {
    background: #81b734;
    box-shadow: 10px 10px 10px #00000038;
  }
  .why-box:before {
    color: #ffffff21;
  }
  .why-box img {
    filter: invert(1);
    top: -22px;
    position: relative;
  }
  .why-box h4 {
    position: relative;
    top: -25px;
    color: #ffff;
  }
  .why-box a {
    display: none;
  }
  .why-box p {
    visibility: visible;
    opacity: 1;
    bottom: 20px;
    color: #fff;
  }
  .why-box {
    background: #81b734;
    box-shadow: 5px 5px 5px #00000038;
  }
  .why-choose-txt a {
    margin: 0 0 30px;
  }
  #mob-col {
    display: none;
  }
}
@media (max-width: 480px) {
  .ct-inner-box {
    padding: 10px;
  }
}
.choose-text {
  max-width: 505px;
  width: 100%;
}
.choose-card {
  background-color: #F9F7F2;
  border-radius: 10px;
  display: flex;
  align-items: end;
  padding: 26px 20px;
  overflow: hidden;
  position: relative;
  transition: all 100ms ease;
  min-height: var(--card-height);
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  --gap: 8px;
  --card-height: 303px;
  --text-bottom-anchor: 26px;
  --text-self-height-metric: calc((var(--card-height) / 2) + (var(--gap) * 5));
  counter-increment: choose-card-counter;
}
.choose-us-section {
  counter-reset: choose-card-counter;
  padding-bottom: 10px;
}
.choose-card:is(:hover, :focus) {
  background: #81B734;
}
.choose-card::before {
  content: "0"counter(choose-card-counter);
  color: #0000000a;
  font-size: 130px;
  font-weight: 600;
  position: absolute;
  right: -5px;
  bottom: -51px;
}
.choose-card-text {
  position: absolute;
  bottom: var(--text-bottom-anchor);
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: var(--gap);
  max-width: 334px;
  /* 294px */
  width: 100%;
  left: 20px;
  right: 0;
}
.choose-card.custom-width .choose-card-text {
    max-width: 250px;
}
.third-choose-card-container .choose-card-text:nth-of-type(3) { 
  max-width: 270px !important;
}
.choose-card-text h6 {
  font-weight: 500;
  font-size: 28px;
}
.choose-card-text p {
  transition: all 250ms ease;
  position: absolute;
  opacity: 0;
  top: calc(100% + var(--gap));
  color: #FFFFFF;
  font-size: 14px;
  /* 20px */
  font-weight: 400;
}
.choose-card-text span {
  color: #A179F2;
  font-weight: 400;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 250ms ease;
}
.choose-card:is(:hover, :focus)::before {
  color: white;
  opacity: 0.08;
}
.choose-card:is(:hover, :focus) .choose-card-text {
  bottom: calc(100% - var(--text-self-height-metric));
}
.choose-card:is(:hover, :focus) .choose-card-text img {
  filter: invert(1);
}
.choose-card:is(:hover, :focus) .choose-card-text h6 {
  color: white;
}
.choose-card:is(:hover, :focus) .choose-card-text span {
  opacity: 0;
}
.choose-card:is(:hover, :focus) .choose-card-text p {
  opacity: 1;
  top: calc(100% + var(--gap) - 30px);
}
.first-choose-cards .choose-card:nth-of-type(1) {
  min-width: 366px;
}
.first-choose-cards .choose-card:nth-of-type(2) {
  min-width: 416px;
}
.choose-card-container {
  display: grid;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
}
.second-choose-card-container {
  grid-template-columns: 366px 416px auto;
}
.third-choose-card-container {
  grid-template-columns: 460px 460px auto;
}


.single-sourse-wrapper {
    
}
.single-sourse-wrapper .container {
    background: url(../images/single-sourse.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    /* margin-top: 90px; */
    background-size: 100%;
    /* max-width: 1300px;
    margin: 55px auto; */
    padding: 40px 40px 40px 70px;
}

.single-sourse-centeral h2 {
	/*max-width: 550px;*/
    margin: 10px auto 10px;
        font-weight: 600;
    font-size: var(--fs-section-heading);
    margin-bottom: 15px;
}
.single-sourse-centeral p {
	margin: 20px auto 20px;
}

a.btn.btn-lg.mt-4.ct-btn {
    background: #a179f2;
    width: 200px;
    margin: 0 !important;
    color: #fff;
}

@media only screen and (max-width: 1300px) {
  .choose-us-text-container {
    display: block !important;
  }
  .choose-text {
    margin-bottom: 25px;
  }
  .choose-card-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .choose-card-text {
    position: relative;
    bottom: unset;
    left: unset;
    right: unset;
  }
  .choose-card-text span {
    display: none;
  }
  .choose-card-text p {
    position: relative;
    color: #373737;
    opacity: 1;
  }
  .single-sourse-wrapper .container {
    background-size: cover;
}	
  .choose-card {
    padding: 18px;
    align-items: center;
  }
}
@media only screen and (max-width: 992px) {
  .first-choose-cards {
    display: grid !important;
    grid-template-columns: 1fr;
  }
  .choose-card-container {
    grid-template-columns: 1fr;
  }
  .choose-card {
    padding-inline: 32px;
  }	
  .choose-card-text {
    max-width: 100%;
  }
  .first-choose-cards .choose-card {
    min-width: 100% !important;
  }
  .choose-card:is(:hover, :focus) {
    background-color: #F9F7F2;
    padding-inline: 12px;
  }
  .choose-card:is(:hover, :focus) * {
    color: #373737 !important;
  }
  .choose-card:is(:hover, :focus) img {
    filter: unset !important;
  }
}
@media only screen and (max-width: 767px) {
  .choose-card.custom-width .choose-card-text {
    max-width: 100%;
}
}	
section.goodCompanySection img {
    filter: grayscale(100%);
}
/*************************Dev Css*************************/