@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ensure elements are ready for animation */
[data-gsap] {
  will-change: transform, opacity;
}

/* Smooth scrolling for better ScrollTrigger experience */
html {
  scroll-behavior: smooth;
}

/* Optional: Add visibility to prevent initial flash */
.hidden-on-load {
  opacity: 0;
}

.list-styled {
  list-style: unset !important;
}

/* Remove default body margin */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Remove list styles */
ul, ol {
  list-style: none;
}

/* Remove default anchor styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Reset images */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Buttons */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Form elements normalize */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

/* Remove animations for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gantari", sans-serif;
}

h1 {
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  color: #1e1e1e;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: -1px;
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  h1 {
    line-height: 55px;
  }
}
h1 span {
  color: #0074F8;
}

h2 {
  font-size: 41px;
  color: #1e1e1e;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: -1.64px;
}
@media (max-width: 991px) {
  h2 {
    line-height: 38px;
  }
}
h2 span {
  color: #0074F8;
}

h3 {
  color: #1e1e1e;
  font-size: 23px;
  font-weight: 600;
  line-height: 40px; /* 234.783% */
  letter-spacing: -0.92px;
}

h4 {
  color: #1e1e1e;
  font-size: 19px;
  font-weight: 600;
  line-height: 34px; /* 284.211% */
  letter-spacing: -0.76px;
}

h5 {
  color: #1e1e1e;
  font-size: 18px;
  font-weight: 500;
  line-height: 29px; /* 161.111% */
  letter-spacing: -0.72px;
}

h6 {
  color: #1e1e1e;
  font-size: 17px;
  font-weight: 500;
  line-height: 29px; /* 170.588% */
  letter-spacing: -0.51px;
}

.sub-title {
  color: #1e1e1e;
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
  margin: 20px 0px;
}

.validation-msg {
  font-size: 13px;
  color: #E12730;
  margin-bottom: 0;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #dee2e6;
  padding-left: 1rem;
  margin: 1rem 0;
  color: #6c757d;
}

.policy-heading {
  font-family: "Gantari", sans-serif;
  font-weight: 400;
}

.policy-subhead {
  color: #1e1e1e;
  font-size: 19px;
  font-weight: 600;
  line-height: 34px; /* 284.211% */
  letter-spacing: -0.76px;
}

.policy-subhead-large {
  color: #1e1e1e;
  font-size: 24px;
  font-weight: 600;
  line-height: 54px; /* 284.211% */
  letter-spacing: -0.76px;
}

.link-hover-black {
  position: relative;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  display: inline;
  background-image: linear-gradient(rgba(0, 116, 248, 0.768627451), rgba(0, 116, 248, 0.768627451));
  background-repeat: no-repeat;
  background-size: 0% 1.65px;
  background-position: 0 100%;
  transition: background-size 0.5s ease;
}
.link-hover-black:hover {
  background-size: 100% 1.65px;
}

.link-hover-white {
  position: relative;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}
.link-hover-white::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
.link-hover-white:hover::after {
  width: 100%;
}

.font-secondary {
  font-family: "Gantari", sans-serif;
}

.font-blue {
  color: #0074F8;
}

.highlighted-text {
  background: #eaf4ff;
  padding: 3px 6px;
  border-radius: 12px;
  color: #1e1e1e;
}

.icon-button {
  display: inline-flex;
  height: 55px;
  padding: 18px 36px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 27.5px;
  background: #02020A;
  color: #F9F9F9;
  border: none;
  box-shadow: inset 0 0 0 0 #303439;
  transition: ease-out 0.3s;
}
.icon-button:hover {
  box-shadow: inset -350px 0 0 0 #0074F8;
}
.icon-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.text-only-btn {
  display: inline-flex;
  height: 55px;
  padding: 18px 36px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 27.5px;
  background: transparent;
  color: #1e1e1e;
  border: none;
}
.text-only-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.outlined-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  width: auto;
  height: 60px;
  padding: 20px 42px;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 37.5px;
  box-shadow: inset 0 0 0 0 #303439;
  transition: ease-out 0.3s;
  border: 1px solid #8B8B8B;
}
.outlined-button:hover {
  box-shadow: inset -350px 0 0 0 #0074F8;
  color: white;
  border: 1px solid white;
}
.outlined-button:not(a):hover {
  transform: translateY(-2px);
  box-shadow: none;
  color: inherit;
  border: 1px solid #0074F8;
}
.outlined-button p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .outlined-button {
    height: 45px;
    padding: 10px 25px;
  }
}
.outlined-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.txt-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}
.txt-icon-btn a.show-more-btn {
  color: #1e1e1e;
}
.txt-icon-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.txt-icon-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #1e1e1e;
  transition: width 0.3s ease-in-out;
}
.txt-icon-btn:hover::after {
  width: 100%;
}
.txt-icon-btn.disabled:hover::after {
  width: 0;
}

.play-button {
  color: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.play-button:hover .circle-blue {
  transform: scale(1.2);
}
.play-button .circle-blue {
  width: 35px;
  height: 35px;
  background-color: #0074F8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}
.play-button .circle-blue img {
  width: 18px;
  margin-bottom: 1px;
}

.chat-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1;
  gap: 10px;
  right: 40px;
  bottom: 50px;
  cursor: pointer;
  flex-direction: row-reverse;
}
.chat-bubble img {
  max-width: 35px;
}
.chat-bubble .bubble {
  position: relative;
  border-radius: 25px;
  background: linear-gradient(143deg, #2243E1 11.93%, #08ABF8 86.05%);
  box-shadow: 0px 1px 14px 5px rgba(33, 73, 227, 0.25);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .chat-bubble .bubble {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .chat-bubble .bubble img {
    width: 20px;
  }
}
.chat-bubble .bubble:hover + .chat-text {
  width: 155px;
}
.chat-bubble .bubble .count {
  position: absolute;
  background: #E12730;
  color: white;
  width: 23px;
  height: 23px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  top: -6px;
  right: -2px;
}
@media (max-width: 767px) {
  .chat-bubble .bubble .count {
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: 900;
  }
}
.chat-bubble .chat-text {
  border-radius: 26.5px;
  background: #FFF;
  box-shadow: 0px 1px 6px 3px rgba(0, 0, 0, 0.05);
  width: 0px;
  height: 40px;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  font-family: "Gantari", sans-serif;
  letter-spacing: -0.64px;
}

.carousel-controls {
  display: flex;
  gap: 13px;
}
.carousel-controls div {
  width: 49px;
  height: 49px;
  border-radius: 100%;
  background: #EEEEEE;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.carousel-controls div img {
  transition: transform 0.3s ease-in-out;
}
.carousel-controls div:hover img {
  transform: scale(1.3);
}
.carousel-controls div.disabled img {
  opacity: 0.3;
}
.carousel-controls div.round-next {
  cursor: pointer;
}
.carousel-controls div.round-prev {
  cursor: pointer;
}
.carousel-controls div.round-prev img {
  rotate: 180deg;
}

.rotate-180 {
  rotate: 180deg;
}

.trial-white-btn {
  display: inline-flex;
  height: 55px;
  padding: 18px 36px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 27.5px;
  background: transparent;
  border: 1px solid white;
  transition: all 0.5s ease;
}
.trial-white-btn:hover {
  transform: scaleX(1.08);
}

.tag {
  border-radius: 15px;
  padding: 1px 17px;
  height: 22px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
}
.tag.real-estate {
  background-color: #D8E5FE;
  color: #166AFA;
}
.tag.travel {
  background-color: #E0FBF2;
  color: #169E70;
}
.tag.insurance {
  background-color: #FEF2DB;
  color: #E1A024;
}

.search {
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  min-width: 412px;
  height: 62px;
}
@media (max-width: 768px) {
  .search {
    min-width: 100%;
  }
}
.search button {
  border-radius: 42px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #000;
  color: white;
  display: flex;
  gap: 5px;
  padding: 10px 20px;
  position: absolute;
  right: 7px;
  top: 6px;
}
.search .search-icon {
  position: absolute;
  top: 17px;
  left: 13px;
}
.search .input-search {
  height: 46px;
  padding-left: 44px;
  padding-top: 12px;
}

.pagination-wrapper {
  display: inline-flex;
}
.pagination-wrapper .next {
  display: inline-flex;
  background-color: #F5F5F5;
  height: 40px;
  border-radius: 12px;
  padding: 10px 24px;
  align-items: center;
  gap: 8px;
  color: #3E3232;
  margin-right: 10px;
}
.pagination-wrapper .next img {
  max-width: 20px;
}
.pagination-wrapper .left {
  transform: rotate(180deg);
}
.pagination-wrapper .numbers {
  font-size: 16px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.pagination-wrapper .numbers.active {
  background-color: #F5F5F5;
}

.custom-btn {
  color: white;
  display: inline-flex;
  height: 55px;
  padding: 18px 36px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 27.5px;
  transition: all 0.5s ease;
  background: linear-gradient(90deg, #2957FB 0%, #5577ff 49.5%, #1EA9FE 100%);
}
.custom-btn:hover {
  transform: scaleX(1.08);
}

.gradient-button {
  display: inline-flex;
  height: 55px;
  padding: 18px 36px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 27.5px;
  color: #F9F9F9;
  border: none;
  box-shadow: inset 0 0 0 0 #303439;
  border: 2px solid blue;
  transition: ease-out 0.3s;
  font-weight: 600;
  background: linear-gradient(90deg, #2957FB 0%, #7A5EEF 49.5%, #1EA9FE 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-button:hover {
  box-shadow: inset -350px 0 0 0 #0074F8;
  -webkit-text-fill-color: #FFFFFF;
}
.gradient-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.accordion-item-custom {
  background: #fff;
  height: auto;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 20px 25px 20px 35px;
  border: 1px solid #f2f2f2;
}
.accordion-item-custom .accordion-header {
  font-size: 41px;
  color: #1e1e1e;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: -1.64px;
  font-family: "Gantari", sans-serif;
}
.accordion-item-custom .accordion-header .accordion-button {
  color: #1e1e1e;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.76px;
  padding: 0;
  outline: none;
  background-color: transparent;
  border: none;
  box-shadow: none;
  line-height: 2;
}
.accordion-item-custom .accordion-header .accordion-button::after {
  width: 43px;
  height: 43px;
  background-color: #1e1e1e;
  border-radius: 50%;
  background-image: url("/sites/default/site-files/assets/images/plus.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-item-custom .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("/sites/default/site-files/assets/images/minus.svg");
}
.accordion-item-custom .accordion-body {
  padding-left: 0;
  padding-right: 50px;
}
.accordion-item-custom .accordion-body p {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.56px;
}

.define-section {
  margin-bottom: 130px;
}

.define-scroll {
  position: relative;
  max-height: 500px;
  overflow: auto;
}
.define-scroll::before {
  width: 1px;
  content: "";
  position: absolute;
  height: 1110px;
  background-color: #1ab6ff;
  top: 15px;
  left: 21px;
}
@media (max-width: 1400px) {
  .define-scroll::before {
    height: 1210px;
  }
}
@media (max-width: 1200px) {
  .define-scroll::before {
    height: 1400px;
  }
}
@media (max-width: 991px) {
  .define-scroll::before {
    height: 1100px;
  }
}
@media (max-width: 768px) {
  .define-scroll::before {
    height: 1240px;
  }
}
@media (max-width: 501px) {
  .define-scroll::before {
    height: 1370px;
  }
}
@media (max-width: 469px) {
  .define-scroll::before {
    height: 1480px;
  }
}
.define-scroll .define-tab {
  position: relative;
  margin-left: 50px;
}
.define-scroll .define-tab::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  background-color: #0074F8;
  border-radius: 100%;
  left: -35px;
  top: 8px;
}
.define-scroll .define-tab h3 {
  color: #0074F8;
  font-size: 17px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: -0.51px;
}
.define-scroll .define-tab h5 {
  font-weight: 600;
  font-size: 18px;
  font-weight: 500;
  line-height: 29px;
  /* 161.111% */
  letter-spacing: -0.72px;
}
.define-scroll .define-tab p {
  color: #838383;
}

.blog-filter {
  display: flex;
  gap: 22px;
  align-items: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
  margin-top: 100px;
}
.blog-filter img {
  position: absolute;
  right: 15px;
  top: 15px;
}
.blog-filter select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 10px;
  border: 1px solid #e4e7e9;
  min-width: 180px;
  height: 44px;
  padding: 10px 16px;
}

.breadcrumb-wrap a {
  font-size: 14px;
}
.breadcrumb-wrap a:hover {
  color: #2957fb;
}
.breadcrumb-wrap p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

.author-card {
  padding: 15px;
  background-color: #f5f5f5;
  border-radius: 15px;
}
.author-card .author-title .category,
.author-card .author-title .date {
  color: #3e3232;
  font-size: 14px;
  font-weight: 500;
}
.author-card .author-title .article {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.author-card .icons img {
  width: 16px;
  transition: transform 0.3s ease;
}
.author-card .icons img:hover {
  transform: scale(1.2);
}
.author-card .profile-img {
  width: 87px;
  height: 97px;
  border-radius: 25px;
  overflow: hidden;
  flex-shrink: 0;
}
.author-card .profile-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 100%;
  -o-object-position: top;
     object-position: top;
}

.blog-detail-footer {
  gap: 3rem;
}
@media (max-width: 767px) {
  .blog-detail-footer {
    flex-direction: column;
    gap: 10px;
  }
}
.blog-detail-footer div p {
  color: rgba(62, 50, 50, 0.7490196078);
  font-weight: 500;
}

.blogdetail-highlight {
  padding: 32px 24px;
  background: #d8e5fe;
  border-radius: 25px;
  display: flex;
  margin-bottom: 25px;
  max-height: calc(100dvh - 100px);
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
.blogdetail-highlight .arrow {
  display: none;
}
@media (max-width: 991px) {
  .blogdetail-highlight .arrow {
    display: inline-flex;
  }
}
.blogdetail-highlight {
  /* New inner wrapper that handles scrolling */
}
.blogdetail-highlight .highlight-content {
  height: 100%;
  overflow-y: auto;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  /* Firefox scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  /* Chrome, Edge, Safari scrollbar */
}
.blogdetail-highlight .highlight-content::-webkit-scrollbar {
  width: 5px;
}
.blogdetail-highlight .highlight-content::-webkit-scrollbar-track {
  background: transparent;
}
.blogdetail-highlight .highlight-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.blogdetail-highlight .highlight-content::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.blogdetail-highlight .highlight-content {
  /* Hide scrollbar arrows */
}
.blogdetail-highlight .highlight-content::-webkit-scrollbar-button {
  display: none !important;
}
.blogdetail-highlight a {
  margin-bottom: 25px;
  border-bottom: 1px solid black;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  color: black;
  position: relative;
  transition: color 0.3s ease;
}
.blogdetail-highlight a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2957fb 0%, #7a5eef 49.5%, #1ea9fe 100%);
  transition: width 0.3s ease;
}
.blogdetail-highlight a:hover {
  color: #2957fb;
}
.blogdetail-highlight a:hover::after {
  width: 100%;
}

.blogdetail-post {
  border-radius: 12px;
  background: #f5f5f5;
  padding: 32px 24px;
}

.blog-header-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-header-icon .icon-box {
  width: 49px;
  height: 49px;
  background-color: #d8e5fe;
  border-radius: 10px;
}

.table-blog-wrap {
  border-radius: 10px;
  border: 1px solid rgba(179, 179, 179, 0.2);
}
.table-blog-wrap table {
  margin-bottom: 0px;
}
.table-blog-wrap table tr:last-child td {
  border-bottom: 0;
}
.table-blog-wrap table th {
  background: #000;
  color: white;
  height: 48px;
  padding: 15px;
}
.table-blog-wrap table td {
  padding: 35px 15px;
}

.filter-small {
  border-radius: 10px;
  background-color: #02020a;
  display: flex;
  align-items: center;
  padding: 10px;
  height: 43px;
  gap: 10px;
}
.filter-small .applied-filter {
  width: 22px;
  height: 22px;
  background-color: #0075fc;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.filter-small .applied-filter .count {
  color: white;
  font-weight: 600;
  font-size: 15px;
}

.setup-scroll-titleonly {
  gap: 3.2rem;
  display: flex;
  flex-direction: column;
}
.setup-scroll-titleonly::before {
  height: calc(100% - 55px) !important;
}
.setup-scroll {
  position: relative;
}
.setup-scroll::before {
  width: 1px;
  content: "";
  position: absolute;
  height: calc(100% - 112px);
  background-color: #1ab6ff;
  top: 15px;
  left: 21px;
}
.setup-scroll .define-tab {
  position: relative;
  margin-left: 50px;
}
.setup-scroll .define-tab::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  background-color: #0074F8;
  border-radius: 100%;
  left: -35px;
  top: 8px;
}
.setup-scroll .define-tab .step-head {
  color: #0074F8;
  font-size: 17px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: -0.51px;
  margin-bottom: 0px;
}
.setup-scroll .define-tab .step-title {
  font-weight: 600;
  font-size: 18px;
  font-weight: 500;
  line-height: 29px;
  /* 161.111% */
  letter-spacing: -0.72px;
}
.setup-scroll .define-tab p {
  color: #838383;
}

.setup-scroll-small:before {
  height: calc(100% - 75px);
}

.phone-number-wrap {
  position: relative;
}
.phone-number-wrap .iti--separate-dial-code {
  display: none;
}
.phone-number-wrap .phone-number-input {
  padding-left: 80px;
}
.phone-number-wrap .iti--separate-dial-code {
  position: absolute;
  width: 75px;
  bottom: 13px;
}
.phone-number-wrap .iti--separate-dial-code .iti__selected-flag {
  background: transparent;
}
.phone-number-wrap .iti--separate-dial-code .iti__selected-flag:hover {
  background: transparent;
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: white;
  padding: 20px 0;
}

.marquee-content {
  display: flex;
  gap: 15px;
  animation: scroll 30s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
}

.marquee-content.marquee-reverse {
  animation: scroll-reverse 30s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.card-custom {
  padding: 35px;
  border-radius: 30px;
  min-height: 455px;
}
.card-custom h3 {
  margin-bottom: 0;
}
.card-custom h3 a {
  position: relative;
  text-decoration: none;
}
.card-custom h3 a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #1e1e1e;
  transition: width 0.3s ease-in-out;
}
.card-custom h3 a:hover::after {
  width: 100%;
}
.card-custom .sub-title {
  margin: 0;
  font-size: 16px;
  line-height: 25px;
}
.card-custom--one {
  background-color: #D8E5FE;
}
.card-custom--two {
  background-color: #E0F6FB;
}
.card-custom--three {
  background-color: #FEF2DB;
}
.card-custom--four {
  background-color: #FBE0E0;
}

.tools-bg-card__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  z-index: 0;
}
.tools-bg-card {
  width: 364px;
  height: 511px;
  border-radius: 25px;
  padding: 35px 20px 60px 25px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  font-family: "Gantari", sans-serif;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 15px;
}
@media (max-width: 991px) {
  .tools-bg-card .overlay {
    display: none;
  }
}
@media (max-width: 991px) {
  .tools-bg-card.tools-real-estate {
    height: 255px;
    background-color: #E7EEF8;
  }
}
.tools-bg-card .mock {
  z-index: 1;
  position: absolute;
  bottom: 50px;
  width: 85%;
}
.tools-bg-card .desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px; /* 168.75% */
  letter-spacing: -0.64px;
  position: relative;
  z-index: 1;
  text-align: left;
}
.tools-bg-card.blue .header-icon {
  background-color: #0074F8;
}
.tools-bg-card.green .header-icon {
  background-color: #169E70;
}
.tools-bg-card.yellow .header-icon {
  background-color: #E1A024;
}
.tools-bg-card.red .header-icon {
  background-color: #E35F5F;
}
.tools-bg-card.teal .header-icon {
  background-color: #28bfd2;
}
.tools-bg-card.pink .header-icon {
  background-color: #9d3eb9;
}
.tools-bg-card .tools-header {
  background-color: white;
  padding: 10px 30px 10px 10px;
  border-radius: 31.5px;
  position: relative;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.tools-bg-card .tools-header h3 {
  color: #1e1e1e;
  font-size: 17px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: -0.51px;
}
.tools-bg-card .tools-header h3 a {
  position: relative;
  text-decoration: none;
}
.tools-bg-card .tools-header h3 a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #1e1e1e;
  transition: width 0.3s ease-in-out;
}
.tools-bg-card .tools-header h3 a:hover::after {
  width: 100%;
}
.tools-bg-card .tools-header h5 {
  font-size: 16px;
  font-weight: 500;
  color: #1e1e1e;
  letter-spacing: -0.51px;
}
.tools-bg-card .tools-header .header-icon {
  border-radius: 100%;
  height: 37px;
  aspect-ratio: 1/1;
  width: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tools-bg-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f1f1f1 29.81%, rgba(115, 115, 115, 0) 100%);
  width: 100%;
  z-index: 1;
  height: 107%;
  border-radius: 25px;
}

.tools-color-card {
  width: 364px;
  height: 511px;
  border-radius: 25px;
  padding: 35px 20px 60px 25px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  font-family: "Gantari", sans-serif;
  flex-shrink: 0;
  margin: 0 15px;
}
.tools-color-card .feature-image {
  width: auto;
  position: absolute;
}
.tools-color-card.blue {
  background-color: #D8E5FE;
}
.tools-color-card.green {
  background-color: #E0FBF2;
}
.tools-color-card.yellow {
  background-color: #FEF2DB;
}
.tools-color-card.red {
  background-color: #FBE0E0;
}
.tools-color-card.teal {
  background-color: #e0f8fb;
}
.tools-color-card.pink {
  background-color: #fbeeff;
}
.tools-color-card .desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px; /* 168.75% */
  letter-spacing: -0.64px;
  position: relative;
  z-index: 1;
  text-align: left;
}
.tools-color-card.blue .header-icon {
  background-color: #0074F8;
}
.tools-color-card.green .header-icon {
  background-color: #169E70;
}
.tools-color-card.yellow .header-icon {
  background-color: #E1A024;
}
.tools-color-card.red .header-icon {
  background-color: #E35F5F;
}
.tools-color-card.teal .header-icon {
  background-color: #28bfd2;
}
.tools-color-card.pink .header-icon {
  background-color: #9d3eb9;
}
.tools-color-card .tools-header {
  background-color: white;
  padding: 10px 30px 10px 10px;
  border-radius: 31.5px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.tools-color-card .tools-header h5 {
  font-size: 17px;
  font-weight: 500;
  color: #1e1e1e;
  letter-spacing: -0.51px;
}
.tools-color-card .tools-header .header-icon {
  border-radius: 100%;
  height: 37px;
  width: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tools-color-card .tools-header .header-icon img {
  max-width: 17px;
}

.slide-large {
  border-radius: 25px;
  height: 360px;
  display: flex;
  overflow: hidden;
  justify-content: end;
  padding-right: 0;
  width: 100%;
  flex-shrink: 0;
  min-width: 500px;
  margin: 0px 25px;
}
.slide-large h3 {
  line-height: 35px;
}
@media (max-width: 991px) {
  .slide-large {
    height: 270px;
    flex-direction: column;
    width: 350px;
    min-width: 350px;
    margin: 0px 15px;
  }
}
.slide-large.blue .header-icon {
  background-color: #0074F8;
}
.slide-large.green .header-icon {
  background-color: #169E70;
}
.slide-large.yellow .header-icon {
  background-color: #E1A024;
}
.slide-large.red .header-icon {
  background-color: #E35F5F;
}
.slide-large.pink .header-icon {
  background-color: #9d3eb9;
}
.slide-large.teal .header-icon {
  background-color: #28bfd2;
}
.slide-large .slide-right {
  width: 100%;
  max-width: 303px;
  background-color: #000000;
  height: 360px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .slide-large .slide-right {
    display: none;
  }
}
.slide-large .slide-left {
  padding: 60px 35px 60px 35px;
}
@media (max-width: 991px) {
  .slide-large .slide-left {
    padding: 25px;
  }
}
.slide-large .slide-left h4 {
  color: #1e1e1e;
  font-size: 23px;
  font-weight: 600;
  line-height: 33px; /* 143.478% */
  letter-spacing: -0.69px;
}
@media (max-width: 991px) {
  .slide-large .slide-left h4 {
    font-size: 21px;
    line-height: 30px;
  }
}
.slide-large .slide-left p {
  color: #373737;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .slide-large .slide-left p {
    line-height: 23px;
    letter-spacing: -0.4px;
  }
}
.slide-large .slide-left .tools-header {
  background-color: white;
  padding: 10px 30px 10px 10px;
  border-radius: 31.5px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.slide-large .slide-left .tools-header h5 {
  font-size: 17px;
  font-weight: 500;
  color: #1e1e1e;
  letter-spacing: -0.51px;
}
@media (max-width: 991px) {
  .slide-large .slide-left .tools-header h5 {
    font-size: 16px;
  }
}
.slide-large .slide-left .tools-header .header-icon {
  border-radius: 100%;
  height: 37px;
  width: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-large .slide-left .tools-header .header-icon img {
  max-width: 17px;
}
.slide-large.blue {
  background-color: #D8E5FE;
}
.slide-large.yellow {
  background-color: #FEF2DB;
}
.slide-large.red {
  background-color: #FBE0E0;
}
.slide-large.green {
  background-color: #E0FBF2;
}
.slide-large.pink {
  background-color: #fbeeff;
}
.slide-large.teal {
  background-color: #e0f8fb;
}
.slide-large.red-crm .slide-right {
  background-image: url("/sites/default/site-files/assets/images/whatsappcrm/whatsapp-crm-realestate.webp");
}
.slide-large.blue-crm .slide-right {
  background-image: url("/sites/default/site-files/assets/images/whatsappcrm/whatsapp-crm-ecommerce.webp");
}
.slide-large.yellow-crm .slide-right {
  background-image: url("/sites/default/site-files/assets/images/whatsappcrm/whatsapp-crm-healthcare.webp");
}
.slide-large.green-crm .slide-right {
  background-image: url("/sites/default/site-files/assets/images/whatsappcrm/whatsapp-crm-education.webp");
}
.slide-large.pink-crm .slide-right {
  background-image: url("/sites/default/site-files/assets/images/whatsappcrm/whatsapp-crm-finance.webp");
}
.slide-large.teal-crm .slide-right {
  background-image: url("/sites/default/site-files/assets/images/whatsappcrm/whatsapp-crm-food.webp");
}
.slide-large.slide-uae.red-crm .slide-right {
  background-image: url("/sites/default/site-files/assets/images/whatsapp-crm-uae/realestate-whatsapp-crm.webp");
}
.slide-large.slide-uae.blue-crm .slide-right {
  background-image: url("/sites/default/site-files/assets/images/whatsapp-crm-uae/ecommerce-whatsapp-crm.webp");
}
.slide-large.slide-uae.yellow-crm .slide-right {
  background-image: url("/sites/default/site-files/assets/images/whatsapp-crm-uae/healthcare-whatsapp-crm.webp");
}
.slide-large.slide-uae.green-crm .slide-right {
  background-image: url("/sites/default/site-files/assets/images/whatsapp-crm-uae/education-whatsapp-crm.webp");
}
.slide-large.slide-uae.pink-crm .slide-right {
  background-image: url("/sites/default/site-files/assets/images/whatsapp-crm-uae/finance-whatsapp-crm.webp");
}
.slide-large.slide-uae.teal-crm .slide-right {
  background-image: url("/sites/default/site-files/assets/images/whatsapp-crm-uae/hospitality-whatsapp-crm.webp");
}
.slide-large.red-finance .slide-right {
  background-image: url("/sites/default/site-files/assets/images/finance/carousellarge/ai.png");
}
.slide-large.blue-finance .slide-right {
  background-image: url("/sites/default/site-files/assets/images/finance/carousellarge/client.png");
}
.slide-large.yellow-finance .slide-right {
  background-image: url("/sites/default/site-files/assets/images/finance/carousellarge/portal.png");
}
.slide-large.green-finance .slide-right {
  background-image: url("/sites/default/site-files/assets/images/finance/carousellarge/analytics.png");
}
.slide-large.pink-finance .slide-right {
  background-image: url("/sites/default/site-files/assets/images/finance/carousellarge/marketing.png");
}
.slide-large.teal-finance .slide-right {
  background-image: url("/sites/default/site-files/assets/images/finance/carousellarge/mobile.png");
}
.slide-large.blue-insurance .slide-right {
  background-image: url("/sites/default/site-files/assets/images/insurance/largecards/support.png");
}
.slide-large.yellow-insurance .slide-right {
  background-image: url("/sites/default/site-files/assets/images/insurance/largecards/policy.png");
}
.slide-large.red-insurance .slide-right {
  background-image: url("/sites/default/site-files/assets/images/insurance/largecards/mobile.png");
}
.slide-large.green-insurance .slide-right {
  background-image: url("/sites/default/site-files/assets/images/insurance/largecards/ai.png");
}
.slide-large.pink-insurance .slide-right {
  background-image: url("/sites/default/site-files/assets/images/insurance/largecards/marketing.png");
}
.slide-large.teal-insurance .slide-right {
  background-image: url("/sites/default/site-files/assets/images/insurance/largecards/reporting.png");
}
.slide-large.blue-real-estate .slide-right {
  background-image: url("/sites/default/site-files/assets/images/realestate/realestate-software-virtual-tour.webp");
}
.slide-large.yellow-real-estate .slide-right {
  background-image: url("/sites/default/site-files/assets/images/realestate/realestate-software-social-media-tools.webp");
}
.slide-large.red-real-estate .slide-right {
  background-image: url("/sites/default/site-files/assets/images/realestate/realestate-software-property-recommend.webp");
}
.slide-large.green-real-estate .slide-right {
  background-image: url("/sites/default/site-files/assets/images/realestate/realestate-software-automated-appointments.webp");
}
.slide-large.pink-real-estate .slide-right {
  background-image: url("/sites/default/site-files/assets/images/realestate/realestate-software-client-portal.webp");
}
.slide-large.teal-real-estate .slide-right {
  background-image: url("/sites/default/site-files/assets/images/realestate/realestate-software-agent-dashboard.webp");
}

.carousel-colored {
  padding: 85px;
  border-radius: 25px;
  width: 100%;
  overflow: hidden;
  height: 700px;
}
@media (max-width: 991px) {
  .carousel-colored {
    height: 765px;
  }
}
.carousel-colored .image-out {
  display: none;
}
@media (max-width: 911px) {
  .carousel-colored .image-out {
    display: block;
    margin: auto;
  }
}
.carousel-colored .image-in {
  display: block;
  max-width: 300px;
  width: 100%;
}
@media (max-width: 1200px) {
  .carousel-colored .image-in {
    max-width: 250px;
  }
}
@media (max-width: 911px) {
  .carousel-colored .image-in {
    display: none;
  }
}
.carousel-colored.blue {
  background-color: #D8E5FE;
}
.carousel-colored.blue .carousel-left {
  opacity: 0.5;
}
.carousel-colored.blue .carousel-right-control {
  background-color: #659CFF;
}
.carousel-colored.green {
  background-color: #E0FBF2;
}
.carousel-colored.green .carousel-right-control {
  background-color: #8BD4BC;
}
.carousel-colored.yellow {
  background-color: #FEF2DB;
}
.carousel-colored.yellow .carousel-right-control {
  background-color: #F2D08E;
}
.carousel-colored.red {
  background-color: #FBE0E0;
}
.carousel-colored.red .carousel-right-control {
  background-color: #F1AAAA;
}
.carousel-colored.purple {
  background-color: #FBEFFF;
}
.carousel-colored.purple .carousel-right-control {
  background-color: #D4A5E2;
}
.carousel-colored.teal {
  background-color: #E0F8FC;
}
.carousel-colored.teal .carousel-right {
  opacity: 0.5;
}
.carousel-colored.teal .carousel-right-control {
  background-color: #98E1ED;
}
.carousel-colored .carousel-right-control {
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  flex-shrink: 0;
  cursor: pointer;
}
.carousel-colored .carousel-right-control.carousel-left .arrow-left {
  rotate: 180deg;
}
.carousel-colored .carousel-colored-title {
  max-width: 405px;
  margin: auto;
}
.carousel-colored .carousel-colored-title h3 {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 600;
  line-height: 35px; /* 257.143% */
  letter-spacing: -0.84px;
}
.carousel-colored .carousel-colored-title p {
  font-weight: 500;
}
.carousel-colored .carousel-colored-title img {
  margin: auto;
}

/* Allow text selection inside slick slides */
.slick-slide {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  user-select: text !important;
}

/* Prevent text selection only on images if needed */
.slick-slide img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none; /* optional if you don’t want image dragging */
}

.text-carousel-wrapper .slick-dotted .slick-dots {
  display: flex;
  padding-left: 0;
  margin-top: 20%;
  gap: 20px;
}
.text-carousel-wrapper .slick-dotted .slick-dots li {
  position: relative;
}
.text-carousel-wrapper .slick-dotted .slick-dots li.slick-active:before {
  border-radius: 100%;
  background-color: #000000;
  left: 0;
}
.text-carousel-wrapper .slick-dotted .slick-dots li:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background-color: #D9D9D9;
  left: 0;
}
.text-carousel-wrapper .slick-dotted .slick-dots li button {
  display: none;
}

.bg-text-card {
  max-width: 364px;
  height: 407px;
  border-radius: 30px;
  padding: 40px;
  background: #F2F2F2;
  position: relative;
  overflow: hidden;
}
.bg-text-card.black-text p {
  color: #1E1E1E;
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.93px;
  font-family: "Gantari", sans-serif;
}
.bg-text-card.white-text {
  display: flex;
  align-items: flex-end;
}
.bg-text-card.white-text p {
  color: #FFF;
  font-size: 31px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.93px;
  z-index: 1;
  font-family: "Gantari", sans-serif;
}
.bg-text-card.bg-1 {
  background-image: url("/sites/default/site-files/assets/images/aboutus/unified-operations.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.bg-text-card.bg-1::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #575757 100%);
}
.bg-text-card.bg-2 {
  background-image: url("/sites/default/site-files/assets/images/aboutus/about-us-image.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-only-card {
  height: 252px;
  width: 100%;
  border-radius: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .bg-only-card {
    display: none;
  }
}
.bg-only-card.bg-1 {
  background-image: url("/sites/default/site-files/assets/images/aboutus/build-trust.webp");
}
.bg-only-card.bg-2 {
  background-image: url("/sites/default/site-files/assets/images/aboutus/growth-benefits.webp");
}
.bg-only-card.bg-3 {
  background-image: url("/sites/default/site-files/assets/images/aboutus/grow-with-us.webp");
}
.bg-only-card.bg-4 {
  background-image: url("/sites/default/site-files/assets/images/aboutus/trust-innovation.webp");
}

.bg-text-card-about {
  padding: 30px 25px 25px 40px;
  height: 252px;
  width: 100%;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  transition: width 0.3s ease, margin 0.3s ease, min-height 0.3s ease; /* Added transition for smooth width, margin, and height changes */
}
.bg-text-card-about .content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease; /* Smooth opacity transition for content */
}
.bg-text-card-about:hover .content {
  display: block;
  opacity: 1;
}
.bg-text-card-about:hover {
  position: absolute;
  width: 98.5%;
  left: 0;
  right: 0;
  margin-left: 12px;
  margin-right: 12px;
  min-height: 255px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 991px) {
  .bg-text-card-about:hover {
    position: relative;
    width: auto;
    margin: auto;
  }
}
.bg-text-card-about:hover .bottom-control {
  display: none;
}
.bg-text-card-about .bottom-control {
  display: flex;
  margin-top: auto;
}
.bg-text-card-about h2 {
  max-width: 67%;
  color: #1e1e1e;
  font-size: 19px;
  font-weight: 600;
  line-height: 34px; /* 284.211% */
  letter-spacing: -0.76px;
}
.bg-text-card-about.bg-blue {
  background-color: #C2DEFF;
}
.bg-text-card-about.bg-blue .round-arrow {
  width: 38px;
  height: 38px;
  background-color: #0074F8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.bg-text-card-about.bg-grey {
  background-color: #F2F2F2;
}
.bg-text-card-about.bg-grey .round-arrow {
  width: 38px;
  height: 38px;
  background-color: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.blue-card-sales {
  background-color: #F8F9FD;
  border-radius: 25px;
}
.blue-card-sales.card1 {
  padding: 55px 65px;
}
@media (max-width: 991px) {
  .blue-card-sales.card1 .flex-blue-card {
    flex-direction: column;
  }
}
.blue-card-sales.card2 {
  padding: 55px 65px 0px 65px;
}
.blue-card-sales.card3 {
  padding: 55px 0px 55px 65px;
}
.blue-card-sales.card3 .lead-score-img {
  max-width: 500px;
  margin-right: 0px;
  margin-left: auto;
  width: 100%;
}
.blue-card-sales .lead-score-img {
  max-width: 500px;
  margin-right: 50px;
  width: 100%;
}
.blue-card-sales p.sub-title-card {
  max-width: 330px;
}
@media (max-width: 991px) {
  .blue-card-sales p.sub-title-card {
    max-width: 100%;
  }
}
.blue-card-sales .icon.yellow {
  background-color: #FEF2DB;
}
.blue-card-sales .icon.blue {
  background-color: #CFE5FF;
}
.blue-card-sales .icon.purple {
  background-color: #FBEFFF;
}
.blue-card-sales .icon {
  width: 49px;
  height: 49px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blue-card-tools {
  background-color: #F8F9FD;
  border-radius: 25px;
}
.blue-card-tools h3 {
  line-height: 35px;
  margin-top: 10px;
  margin-bottom: 15px;
}
.blue-card-tools h3 a {
  position: relative;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}
.blue-card-tools h3 a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #1e1e1e;
  transition: width 0.3s ease-in-out;
}
.blue-card-tools h3 a:hover::after {
  width: 100%;
}
.blue-card-tools.card1 {
  padding: 55px 65px;
}
@media (max-width: 991px) {
  .blue-card-tools.card1 {
    padding: 35px 35px;
  }
  .blue-card-tools.card1 .flex-blue-card {
    flex-direction: column;
  }
}
.blue-card-tools.card2 {
  padding: 55px 65px 0px 65px;
  min-height: 510px;
}
@media (max-width: 991px) {
  .blue-card-tools.card2 {
    min-height: auto;
    padding: 35px 35px 0px 35px;
  }
}
.blue-card-tools.card3 {
  padding: 55px 0px 0px 65px;
  min-height: 510px;
}
@media (max-width: 991px) {
  .blue-card-tools.card3 {
    min-height: auto;
    padding: 35px 35px 0px 35px;
  }
}
.blue-card-tools.card3 .lead-score-img {
  max-width: 500px;
  margin-right: 0px;
  margin-left: auto;
  width: 100%;
}
.blue-card-tools.card4 {
  padding: 55px 65px 0px 65px;
  margin-top: 1.5rem;
}
@media (max-width: 991px) {
  .blue-card-tools.card4 .flex-blue-card {
    flex-direction: column;
  }
  .blue-card-tools.card4 {
    padding: 35px 35px 0px 35px;
  }
}
.blue-card-tools .lead-score-img {
  max-width: 500px;
  margin-right: 50px;
  width: 100%;
}
@media (max-width: 991px) {
  .blue-card-tools .lead-score-img {
    margin-right: 0px;
  }
}
.blue-card-tools p.sub-title-card {
  max-width: 400px;
}
@media (max-width: 991px) {
  .blue-card-tools p.sub-title-card {
    max-width: 100%;
  }
}
.blue-card-tools .icon.yellow {
  background-color: #FEF2DB;
}
.blue-card-tools .icon.blue {
  background-color: #CFE5FF;
}
.blue-card-tools .icon.purple {
  background-color: #FBEFFF;
}
.blue-card-tools .icon.green {
  background-color: #E0FBF2;
}
.blue-card-tools .icon {
  width: 49px;
  height: 49px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.growth-card {
  margin-bottom: 75px;
  max-width: 365px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease-in-out;
}
.growth-card--interactive {
  padding: 30px;
  border-radius: 30px;
  cursor: pointer;
  background-color: transparent;
}
.growth-card--interactive:hover {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.growth-card--interactive:hover h3 {
  color: #0074F8 !important;
}
.growth-card--interactive:hover .icon-wrapper {
  background-color: #0074F8;
}
.growth-card--interactive .icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: #373737;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: background-color 0.3s ease-in-out;
}
.growth-card--interactive .icon-wrapper img {
  width: 30px;
  height: auto;
}
.growth-card--interactive .growth-article {
  padding-left: 0;
  margin-top: 0;
}
.growth-card .growth-article {
  margin-top: 20px;
  padding-left: 10px;
}
.growth-card .growth-article h3 {
  color: #1e1e1e;
  font-size: 19px;
  font-weight: 600;
  line-height: 34px; /* 284.211% */
  letter-spacing: -0.76px;
  position: relative;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  transition: color 0.3s ease-in-out;
}
.growth-card .growth-article h3 a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #1e1e1e;
  transition: width 0.3s ease-in-out;
}
.growth-card .growth-article h3 a:hover::after {
  width: 100%;
}
.growth-card .growth-article .title-blue {
  font-family: "Gantari", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: -0.56px;
  color: #0075FC;
  background-color: #C6E1FF;
  padding: 2px 20px;
  border-radius: 17.5px;
  width: -moz-fit-content;
  width: fit-content;
}

.blog-card {
  margin-bottom: 40px;
}
.blog-card.main {
  border-right: 1px solid rgba(0, 0, 0, 0.0980392157);
  border-left: 1px solid rgba(0, 0, 0, 0.0980392157);
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 991px) {
  .blog-card.main {
    padding: 0;
    border: none;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .blog-card.main .blog-title h2 {
    font-size: 19px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.76px;
  }
}
.blog-card.bordered {
  border-bottom: 1px solid rgba(0, 0, 0, 0.0980392157);
  margin-bottom: 20px;
}
.blog-card.bordered .blog-title {
  margin-bottom: 10px;
}
.blog-card .blog-category-author {
  margin-top: 18px;
}
.blog-card .blog-category-author .author {
  color: #707070;
}
.blog-card .blog-detail {
  color: #3E3232;
  font-size: 14px;
}
.blog-card .bg-image {
  border-radius: 15px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-card .bg-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 100%;
  -o-object-position: top;
     object-position: top;
}

.blogdetail-post .blogdetail-post-card {
  margin-bottom: 20px;
}
.blogdetail-post .blogdetail-post-card:last-child {
  margin-bottom: 0px;
}
.blogdetail-post .blogdetail-post-card article .title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
.blogdetail-post .blogdetail-post-card article .subhead {
  font-size: 13px;
}
.blogdetail-post .blogdetail-post-card .post-picture {
  width: 87px;
  height: 87px;
  flex-shrink: 0;
  margin-right: 10px;
  overflow: hidden;
  border-radius: 12px;
}
.blogdetail-post .blogdetail-post-card .post-picture img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 100%;
  -o-object-position: top;
     object-position: top;
}

.blog-colored-points .blog-point {
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .blog-colored-points .blog-point {
    flex-direction: column;
    align-items: center;
  }
}
.blog-colored-points .blog-point .box {
  border-radius: 25px;
  padding: 24px;
  max-width: 450px;
  width: 100%;
}
.blog-colored-points .blog-point .box.blue {
  background: #D8E5FE;
}
.blog-colored-points .blog-point .box.teal {
  background: #E0F6FB;
}
.blog-colored-points .blog-point .box.yellow {
  background: #FEF2DB;
}
.blog-colored-points .blog-point .box.red {
  background: #FBE0E0;
}
.blog-colored-points .blog-point .box.green {
  background: #E0FBF2;
}
.blog-colored-points .blog-point .number {
  color: #E5E5EA;
  font-size: 70px;
  font-weight: 600;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .blog-colored-points .blog-point .number {
    display: none;
  }
}
.blog-colored-points .blog-point .head {
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

.point-article-blog {
  position: relative;
}
.point-article-blog::before {
  position: absolute;
  content: "";
  left: 4px;
  width: 1px;
  border-left: 2px dashed #cdcdcd;
  top: 9px;
  bottom: 6px;
}
.point-article-blog .title {
  color: #767676;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  position: relative;
}
.point-article-blog .title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #0074F8;
  position: absolute;
  left: -23px;
  top: 0.35em;
}

.blue-blog-card {
  border-radius: 25px;
  background: #0074F8;
  padding: 30px;
  background-image: url(/sites/default/site-files/assets/images/blogdetail/pattern.png);
  background-position: center;
  background-size: cover;
}

/* Add horizontal spacing between slides */
.slick-slide {
  margin: 0 15px; /* 10px on both sides */
}

/* Fix total width overflow issue */
.slick-list {
  margin: 0 -15px; /* negative margin to counter slide margins */
}

.contact-bg-card {
  border-radius: 30px;
  padding: 60px 30px;
  text-align: center;
  background-image: url("/sites/default/site-files/assets/images/home/contact-home-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 100px;
}
.contact-bg-card p {
  font-size: 16px;
  color: white;
  max-width: 572px;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 20px;
}
.contact-bg-card .market-title {
  color: #FFF;
  font-size: 65px;
  font-style: normal;
  font-weight: 300;
  line-height: 77px; /* 83.077% */
  letter-spacing: -1.95px;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 991px) {
  .contact-bg-card .market-title {
    font-size: 50px;
  }
}
.contact-bg-card .market-title span {
  background: linear-gradient(90deg, #2957FB 0%, #7A5EEF 49.5%, #1EA9FE 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-bg-card {
  border-radius: 30px;
  padding: 60px 100px;
  text-align: center;
  background-image: url("/sites/default/site-files/assets/images/home/contact-home-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .cta-bg-card {
    padding: 60px 40px;
  }
}
.cta-bg-card .head-side {
  font-size: 31px;
  line-height: 42px;
  font-weight: 500;
}

.card-icon-l-blue {
  width: 100%;
  border-radius: 15px;
  background: #F5F7F9;
  padding: 35px 40px 55px 40px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .card-icon-l-blue {
    padding: 35px 20px 55px 40px;
  }
}
.card-icon-l-blue h3 {
  font-size: 19px;
  line-height: 35px;
  margin-top: 15px;
  margin-bottom: 10px;
}
.card-icon-l-blue .title {
  font-size: 19px;
  line-height: 35px;
  margin-top: 15px;
  margin-bottom: 10px;
}
.card-icon-l-blue .icon-box {
  width: 45px;
  height: 45px;
  padding: 10px;
  border-radius: 9px;
  flex-shrink: 0;
}
.card-icon-l-blue .icon-box.lavender {
  background-color: #CBC2FC;
}
.card-icon-l-blue .icon-box.yellow {
  background-color: #F3D58B;
}
.card-icon-l-blue .icon-box.violet {
  background-color: #B4CFFF;
}
.card-icon-l-blue .icon-box.green {
  background-color: #DDEDAD;
}
.card-icon-l-blue .icon-box.blue {
  background-color: #C2E2FC;
}
.card-icon-l-blue .icon-box.pink {
  background-color: #F2C5F7;
}
.card-icon-l-blue .icon-box img {
  width: 25px;
  width: 100%;
}

.colored-mini-card {
  width: 100%;
  border-radius: 25px;
  padding: 35px 35px 60px 25px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  font-family: "Gantari", sans-serif;
  flex-shrink: 0;
  margin-bottom: 25px;
}
.colored-mini-card.blue {
  background-color: #D8E5FE;
}
.colored-mini-card.green {
  background-color: #E0FBF2;
}
.colored-mini-card.yellow {
  background-color: #FEF2DB;
}
.colored-mini-card.red {
  background-color: #FBE0E0;
}
.colored-mini-card.teal {
  background-color: #e0f8fb;
}
.colored-mini-card.pink {
  background-color: #fbeeff;
}
.colored-mini-card .desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px; /* 168.75% */
  letter-spacing: -0.64px;
  position: relative;
  z-index: 1;
  text-align: left;
  margin-bottom: 0px;
}
.colored-mini-card.blue .header-icon {
  background-color: #0074F8;
}
.colored-mini-card.green .header-icon {
  background-color: #169E70;
}
.colored-mini-card.yellow .header-icon {
  background-color: #E1A024;
}
.colored-mini-card.red .header-icon {
  background-color: #E35F5F;
}
.colored-mini-card.teal .header-icon {
  background-color: #28bfd2;
}
.colored-mini-card.pink .header-icon {
  background-color: #9d3eb9;
}
.colored-mini-card .tools-header {
  background-color: white;
  padding: 10px 30px 10px 10px;
  border-radius: 31.5px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.colored-mini-card .tools-header h5 {
  font-size: 17px;
  font-weight: 500;
  color: #1e1e1e;
  letter-spacing: -0.51px;
}
.colored-mini-card .tools-header .heading {
  font-size: 17px;
  font-weight: 500;
  color: #1e1e1e;
  letter-spacing: -0.51px;
  line-height: 22px;
}
.colored-mini-card .tools-header .header-icon {
  border-radius: 100%;
  height: 37px;
  width: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.colored-mini-card .tools-header .header-icon img {
  max-width: 17px;
}

.border-right-card.border-right {
  border-right: 1px solid white;
}
@media (max-width: 991px) {
  .border-right-card.border-right {
    border-right: 0;
  }
}

.icon-listing-card {
  width: 100%;
  background-color: #F8F8F8;
  padding: 16px;
  border-radius: 15px;
  border: 1px solid #F3F7FF;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
}
.icon-listing-card:hover {
  transition: all 0.5s ease;
  background-color: #0074F8;
}
.icon-listing-card:hover .listing-card-title {
  transition: all 0.5s ease;
  color: white;
}
.icon-listing-card .icon-container {
  width: 45px;
  height: 41px;
  background-color: white;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
  border: 1px solid #F4F4F4;
}
.icon-listing-card .icon-container img {
  max-width: 26.5px;
  width: 100%;
}
.icon-listing-card .listing-card-title {
  color: #1E1E1E;
  font-size: 18px;
  font-weight: 500;
  font-family: "Gantari", sans-serif;
  letter-spacing: -1.4px;
  margin-bottom: 6px;
  margin-top: 8px;
  line-height: 26px;
  transition: all 0.5s ease;
}

.story-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  margin-bottom: 45px;
}
.story-wrap:hover {
  transition: all 0.5s ease;
}
.story-wrap:hover .arrow {
  display: block;
}
.story-wrap .arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  padding: 10px;
  display: none;
  background-color: rgba(63, 63, 63, 0.3490196078);
  border-radius: 100%;
}
.story-wrap .arrow img {
  max-width: 15px;
}
.story-wrap .arrow.arrow-left {
  left: 10px;
}
.story-wrap .arrow.arrow-right {
  right: 10px;
}
.story-wrap .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #000 -5.79%, rgba(106, 106, 106, 0) 48.1%, #000 99.96%);
  inset: 0;
  z-index: 0;
}
.story-wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 100%;
  -o-object-position: center;
     object-position: center;
}
.story-wrap .content-wrap {
  padding: 20px;
  z-index: 1;
  height: 100%;
  position: absolute;
  inset: 0;
}
.story-wrap .content-wrap .slider-wrap .date {
  font-size: 13px;
  font-weight: 500;
}
.story-wrap .content-wrap .slider-wrap .slider {
  gap: 6px;
  margin-bottom: 10px;
}
.story-wrap .content-wrap .slider-wrap .slider .slide {
  width: 100%;
  border-radius: 7px;
  height: 2px;
  background-color: #9D9D9D;
}
.story-wrap .content-wrap .slider-wrap .slider .slide.active {
  background-color: white;
}
.story-wrap .content-wrap .content .title {
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
  font-family: "Gantari", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.54px;
  margin-bottom: 8px;
  display: -webkit-box; /* needed for multiline truncation */
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.story-wrap .content-wrap .content .sub-title-story {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px;
  display: -webkit-box; /* needed for multiline truncation */
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-bordered {
  border-radius: 20px;
  border: 1px solid #C9E2FF;
  background: white;
}

.company-logo-card {
  width: 100%;
  background-color: #F8F8F8;
  padding: 16px;
  border-radius: 15px;
  border: 1px solid #F3F7FF;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
  text-align: center;
}
.company-logo-card:hover {
  transition: all 0.5s ease;
  background-color: #ececec;
}
.company-logo-card .icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-bottom: 1px solid #dbdbdb;
}
.company-logo-card .icon-container img {
  max-width: 150px;
  width: 100%;
  aspect-ratio: 1/1;
}
.company-logo-card .listing-card-title {
  color: #1E1E1E;
  font-size: 18px;
  font-weight: 500;
  font-family: "Gantari", sans-serif;
  letter-spacing: -1.4px;
  margin-top: 20px;
  line-height: 26px;
  transition: all 0.5s ease;
}

.testimonial-card {
  padding: 35px;
  border-radius: 15px;
  background: #F5F7F9;
  width: 100%;
}
.testimonial-card .star-wrap img {
  max-width: 20px;
}

.count-card .fs-2 {
  color: #0074F8;
}

.form-element {
  width: 100%;
  height: 82px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.form-element input,
.form-element textarea {
  width: 100%;
  height: 100%;
  color: #1e1e1e;
  padding-top: 25px;
  border: none;
  outline: none;
  font-size: 19px;
  font-weight: 500;
}
.form-element input::-moz-placeholder, .form-element textarea::-moz-placeholder {
  color: transparent;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 15px;
}
.form-element input::placeholder,
.form-element textarea::placeholder {
  color: transparent;
  transition: color 0.3s ease;
  font-size: 15px;
}
.form-element input:focus::-moz-placeholder, .form-element textarea:focus::-moz-placeholder {
  color: #999;
}
.form-element input:focus::placeholder,
.form-element textarea:focus::placeholder {
  color: #999;
}
.form-element input:not(:-moz-placeholder) + .label-name .content-name, .form-element textarea:not(:-moz-placeholder) + .label-name .content-name {
  transform: translateY(-150%);
  font-size: 14px;
  color: #2957FB;
  font-weight: 500;
  background-color: white;
}
.form-element input:focus + .label-name .content-name, .form-element input:not(:placeholder-shown) + .label-name .content-name,
.form-element textarea:focus + .label-name .content-name,
.form-element textarea:not(:placeholder-shown) + .label-name .content-name {
  transform: translateY(-150%);
  font-size: 14px;
  color: #2957FB;
  font-weight: 500;
  background-color: white;
}
.form-element input:not(:-moz-placeholder) + .label-name::after, .form-element textarea:not(:-moz-placeholder) + .label-name::after {
  transform: translateX(0%);
}
.form-element input:focus + .label-name::after, .form-element input:not(:placeholder-shown) + .label-name::after,
.form-element textarea:focus + .label-name::after,
.form-element textarea:not(:placeholder-shown) + .label-name::after {
  transform: translateX(0%);
}
.form-element .label-name {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: -12px;
  pointer-events: none;
  border-bottom: 1px solid #1e1e1e;
}
.form-element .label-name::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom: 3px solid #2243E1;
  bottom: -1px;
  left: 0;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}
.form-element .label-name .content-name {
  position: absolute;
  bottom: 5px;
  left: 13px;
  transition: all 0.3s ease;
}
.form-element .label-name .content-name i {
  color: #F60000;
  font-size: 19px;
  font-weight: 500;
}

.newsletter-input-container {
  width: 100%;
}
.newsletter-input-container input {
  height: 80px;
  border-radius: 16px 0px 0px 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 27px 32px;
  color: white;
  width: 70%;
  font-size: 19px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .newsletter-input-container input {
    width: auto;
    height: 50px;
    padding: 17px 22px;
  }
}
@media (max-width: 371px) {
  .newsletter-input-container input {
    border-radius: 16px;
    width: 100%;
    margin-top: 15px;
  }
}
.newsletter-input-container input::-moz-placeholder {
  color: #fff;
  font-size: 16px;
}
.newsletter-input-container input::placeholder {
  color: #fff;
  font-size: 16px;
}
.newsletter-input-container button {
  height: 80px;
  padding: 16px 32px;
  margin-left: -3px;
  border-radius: 0px 16px 16px 0px;
  background: #FFF;
  color: #0074F8;
  font-weight: 700;
  box-shadow: 0px 10px 10px 0px rgba(16, 137, 255, 0.1);
}
@media (max-width: 480px) {
  .newsletter-input-container button {
    height: 50px;
    padding: 6px 22px;
  }
}
@media (max-width: 371px) {
  .newsletter-input-container button {
    border-radius: 16px;
    width: 100%;
    margin-top: 15px;
  }
}

.navbar-collapse .nav-link {
  margin-bottom: 1rem;
  font-weight: 600;
}
.navbar-collapse .dropdown {
  position: inherit;
  transition: all 0.5s ease;
}
.navbar-collapse .dropdown .menu-item {
  transition: all 0.5s ease;
  padding-left: 25px;
  padding-top: 23px;
}
.navbar-collapse .dropdown .menu-item:hover {
  background: rgb(234, 234, 234);
}
.navbar-collapse .dropdown-menu {
  left: 20%;
  border-radius: 16px;
  top: 110px;
  font-family: "Gantari", sans-serif;
  padding: 35px 35px 25px 35px;
  box-shadow: 0px 20px 50px 2px rgba(3, 3, 3, 0.08);
  border: 0;
}
@media (max-width: 767px) {
  .navbar-collapse .dropdown-menu {
    box-shadow: none;
    background: transparent;
    padding: 20px 35px 20px 30px;
  }
}
.navbar-collapse .dropdown-menu p.submenu-heading {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -1px;
  color: #1e1e1e;
  margin-bottom: 0;
}
.navbar-collapse .dropdown-menu .menu-title {
  font-size: 15px;
  letter-spacing: -1px;
  color: #4a4a4a;
}
.navbar-collapse .dropdown-menu .icon {
  width: 28px;
  filter: grayscale(100%);
  opacity: 0.54;
  transition: all 0.5s;
}
.navbar-collapse .dropdown-menu a {
  text-decoration: none;
  color: #000000;
  transition: all 0.5s;
}
.navbar-collapse .dropdown-menu a .d-flex {
  transition: all 0.5s;
}
.navbar-collapse .dropdown-menu a .d-flex:hover .icon {
  filter: grayscale(0%);
  opacity: 1;
  transition: all 0.5s;
}
@media only screen and (min-width: 992px) {
  .navbar-collapse .dropdown-menu {
    width: 55vw;
  }
  .navbar-collapse .dropdown-menu.show {
    display: flex;
  }
}
@media only screen and (min-width: 992px) {
  .navbar-collapse .dropdown:hover .dropdown-menu::before {
    position: absolute;
    content: "";
    height: 100px;
  }
  .navbar-collapse .dropdown:hover .dropdown-menu {
    display: flex;
    animation: fadeIn 0.5s forwards;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
.navbar-collapse .close-btn {
  width: 100%;
  display: flex;
  justify-content: end;
  position: absolute;
  top: 30px;
  right: 25px;
}
.navbar-collapse .close-btn img {
  width: 20px;
}
@media (max-width: 991px) {
  .navbar-collapse {
    height: 100vh;
    overflow: auto;
    position: fixed;
    width: 100%;
    background-color: #ffffff;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding-top: 15%;
    background-image: repeating-linear-gradient(to right, #FCFCFC 0, #FCFCFC 99px, transparent 99px, transparent 123px);
  }
}

.navbar {
  padding-top: 3rem;
}
.navbar .logo-anchor .logo {
  width: 132px;
}
.navbar .translate {
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.navbar .translate p {
  color: #1e1e1e;
}
.navbar .translate .flag .flag-img {
  max-width: 25px;
}
.navbar .translate .arrow-down {
  max-width: 20px;
}

.header-right {
  display: flex;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .header-right {
    display: none;
  }
}

.header-right-des {
  display: none;
}
@media (max-width: 991px) {
  .header-right-des {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 30px;
  }
}

nav .nav-link:focus,
nav .nav-link:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

footer {
  background-color: #1e1e1e;
  font-family: "Gantari", sans-serif;
  color: #f5f5f5;
  margin-top: 150px;
}
footer .copyright {
  font-size: 12px;
  margin-bottom: 0;
}
footer .w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
footer .free-trial-btn {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  text-decoration: none;
}
footer .free-trial-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
footer .free-trial-btn:hover::after {
  width: 100%;
}
footer .policy-tab {
  gap: 10px;
}
footer .policy-tab a {
  color: #FFF;
  font-size: 13px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  text-decoration: none;
}
footer .policy-tab a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
footer .policy-tab a:hover::after {
  width: 100%;
}
footer .middle-links {
  display: inline-flex;
  width: 100%;
}
footer .bottom-footer {
  align-items: flex-end;
}
footer .bottom-footer .language h6 {
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
}
footer .bottom-footer .address address {
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
}
footer .bottom-footer .address p {
  color: #f5f5f5;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 15px;
}
footer .bottom-footer .footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
footer .bottom-footer .footer-cta img {
  width: 38px;
  height: 38px;
}
footer .bottom-footer .social {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
footer .bottom-footer .social .social-flex-1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .bottom-footer .social .social-flex-1 a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .list-head {
  color: white;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.64px;
  margin-bottom: 15px;
}
footer .list-unstyled {
  color: #f5f5f5;
}
footer .list-unstyled li {
  margin-bottom: 10px;
}
footer .list-unstyled li a {
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.56px;
  position: relative;
  text-decoration: none;
}
footer .list-unstyled li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
footer .list-unstyled li a:hover::after {
  width: 100%;
}
footer .more-link {
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.56px;
  gap: 10px;
  position: relative;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
footer .more-link span {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #F5F5F5;
  display: inline-flex;
  transition: transform 0.3s ease-in-out;
}
footer .more-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
footer .more-link:hover::after {
  width: 100%;
}
footer .more-link:hover span {
  transform: scale(1.5);
}
footer .description {
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.56px;
  max-width: 365px;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.64px;
  margin: 10px 0px;
}
footer .contact-row a {
  position: relative;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}
footer .contact-row a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
footer .contact-row a:hover::after {
  width: 100%;
}
footer .contact-row .contact-head {
  color: #f5f5f5;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.56px;
  margin-bottom: 15px;
}
footer .contact-row .contact-text {
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.inline-flex-center {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.main-title {
  font-size: clamp(2rem, 5vw, 2.5625rem);
  font-weight: 600;
  color: #1e1e1e;
  letter-spacing: -1.64px;
}
.main-title span {
  color: #0074F8;
}

.flex-track .slick-track {
  display: flex;
}

@keyframes moveCursorOne {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(80px, 20px);
  }
  50% {
    transform: translate(20px, 80px);
  }
  75% {
    transform: translate(80px, 80px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes moveCursorTwo {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100px, 100px);
  }
  50% {
    transform: translate(50px, 50px);
  }
  75% {
    transform: translate(30px, 60px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes moveCursorThree {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-10px, -10px);
  }
  50% {
    transform: translate(30px, 20px);
  }
  75% {
    transform: translate(90px, 60px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Second row with opposite direction */
.marquee-reverse .marquee-content {
  animation: scroll-reverse 30s linear infinite;
}

@keyframes scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/* Common transition */
.lazy,
.lazy-bg {
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.6s ease-out, filter 0.6s ease-out;
}

/* After image or bg loads */
.lazy.loaded,
.lazy-bg.loaded {
  opacity: 1;
  filter: blur(0);
}

/* Background container (you can size as needed) */
.lazy-bg {
  background-size: cover;
  background-position: center;
  min-height: 300px; /* ensure visible space */
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ensure elements are ready for animation */
[data-gsap] {
  will-change: transform, opacity;
}

/* Smooth scrolling for better ScrollTrigger experience */
html {
  scroll-behavior: smooth;
}

/* Optional: Add visibility to prevent initial flash */
.hidden-on-load {
  opacity: 0;
}

.list-styled {
  list-style: unset !important;
}

/* Remove default body margin */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Remove list styles */
ul, ol {
  list-style: none;
}

/* Remove default anchor styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Reset images */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Buttons */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Form elements normalize */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

/* Remove animations for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gantari", sans-serif;
}

h1 {
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  color: #1e1e1e;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: -1px;
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  h1 {
    line-height: 55px;
  }
}
h1 span {
  color: #0074F8;
}

h2 {
  font-size: 41px;
  color: #1e1e1e;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: -1.64px;
}
@media (max-width: 991px) {
  h2 {
    line-height: 38px;
  }
}
h2 span {
  color: #0074F8;
}

h3 {
  color: #1e1e1e;
  font-size: 23px;
  font-weight: 600;
  line-height: 40px; /* 234.783% */
  letter-spacing: -0.92px;
}

h4 {
  color: #1e1e1e;
  font-size: 19px;
  font-weight: 600;
  line-height: 34px; /* 284.211% */
  letter-spacing: -0.76px;
}

h5 {
  color: #1e1e1e;
  font-size: 18px;
  font-weight: 500;
  line-height: 29px; /* 161.111% */
  letter-spacing: -0.72px;
}

h6 {
  color: #1e1e1e;
  font-size: 17px;
  font-weight: 500;
  line-height: 29px; /* 170.588% */
  letter-spacing: -0.51px;
}

.sub-title {
  color: #1e1e1e;
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
  margin: 20px 0px;
}

.validation-msg {
  font-size: 13px;
  color: #E12730;
  margin-bottom: 0;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #dee2e6;
  padding-left: 1rem;
  margin: 1rem 0;
  color: #6c757d;
}

.policy-heading {
  font-family: "Gantari", sans-serif;
  font-weight: 400;
}

.policy-subhead {
  color: #1e1e1e;
  font-size: 19px;
  font-weight: 600;
  line-height: 34px; /* 284.211% */
  letter-spacing: -0.76px;
}

.policy-subhead-large {
  color: #1e1e1e;
  font-size: 24px;
  font-weight: 600;
  line-height: 54px; /* 284.211% */
  letter-spacing: -0.76px;
}

.link-hover-black {
  position: relative;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  display: inline;
  background-image: linear-gradient(rgba(0, 116, 248, 0.768627451), rgba(0, 116, 248, 0.768627451));
  background-repeat: no-repeat;
  background-size: 0% 1.65px;
  background-position: 0 100%;
  transition: background-size 0.5s ease;
}
.link-hover-black:hover {
  background-size: 100% 1.65px;
}

.link-hover-white {
  position: relative;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}
.link-hover-white::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
.link-hover-white:hover::after {
  width: 100%;
}

.font-secondary {
  font-family: "Gantari", sans-serif;
}

.font-blue {
  color: #0074F8;
}

.highlighted-text {
  background: #eaf4ff;
  padding: 3px 6px;
  border-radius: 12px;
  color: #1e1e1e;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.professional-calculator p, .professional-calculator li {
  font-size: 19px;
}
.professional-calculator .h1, .professional-calculator .h2, .professional-calculator .h3, .professional-calculator .h4, .professional-calculator .h5, .professional-calculator .h6,
.professional-calculator h1, .professional-calculator h2, .professional-calculator h3, .professional-calculator h4, .professional-calculator h5, .professional-calculator h6 {
  font-family: "Urbanist", sans-serif !important;
}
.professional-calculator .sub-title {
  font-size: 22px;
  font-weight: 600;
  color: #050833;
}
.professional-calculator .head-main-one {
  font-size: 48px !important;
  color: #0074F8;
  font-weight: 600;
  line-height: 62px;
  letter-spacing: 2px;
}
.professional-calculator .heading-two {
  font-size: 40px !important;
  color: #0074F8;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: 1px;
}
.professional-calculator .final-para {
  font-size: 13px;
}
.professional-calculator .main-section {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  padding: 0;
  margin: 70px 0 90px;
}
.professional-calculator .header {
  background: #0074F8;
  color: #fefefe;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.professional-calculator .header h2 {
  font-size: 41px !important;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -1px;
  color: #fefefe;
  font-family: "Gantari", sans-serif !important;
}
.professional-calculator .header p {
  font-size: 18px;
  font-weight: 500;
  max-width: 500px;
  font-family: "Urbanist", sans-serif;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.professional-calculator .header-content {
  position: relative;
  z-index: 2;
}
.professional-calculator .feature-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.professional-calculator .badge {
  padding: 10px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.67);
}
.professional-calculator .tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 95%;
  margin: 44px auto 0 !important;
}
.professional-calculator .tabs .tab {
  flex: 1;
  padding: 10px;
  background: transparent;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #CFCDCD;
  margin: 0 25px;
  border-radius: 12px;
}
.professional-calculator .tabs .tab:hover {
  border-color: #0074F8;
  color: #0074F8;
}
.professional-calculator .tabs .tab.active {
  background: #0074F8;
  color: #fefefe;
  border-color: #0074F8;
}
.professional-calculator .tabs .tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
}
.professional-calculator .tab-content {
  display: none;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
}
.professional-calculator .tab-content.active {
  display: block;
}
.professional-calculator .main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
#scenarios .professional-calculator .main-content {
  grid-template-columns: 1.4fr 2fr;
}
.professional-calculator .section {
  background: #F7F8FD;
  padding: 25px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
}
.professional-calculator .section:last-child {
  margin-bottom: 0 !important;
}
.professional-calculator .section-title {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1e293b;
  display: flex;
  letter-spacing: -0.5px;
  font-family: "Gantari", sans-serif;
  align-items: center;
}
.professional-calculator .section-title :has(.icon) {
  gap: 15px;
}
.professional-calculator .section-title .icon {
  font-size: 30px;
  border-radius: 15px;
  color: #fefefe;
}
.professional-calculator .input-group {
  margin-bottom: 25px;
}
.professional-calculator .input-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #373737;
  font-size: 1em;
}
.professional-calculator .input-group input, .professional-calculator .input-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-family: "Urbanist", sans-serif;
}
.professional-calculator .input-group input:focus, .professional-calculator .input-group select:focus {
  outline: none;
  border-color: #0074F8;
  box-shadow: 0 0 0 2px rgba(0, 116, 248, 0.15);
  transform: translateY(-2px);
  background: #fefefe;
}
.professional-calculator .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-radius: 6px !important;
}
.professional-calculator .input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}
.professional-calculator .input-triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}
.professional-calculator .input-wrapper {
  position: relative;
  width: 100%;
}
.professional-calculator .percent-input input {
  padding-right: 15px;
}
.professional-calculator .agent-type-toggle {
  display: flex;
  background: #f1f5f9;
  border-radius: 20px;
  padding: 8px;
  margin-bottom: 30px;
  border: 2px solid #e2e8f0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
.professional-calculator .agent-type-toggle button {
  flex: 1;
  padding: 8px 20px;
  border: none;
  background: transparent;
  border-radius: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1em;
  color: #64748b;
  position: relative;
}
.professional-calculator .agent-type-toggle button.active {
  background: #0074F8;
  color: #fefefe;
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
  transform: translateY(-3px);
}
.professional-calculator .scenario-builder {
  background: #ECF3FF;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 25px;
  border: 1px solid #e2e8f0;
}
.professional-calculator .scenario-builder h3 {
  color: #1e293b;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 500;
}
.professional-calculator .scenario-item {
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: #fefefe;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  display: block;
  width: 100%;
  text-align: right;
}
.professional-calculator .scenario-item input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  margin: 12px 0;
  width: 100%;
}
.professional-calculator .scenario-item button {
  padding: 10px 28px;
  background: #ef4444;
  color: #fefefe;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.professional-calculator .scenario-item button:hover {
  background: #dc2626;
  transform: translateY(-1px);
}
.professional-calculator .add-scenario-btn {
  width: 100%;
  padding: 15px;
  background: #0074F8;
  color: #fefefe;
  border: none;
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1em;
}
.professional-calculator .add-scenario-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}
.professional-calculator .result-card {
  background: #fefefe;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 25px;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  outline: 2px solid transparent;
}
.professional-calculator .result-card:hover {
  outline-color: rgba(0, 116, 248, 0.8);
}
.professional-calculator .result-card.high-light {
  border: 2px solid #0074F8;
}
.professional-calculator .result-card h3 {
  color: #373737;
  margin-bottom: 20px;
  font-size: 1.3em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.professional-calculator .result-value {
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  font-weight: 500;
  background: #0074F8;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.professional-calculator .result-value-breakdown {
  background: #ECF3FF;
  padding: 20px;
  border-radius: 25px;
  border: 1px solid #e2e8f0;
}
.professional-calculator .breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
  font-family: "Urbanist", sans-serif;
  font-size: 1em;
}
.professional-calculator .breakdown-item:last-child {
  border-top: 2px solid #e2e8f0;
  padding-top: 16px;
  margin-top: 16px;
  font-family: "Gantari", sans-serif;
  font-weight: 500;
  color: #050833;
  font-size: 1.2em;
}
.professional-calculator .comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fefefe;
  font-family: "Urbanist", sans-serif;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.professional-calculator .comparison-table th, .professional-calculator .comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}
.professional-calculator .comparison-table th {
  background: #0074F8;
  color: #fefefe;
  font-weight: 700;
  font-size: 0.9em;
}
.professional-calculator .comparison-table tr:nth-child(even) {
  background: #f8fafc;
}
.professional-calculator .comparison-table tr:hover {
  background: #f1f5f9;
}
.professional-calculator .chart-container {
  background: #fefefe;
  padding: 25px;
  border-radius: 15px;
  margin: 25px 0;
  border: 1px solid #e2e8f0;
}
.professional-calculator .chart-container h3 {
  color: #1e293b;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 500;
}
.professional-calculator .chart-bar {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}
.professional-calculator .chart-label {
  min-width: 110px;
  font-weight: 600;
  color: #64748b;
}
.professional-calculator .chart-bar-fill {
  height: 25px;
  background: #0074F8;
  border-radius: 12px;
  margin-right: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.professional-calculator .chart-bar-fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #0074F8;
  animation: shimmer 2s infinite;
}
.professional-calculator .chart-value {
  font-weight: 700;
  color: #1e293b;
}
.professional-calculator .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 0;
}
.professional-calculator .stats-card {
  background: #ECF3FF;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.professional-calculator .stats-value {
  font-size: 2em;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  color: #1e293b;
  margin-bottom: 10px;
  background: #0074F8;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.professional-calculator .stats-label {
  font-size: 0.9em;
  color: #64748b;
  font-weight: 600;
}
.professional-calculator .export-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}
.professional-calculator .export-btn {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1em;
  transition: all 0.3s ease;
}
.professional-calculator .export-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
}
.professional-calculator .export-btn.primary {
  background: #0074F8;
  color: #fefefe;
}
.professional-calculator .export-btn.secondary {
  background: #f1f5f9;
  color: #64748b;
  border: 2px solid #e2e8f0;
}
.professional-calculator .advanced-options {
  background: #ECF3FF;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 25px;
  border: 1px solid #e2e8f0;
}
.professional-calculator .advanced-options:last-child {
  margin-bottom: 0 !important;
}
.professional-calculator .advanced-options h3 {
  color: #1e293b;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 500;
}
.professional-calculator .toggle-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.professional-calculator .switch {
  position: relative;
  width: 50px;
  height: 24px;
  background: #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.professional-calculator .switch.active {
  background: #0074F8;
}
.professional-calculator .switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fefefe;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.professional-calculator .switch.active::after {
  left: 28px;
}
.professional-calculator .warning {
  background: rgba(251, 191, 36, 0.2392156863);
  color: #050833;
  padding: 25px;
  border-radius: 15px;
  margin-top: 30px;
  border: 1px solid #fbbf24;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.1);
}
.professional-calculator .footer {
  background: #0074F8;
  color: #fefefe;
  text-align: center;
  padding: 40px;
  font-size: 1em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.professional-calculator .footer-content {
  max-width: 800px;
  margin: 0 auto;
}
.professional-calculator .footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}
.professional-calculator .footer-links a {
  color: #fefefe;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.professional-calculator .footer-links a:hover {
  color: #f093fb;
}
.professional-calculator .tooltip {
  position: relative;
  cursor: help;
}
.professional-calculator .tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #fefefe;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.85em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.professional-calculator .tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}
.professional-calculator .loading {
  opacity: 0.7;
  transform: scale(0.98);
  transition: all 0.3s ease;
}
.professional-calculator .pulse {
  animation: pulse 2s infinite;
}
.professional-calculator .box-cta {
  box-shadow: -1px -2px 8px -2px hsla(0, 0%, 9%, 0.08), 0 8px 12px -2px hsla(0, 0%, 9%, 0.16);
  padding: 25px 110px;
}
.professional-calculator .box-cta .heading-two {
  font-size: 33px !important;
  color: #060606;
}
.professional-calculator .btn-primary {
  background-color: #0074F8;
  color: #fefefe;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
}
.professional-calculator .btn-primary:hover {
  background-color: #0074F8;
}
@media (max-width: 1200px) {
  .professional-calculator .main-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .professional-calculator .input-row {
    grid-template-columns: 1fr;
  }
  .professional-calculator .input-triple {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .professional-calculator .tabs {
    overflow-x: auto;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px !important;
  }
  .professional-calculator .tabs .tab {
    margin: 0px 10px !important;
  }
  .professional-calculator .header h2 {
    font-size: 2.5em;
  }
  .professional-calculator .tab-content {
    padding: 10px;
  }
  .professional-calculator .section {
    padding: 20px 15px;
  }
  .professional-calculator .input-triple {
    grid-template-columns: 1fr;
  }
  .professional-calculator .export-buttons {
    flex-direction: column;
  }
  .professional-calculator .footer-links {
    flex-direction: column;
    gap: 15px;
  }
  .professional-calculator .result-card {
    padding: 20px 13px;
  }
  .professional-calculator .chart-container {
    padding: 15px;
  }
  .professional-calculator .advanced-options {
    padding: 15px;
  }
  .professional-calculator .scenario-builder {
    padding: 15px;
  }
  .professional-calculator .breakdown-item {
    margin-bottom: 0px;
  }
}

.stripe-bg {
  position: relative;
}
.stripe-bg .white-overlay {
  position: absolute;
  width: 100%;
  height: 281px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  backdrop-filter: blur(0.5px);
  bottom: 0;
  transform: rotate(180deg);
}

.blurred {
  filter: blur(3px);
  transition: filter 0.3s ease;
  pointer-events: none;
}

.landing-section {
  padding-top: 280px;
}
@media (max-width: 991px) {
  .landing-section {
    padding-top: 200px;
  }
}
.landing-section .cursor {
  max-width: 149px;
}
.landing-section .cursor-1 {
  top: 25%;
  left: 10%;
  animation: moveCursorThree 12s infinite ease-in-out;
}
.landing-section .cursor-2 {
  bottom: 20%;
  left: 45%;
  z-index: 2;
  animation: moveCursorTwo 8s infinite ease-in-out;
}
.landing-section .cursor-3 {
  top: 35%;
  right: 10%;
  animation: moveCursorOne 14s infinite ease-in-out;
}
.landing-section .landing-graphic {
  margin-top: 130px;
  position: relative;
}
.landing-section .landing-graphic .window {
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.landing-section .landing-graphic .top-right {
  max-width: 350px;
  top: -80px;
  right: 226px;
}
@media (max-width: 767px) {
  .landing-section .landing-graphic .top-right {
    right: 30px;
  }
}
.landing-section .landing-graphic .bottom-right {
  max-width: 351px;
  bottom: 60px;
  right: 130px;
}
.landing-section .landing-graphic .top-left {
  max-width: 287px;
  top: -10px;
  left: 170px;
}
.landing-section .landing-graphic .bottom-left {
  bottom: -60px;
  max-width: 218px;
  left: 275px;
}
@media (max-width: 767px) {
  .landing-section .landing-graphic .bottom-left {
    left: 130px;
  }
}
.landing-section .sub-title {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.landing-section .btn-group {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .landing-section .btn-group {
    flex-direction: column;
  }
}

.platform-section {
  margin: 100px 0;
}
@media (max-width: 767px) {
  .platform-section {
    margin: 40px 0px;
  }
}
.platform-section h2 {
  max-width: 702px;
}
.platform-section .card-slider-wrapper {
  margin-top: 60px;
}

.industry-tag-section {
  margin-top: 100px;
}
.industry-tag-section .business-title {
  max-width: 625px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.industry-tag-section .industry-title .sub-title {
  max-width: 855px;
}
.industry-tag-section .tag-wrapper {
  gap: 15px;
  max-width: 1141px;
}
@media (max-width: 767px) {
  .industry-tag-section .tag-wrapper {
    gap: 10px;
  }
}
.industry-tag-section .show-more-btn-wrap {
  margin-top: 30px;
}
.industry-tag-section .show-more-btn-wrap a.show-more-btn {
  color: #1e1e1e;
}

.salesforce-section {
  margin: 135px 0;
}
.salesforce-section .salesforce {
  max-width: 481px;
  width: 100%;
}
.salesforce-section .box-row {
  margin: 60px 0;
}
.salesforce-section .box-row .box .icon-box {
  width: 49px;
  height: 49px;
  border-radius: 10px;
  background-color: #f5f7fc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.salesforce-section .box-row .box .title-wrap .title {
  color: #1e1e1e;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.76px;
  line-height: 34px;
}
.salesforce-section .box-row .box .title-wrap .sub-title {
  letter-spacing: -0.64px;
  font-size: 16px;
}

.tools-section h2 {
  max-width: 525px;
}
.tools-section .sub-title {
  max-width: 555px;
}
.tools-section .carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.tools-section .carousel-wrapper .carousel-track {
  display: flex;
  will-change: transform;
}

.home-page-bg-card-wrapper .tools-bg-card.blue {
  background-image: url(/sites/default/site-files/assets/images/card/crm.png);
}
.home-page-bg-card-wrapper .tools-bg-card.green {
  background-image: url(/sites/default/site-files/assets/images/card/lms.png);
}
.home-page-bg-card-wrapper .tools-bg-card.yellow {
  background-image: url(/sites/default/site-files/assets/images/card/analytics.png);
}
.home-page-bg-card-wrapper .tools-bg-card.red {
  background-image: url(/sites/default/site-files/assets/images/card/icm.png);
}

.growth-section {
  margin: 100px 0;
}
.growth-section .dashboard-wrap {
  margin-top: 80px;
  position: relative;
}
.growth-section .dashboard-wrap .white-overlay {
  position: absolute;
  width: 100%;
  height: 281px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  backdrop-filter: blur(0.5px);
  bottom: 0;
  transform: rotate(180deg);
  height: 200px;
}
@media (max-width: 991px) {
  .growth-section .dashboard-wrap .white-overlay {
    height: 50px;
  }
}
.growth-section .growth-title h2 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.growth-section .growth-title .sub-title {
  max-width: 585px;
}

.faq-section {
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 59.64%, #fff 102.31%);
  padding-bottom: 100px;
}
.faq-section .faq-title .sub-title {
  max-width: 416px;
}
.faq-section .accordion {
  margin-top: 60px;
}

.contactus-landing-section {
  padding-top: 250px;
}
@media (max-width: 991px) {
  .contactus-landing-section {
    padding-top: 180px;
  }
}
.contactus-landing-section .contact-landing-title {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .contactus-landing-section .contact-landing-title {
    margin-bottom: 0px;
    flex-direction: column;
  }
}
.contactus-landing-section .sub-title {
  max-width: 730px;
}
.contactus-landing-section h1 {
  max-width: 636px;
  width: 100%;
}
@media (max-width: 767px) {
  .contactus-landing-section h1 {
    line-height: 59px;
    margin-bottom: 30px;
  }
}

.social {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.social .social-flex-1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 991px) {
  .social .social-flex-1 {
    flex-direction: row;
  }
}
.social .social-flex-1 a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4a4a4a;
  background: white;
}

.get-in-touch-section {
  font-family: "Gantari", sans-serif;
  background-color: #F9FAFD;
  margin-top: 100px;
}
.get-in-touch-section .location-section .head {
  color: #1e1e1e;
  font-size: 18px;
  font-weight: 500;
  line-height: 29px;
  /* 161.111% */
  letter-spacing: -0.72px;
}
.get-in-touch-section .contact-item .contact {
  position: relative;
  text-decoration: none;
}
.get-in-touch-section .contact-item .contact::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #1e1e1e;
  transition: width 0.3s ease-in-out;
}
.get-in-touch-section .contact-item .contact:hover::after {
  width: 100%;
}
.get-in-touch-section .contact-item .title {
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: -0.64px;
  margin-bottom: 0;
}
.get-in-touch-section .contact-item .title .circle {
  width: 8px;
  height: 8px;
  background: #4a4a4a;
  display: inline-block;
  border-radius: 50%;
  margin-left: 10px;
  color: #1e1e1e;
}

.newsletter-section {
  background: #0074F8;
}
.newsletter-section .row {
  min-height: 220px;
}
.newsletter-section .newsletter .newsletter-head {
  color: #FFF;
  font-size: clamp(1rem, 5vw, 2.5625rem);
  font-weight: 600;
  line-height: 54px;
  /* 131.707% */
  letter-spacing: -1.64px;
  color: white;
  font-size: 41px;
  font-weight: 600;
}
.newsletter-section .newsletter .sub-title {
  color: white;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.4px;
  max-width: 500px;
}

.carousel-colored-track {
  min-height: 700px;
}
@media (max-width: 991px) {
  .carousel-colored-track {
    min-height: 800px;
  }
}

.industry-landing-section {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
  padding-top: 200px;
}
.industry-landing-section h1 {
  max-width: 455px;
}
.industry-landing-section .sub-title {
  max-width: 475px;
}

.real-estate-landing-image {
  position: absolute;
  width: 50vw;
  max-width: 800px;
  top: 25%;
  right: 0;
}
@media (max-width: 991px) {
  .real-estate-landing-image {
    position: relative;
    margin-top: 50px;
    width: 100%;
  }
}

.real-estate-color-card-wrap .tools-color-card.blue .feature-image {
  bottom: 0;
  right: 0;
}
.real-estate-color-card-wrap .tools-color-card.green .feature-image {
  bottom: 0;
  right: 0;
}
.real-estate-color-card-wrap .tools-color-card.yellow .feature-image {
  bottom: 20px;
  right: 0;
}
.real-estate-color-card-wrap .tools-color-card.red .feature-image {
  bottom: 0px;
  right: 0;
}
.real-estate-color-card-wrap .tools-color-card.pink .feature-image {
  bottom: 0px;
  right: 0;
}
.real-estate-color-card-wrap .tools-color-card.teal .feature-image {
  bottom: 0px;
  right: 0;
}

.signature-feature-section {
  margin-bottom: 130px;
  padding-top: 80px;
}
.signature-feature-section .signature-title .main-title {
  max-width: 624px;
  margin-left: auto;
  margin-right: auto;
}
.signature-feature-section .signature-title .sub-title {
  max-width: 530px;
}

.add-on-feature-section .sub-title {
  max-width: 544px;
}
.add-on-feature-section .feature-image {
  margin: auto;
  max-width: 350px;
}

.expeirence-feature-section {
  margin-bottom: 130px;
}
@media (max-width: 991px) {
  .expeirence-feature-section {
    margin-bottom: 90px;
  }
}
.expeirence-feature-section .expeirence-title h2 {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.expeirence-feature-section .expeirence-title .sub-title {
  max-width: 580px;
}

.help-section-wrapper {
  margin-bottom: 135px;
}
.help-section-wrapper .icon-column {
  font-family: "Gantari", sans-serif;
  letter-spacing: -0.64px;
}
.help-section-wrapper h2 {
  max-width: 327px;
}
.help-section-wrapper .sub-title {
  max-width: 500px;
}

.real-estate-bg-slide-wrap .tools-bg-card.blue-finance {
  background-image: url(/sites/default/site-files/assets/images/finance/benefits/collab.png);
}
.real-estate-bg-slide-wrap .tools-bg-card.green-finance {
  background-image: url(/sites/default/site-files/assets/images/finance/benefits/risk.png);
}
.real-estate-bg-slide-wrap .tools-bg-card.yellow-finance {
  background-image: url(/sites/default/site-files/assets/images/finance/benefits/client.png);
}
.real-estate-bg-slide-wrap .tools-bg-card.red-finance {
  background-image: url(/sites/default/site-files/assets/images/finance/benefits/team.png);
}
.real-estate-bg-slide-wrap .tools-bg-card.pink-finance {
  background-image: url(/sites/default/site-files/assets/images/finance/benefits/growth.png);
}
.real-estate-bg-slide-wrap .tools-bg-card.teal-finance {
  background-image: url(/sites/default/site-files/assets/images/finance/benefits/customer.png);
}
.real-estate-bg-slide-wrap .tools-bg-card.blue-insurance {
  background-image: url(/sites/default/site-files/assets/images/insurance/cards/accelerate.png);
}
.real-estate-bg-slide-wrap .tools-bg-card.green-insurance {
  background-image: url(/sites/default/site-files/assets/images/insurance/cards/customers.png);
}
.real-estate-bg-slide-wrap .tools-bg-card.yellow-insurance {
  background-image: url(/sites/default/site-files/assets/images/insurance/cards/conversion.png);
}
.real-estate-bg-slide-wrap .tools-bg-card.red-insurance {
  background-image: url(/sites/default/site-files/assets/images/insurance/cards/compliance.png);
}
.real-estate-bg-slide-wrap .tools-bg-card.pink-insurance {
  background-image: url(/sites/default/site-files/assets/images/insurance/cards/agent.png);
}
.real-estate-bg-slide-wrap .tools-bg-card.teal-insurance {
  background-image: url(/sites/default/site-files/assets/images/insurance/cards/future.png);
}
@media (max-width: 991px) {
  .real-estate-bg-slide-wrap .tools-bg-card.blue-real-estate {
    background-image: none;
  }
}
.real-estate-bg-slide-wrap .tools-bg-card.green-real-estate {
  background-image: url(/sites/default/site-files/assets/images/realestate/guarantee-satisfaction.webp);
}
@media (max-width: 991px) {
  .real-estate-bg-slide-wrap .tools-bg-card.green-real-estate {
    background-image: none;
  }
}
.real-estate-bg-slide-wrap .tools-bg-card.yellow-real-estate {
  background-image: url(/sites/default/site-files/assets/images/realestate/improve-conversion.webp);
}
@media (max-width: 991px) {
  .real-estate-bg-slide-wrap .tools-bg-card.yellow-real-estate {
    background-image: none;
  }
}
.real-estate-bg-slide-wrap .tools-bg-card.red-real-estate {
  background-image: url(/sites/default/site-files/assets/images/realestate/smarter-decisions.webp);
}
@media (max-width: 991px) {
  .real-estate-bg-slide-wrap .tools-bg-card.red-real-estate {
    background-image: none;
  }
}
.real-estate-bg-slide-wrap .tools-bg-card.pink-real-estate {
  background-image: url(/sites/default/site-files/assets/images/realestate/improve-collaboration.webp);
}
@media (max-width: 991px) {
  .real-estate-bg-slide-wrap .tools-bg-card.pink-real-estate {
    background-image: none;
  }
}
.real-estate-bg-slide-wrap .tools-bg-card.teal-real-estate {
  background-image: url(/sites/default/site-files/assets/images/realestate/greater-scalability.webp);
}
@media (max-width: 991px) {
  .real-estate-bg-slide-wrap .tools-bg-card.teal-real-estate {
    background-image: none;
  }
}

@media (max-width: 991px) {
  .tools-bg-card__bg-image img {
    display: none;
  }
}

.carousel-large-wrapper {
  margin-bottom: 130px;
  margin-top: 30px;
}
.carousel-large-wrapper .carousel-large {
  gap: 45px;
}

@media (max-width: 991px) {
  .tools-bg-card__bg-image img {
    display: none;
  }
}

.aboutus-landing-section {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
  padding-top: 200px;
}
.aboutus-landing-section h1 {
  max-width: 785px;
}

.make-it-right-section {
  background: linear-gradient(180deg, #F0F7FF 0%, #FFF 100%);
  padding-top: 135px;
}
.make-it-right-section .main-title {
  max-width: 519px;
}
.make-it-right-section .sub-title {
  max-width: 485px;
}
.make-it-right-section .make-it-right-img {
  max-width: 269px;
  width: 100%;
}

.market-section {
  background-color: black;
  padding: 150px 0px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .market-section {
    padding: 100px 30px;
  }
}
.market-section::before {
  position: absolute;
  content: "";
  width: 2187px;
  height: 2187px;
  transform: rotate(-39.673deg);
  border-radius: 2187px;
  border: 3px solid #0827A0;
  top: -100px;
  right: -71%;
}
.market-section::after {
  position: absolute;
  content: "";
  width: 644px;
  height: 644px;
  border-radius: 100%;
  opacity: 0.82;
  background: #0074F8;
  filter: blur(125px);
  right: -130px;
}
@media (max-width: 991px) {
  .market-section .ngage-logo {
    display: none;
  }
}
.market-section .left-section {
  padding-right: 100px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .market-section .left-section {
    padding-right: 0px;
  }
}
.market-section .left-section .sub-title {
  max-width: 485px;
}
.market-section .market-title {
  color: #FFF;
  font-size: 65px;
  font-style: normal;
  font-weight: 300;
  line-height: 54px;
  /* 83.077% */
  letter-spacing: -1.95px;
}
.market-section .market-title span {
  background: linear-gradient(90deg, #2957FB 0%, #7A5EEF 49.5%, #1EA9FE 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sales-landing-section {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
  padding-top: 200px;
}
.sales-landing-section h2 {
  max-width: 503px;
}
.sales-landing-section .sub-title {
  max-width: 475px;
}

.sales-process-section .main-title {
  max-width: 675px;
  margin-left: auto;
  margin-right: auto;
}
.sales-process-section .sub-title {
  max-width: 761px;
}

.sales-pipeline-section .bg-section {
  height: 756px;
  background-image: url("/sites/default/site-files/assets/images/sales/salesbg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .sales-pipeline-section .bg-section {
    display: none;
  }
}
.sales-pipeline-section .black-section {
  height: 756px;
  background-color: black;
  position: relative;
  overflow: hidden;
  padding: 100px;
}
@media (max-width: 767px) {
  .sales-pipeline-section .black-section {
    padding: 65px;
  }
}
@media (max-width: 991px) {
  .sales-pipeline-section .black-section {
    height: auto;
  }
}
.sales-pipeline-section .black-section .trial-white-btn {
  width: -moz-fit-content;
  width: fit-content;
}
.sales-pipeline-section .black-section h3 {
  color: #FFF;
  font-size: 38px;
  font-style: normal;
  font-weight: 300;
  line-height: 55px;
  /* 144.737% */
  letter-spacing: -1.14px;
  max-width: 469.403px;
  position: relative;
  z-index: 1;
}
.sales-pipeline-section .black-section::after {
  position: absolute;
  content: "";
  width: 644px;
  height: 644px;
  border-radius: 100%;
  opacity: 0.82;
  background: #0074F8;
  filter: blur(125px);
  right: -20%;
  bottom: -50%;
}

.experience-growth-section {
  padding-top: 130px;
  padding-bottom: 190px;
}
.experience-growth-section .experience-title {
  text-align: left;
  max-width: 570px;
  margin-bottom: 80px;
}

.join-us-section {
  margin-bottom: 130px;
}
.join-us-section .img-container {
  border-radius: 10px;
  background-image: url("/sites/default/site-files/assets/images/aboutus/forward-vision.webp");
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  background-size: cover;
}
.join-us-section .join-us-card {
  border-radius: 30px;
  background: linear-gradient(180deg, #0074F8 0%, #2237DC 100%);
  padding: 40px 65px 55px 65px;
}
@media (max-width: 991px) {
  .join-us-section .join-us-card {
    padding: 40px;
  }
}
.join-us-section .contact-card {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.33);
  padding: 20px 60px;
  margin-top: 20px;
}
.join-us-section .contact-card a {
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}
.join-us-section .contact-card a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
.join-us-section .contact-card a:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .join-us-section .contact-card {
    flex-direction: column;
  }
}

.blog-landing {
  padding-top: 200px;
}
@media (max-width: 767px) {
  .blog-landing .search-filter-wrap {
    flex-direction: column-reverse;
  }
}
.blog-landing .title-blog-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .blog-landing .title-blog-wrap {
    flex-direction: column;
    gap: 30px;
  }
}

.blog-landing-card-wrap {
  margin-top: 40px;
}

.blog-listing-wrap .container {
  border-bottom: 1px solid rgba(0, 0, 0, 0.0980392157);
  margin-bottom: 50px;
}

.blog-detail-wrap {
  margin-top: 230px;
}
@media (max-height: 991px) {
  .blog-detail-wrap {
    margin-top: 180px;
  }
}
@media (max-width: 991px) {
  .blog-detail-wrap .blog-sm-reverse {
    flex-direction: column-reverse;
  }
}
.blog-detail-wrap .blog-sub-title {
  color: #1e1e1e;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.92px;
}
.blog-detail-wrap .sticky-highlight {
  position: sticky;
  top: 100px;
  z-index: 1;
  display: flex;
}
@media (max-width: 991px) {
  .blog-detail-wrap .sticky-highlight {
    top: 88px;
    position: fixed;
    width: 100%;
    left: 0;
    border-radius: 0px;
    height: 84px;
    overflow: hidden;
    padding: 24px;
    display: none;
  }
}
.blog-detail-wrap .search-container-blog {
  max-width: 412px;
}
.blog-detail-wrap article p {
  line-height: 30px;
}
.blog-detail-wrap .blog-detail-main-img {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-detail-wrap .blog-detail-main-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 100%;
  -o-object-position: top;
     object-position: top;
}
.blog-detail-wrap .blogdetail-title {
  margin-top: 45px;
}
.blog-detail-wrap .blogdetail-title h2 {
  letter-spacing: normal;
}
.blog-detail-wrap .blogdetail-title h1 {
  font-size: 41px;
  color: #1e1e1e;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: -1.64px;
}
.blog-detail-wrap .blogdetail-title h1 span {
  color: #0074F8;
}

.protip-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  background-color: #F5F9FF;
  padding: 16px;
  border-radius: 10px;
}
.protip-container svg {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.protip-container .protip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 700px;
}
.protip-container .protip h3,
.protip-container .protip p {
  margin: 0;
}
.protip-container .protip h3 {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
}
.protip-container .protip p {
  font-size: 13px;
  line-height: 1.5;
  color: #333;
}
@media (max-width: 767px) {
  .protip-container {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .protip-container svg {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }
  .protip-container .protip h3 {
    font-size: 15px;
  }
  .protip-container .protip p {
    font-size: 13px;
  }
}

.quote-box {
  background-color: #0074F8;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 16px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 10px;
  text-align: left;
}
.quote-box svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
.quote-box p {
  margin: 0;
  font-style: italic;
}
@media (max-width: 767px) {
  .quote-box {
    gap: 8px;
    padding: 16px 12px;
  }
  .quote-box p {
    font-size: 14px;
    line-height: 1.5;
  }
  .quote-box svg {
    width: 20px;
    height: 20px;
    margin-top: 3px;
  }
}

.policy-link {
  color: #0074F8;
}

.policy-nav {
  position: sticky;
  top: 130px;
  z-index: 1;
}
.policy-nav ul li {
  margin-bottom: 10px;
}
.policy-nav ul li a {
  font-weight: 600;
}
.policy-nav ul li a.active {
  color: #0074F8;
}

.policy-points {
  padding-left: 2rem;
}
.policy-points li {
  margin-bottom: 20px;
  position: relative;
}
.policy-points li::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background-color: #0074F8;
  left: -22px;
  top: 5px;
}

.business-setup-wrap {
  padding-top: 240px;
  background: linear-gradient(180deg, #FFF 0%, #FBFBFB 100%);
}
@media (max-width: 991px) {
  .business-setup-wrap {
    padding-top: 160px;
  }
}
.business-setup-wrap .sub-title {
  max-width: 675px;
}
.business-setup-wrap .landing-image {
  max-height: 460px;
  width: auto;
  margin: 30px auto 40px auto;
}

.key-business-section {
  margin-top: 90px;
}
.key-business-section .sub-title {
  max-width: 530px;
}

.testimonials-wrap {
  padding-top: 240px;
  background: linear-gradient(180deg, #FFF 0%, #FBFBFB 100%);
}
@media (max-width: 991px) {
  .testimonials-wrap {
    padding-top: 160px;
  }
}
.testimonials-wrap .sub-title {
  max-width: 640px;
}
.testimonials-wrap .landing-image {
  max-width: 816px;
  width: 100%;
  margin: 30px auto 40px auto;
}

.testimonials-section {
  margin-top: 90px;
}
.testimonials-section .sub-title {
  max-width: 530px;
}

/* Properly nested SCSS using &- syntax for .tst namespace */
.tst-footer {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
}
.tst-footer-logo {
  height: 37px;
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: contain;
     object-fit: contain;
}
.tst-footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.tst-footer-footer-text {
  font-size: 0.7rem;
  color: #1e1e1e;
  font-family: "Urbanist", sans-serif;
  margin: 0;
}
.tst-description {
  margin-bottom: 0;
}
.tst-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tst-tag {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 38px;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: #1e1e1e;
  display: inline-block;
}
.tst-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
}
.tst-avatar {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  background-color: #fff;
  flex-shrink: 0;
}
.tst-author-name {
  font-weight: 600;
  color: #1e1e1e;
  font-size: 1.2rem;
  font-family: "Gantari", sans-serif;
  margin: 0;
}
.tst-author-title {
  font-size: 0.85rem;
  color: #4a4a4a;
  margin: 0;
}
.tst-author-info {
  display: flex;
  flex-direction: column;
}
.tst-author-info p {
  margin: 0;
}
.tst-main-text {
  font-size: clamp(1.2rem, 3.5vw, 1.7rem);
  line-height: clamp(1.5rem, 4.5vw, 2.2rem);
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  color: #373737;
  letter-spacing: 0.002em;
  margin-bottom: 0;
}
.tst-author-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tst-card {
  background-color: #f8f9fa;
  border: none;
  gap: 1.9rem;
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tst-card-quote-icon {
  font-size: 3rem;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.tst-card-main-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.tst-card-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.tst-grid-container {
  padding: 2rem 0;
}
.tst-col-wrapper {
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .tst-card {
    padding: 1.5rem;
  }
  .tst-card-tags-container {
    gap: 0.5rem;
  }
  .tst-card-tags-container-tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

.deliver-section {
  margin-top: 100px;
  margin-bottom: 100px;
}
.deliver-section .sub-title {
  max-width: 720px;
  margin: auto;
}

.business-support-wrap {
  background-image: url("/sites/default/site-files/assets/images/business/business-support-solutions.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 65px 0px;
  margin-bottom: 100px;
}
.business-support-wrap h2 {
  max-width: 700px;
  margin: auto;
}
.business-support-wrap .sub-title {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.services-wrap {
  margin-top: 190px;
}

.main-404-wrapper {
  min-height: 100vh;
}
.main-404-wrapper .flex-wrapper {
  gap: 100px;
}
@media (max-width: 991px) {
  .main-404-wrapper .flex-wrapper {
    gap: 50px;
  }
}
.main-404-wrapper .flex-wrapper p {
  font-family: "Urbanist", sans-serif;
  color: #1e1e1e;
  font-size: 17px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .main-404-wrapper .flex-wrapper p {
    font-size: 14.5px;
  }
}
.main-404-wrapper .flex-wrapper h1 {
  color: #1e1e1e;
  font-size: 60px;
  font-weight: 700;
  font-family: "Gantari", sans-serif;
  letter-spacing: -2.4px;
}
@media (max-width: 991px) {
  .main-404-wrapper .flex-wrapper h1 {
    font-size: 40px;
  }
}
.main-404-wrapper .flex-wrapper h1 span {
  color: #0074F8;
}
.main-404-wrapper .flex-wrapper .logo {
  max-width: 155px;
  width: 100%;
}
@media (max-width: 991px) {
  .main-404-wrapper .flex-wrapper .logo {
    max-width: 120px;
  }
}
.main-404-wrapper .flex-wrapper .timer-wrapper {
  display: flex;
  justify-content: space-between;
  border-radius: 35px;
  padding: 26px 60px;
  background: #0074F8;
  box-shadow: 13px 213px 60px 0 rgba(1, 116, 248, 0), 8px 136px 55px 0 rgba(1, 116, 248, 0.03), 5px 77px 46px 0 rgba(1, 116, 248, 0.1), 2px 34px 34px 0 rgba(1, 116, 248, 0.17), 1px 9px 19px 0 rgba(1, 116, 248, 0.2);
  height: 150px;
  max-width: 605px;
  width: 100%;
}
.main-404-wrapper .flex-wrapper .timer-wrapper .time .number {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.main-404-wrapper .flex-wrapper .timer-wrapper .time .number.flick {
  transform: rotateX(90deg);
}
@media (max-width: 991px) {
  .main-404-wrapper .flex-wrapper .timer-wrapper {
    height: 120px;
  }
}
.main-404-wrapper .flex-wrapper .timer-wrapper h5 {
  color: white;
  font-family: "Urbanist", sans-serif;
  font-size: 54px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 991px) {
  .main-404-wrapper .flex-wrapper .timer-wrapper h5 {
    font-size: 35px;
  }
}
.main-404-wrapper .flex-wrapper .timer-wrapper p {
  color: rgba(239, 239, 239, 0.9333333333);
  font-weight: 600;
  margin: 0;
}
.main-404-wrapper .flex-wrapper .notify-wrapper {
  display: flex;
}
.main-404-wrapper .flex-wrapper .notify-wrapper input {
  border-radius: 15px 0 0 15px;
  background: #F5F5F5;
  width: 404px;
  padding: 27px 32px;
}
@media (max-width: 991px) {
  .main-404-wrapper .flex-wrapper .notify-wrapper input {
    width: 100%;
    padding: 20px 23px;
  }
}
.main-404-wrapper .flex-wrapper .notify-wrapper button {
  border-radius: 0 15px 15px 0;
  background: #000;
  /* button shadow */
  box-shadow: 0 10px 10px 0 rgba(16, 137, 255, 0.1);
  height: 84px;
  padding: 16px 32px;
  color: #FFF;
  font-family: "Gantari", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .main-404-wrapper .flex-wrapper .notify-wrapper button {
    font-size: 14px;
    padding: 16px 24px;
    width: 200px;
    height: 65px;
  }
}
.main-404-wrapper .flex-wrapper .social-media {
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 30px;
}
.main-404-wrapper .flex-wrapper .social-media a {
  background-color: #EFEFEF;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stripe-404-bg {
  position: relative;
}
.stripe-404-bg .white-overlay {
  position: absolute;
  width: 100%;
  height: 281px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  backdrop-filter: blur(0.5px);
  bottom: 0;
  transform: rotate(180deg);
}
.stripe-404-bg {
  background: repeating-linear-gradient(to right, #FCFCFC 0, #FCFCFC 99px, transparent 99px, transparent 123px);
}

.landing-padding-section-spacing {
  padding-top: 100px;
}

.web-stories-listing-wrap {
  margin-top: 25vh;
}
.web-stories-listing-wrap .sub-title {
  max-width: 466px;
}

.web-story-detail-wrap {
  height: 100vh;
  background-color: black;
  overflow: hidden;
  position: relative;
}
.web-story-detail-wrap .color-circle {
  width: 574px;
  height: 574px;
  border-radius: 574px;
  filter: blur(182px);
  position: absolute;
}
.web-story-detail-wrap .color-circle.one {
  background: rgba(0, 98, 187, 0.71);
  right: -10%;
  bottom: -10%;
}
.web-story-detail-wrap .color-circle.two {
  background: rgba(245, 126, 0, 0.46);
  left: -10%;
  top: -20%;
}
.web-story-detail-wrap .story-wrap {
  overflow: visible;
}
.web-story-detail-wrap .story-wrap .arrow {
  display: block;
}
.web-story-detail-wrap .story-wrap .arrow img {
  max-width: 25px;
}
.web-story-detail-wrap .story-wrap .arrow.arrow-left {
  left: -80px;
}
.web-story-detail-wrap .story-wrap .arrow.arrow-right {
  right: -80px;
}

.landing-spacing-breadcrumb {
  padding-bottom: 50px;
  padding-top: 200px;
}
@media (max-width: 991px) {
  .landing-spacing-breadcrumb {
    padding-top: 150px;
  }
}/*# sourceMappingURL=main.css.map */