/* default css start */
/* font css start */
@font-face {
  font-family: "Sora";
  src: url("./../fonts/Sora-Regular.woff2") format("woff2"),
    url("./../fonts/Sora-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("./../fonts/Sora-Medium.woff2") format("woff2"),
    url("./../fonts/Sora-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("./../fonts/Sora-SemiBold.woff2") format("woff2"),
    url("./../fonts/Sora-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("./../fonts/Sora-Light.woff2") format("woff2"),
    url("./../fonts/Sora-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("./../fonts/Sora-Bold.woff2") format("woff2"),
    url("./../fonts/Sora-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* inter font */
@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-SemiBold.woff2") format("woff2"),
    url("./../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-Regular.woff2") format("woff2"),
    url("./../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-Medium.woff2") format("woff2"),
    url("./../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-Bold.woff2") format("woff2"),
    url("./../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* STSong font */
@font-face {
  font-family: "STSong";
  src: url("./../fonts/STSong.woff2") format("woff2"),
    url("./../fonts/STSong.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* font css end */
/* root css start */
:root {
  --fontSora: "Sora", Arial, Helvetica, sans-serif;
  --fontInter: "Inter", Arial, Helvetica, sans-serif;
  --fontSTSong: "STSong", Arial, Helvetica, sans-serif;
  --whiteClr: #fff;
  --blackClr: #000;
  --primaryClr: #24b282;
  --marinaClr: #4d86c5;
  --darkBlackClr: #1e1e1e;
  --everlastingIceClr: #f4fbf8;
  --unicornSilverTwoClr: #e8e8e8;
  --chromaphobicBlackClr: #292929;
  --alterClr: rgba(36, 178, 130, 0.05);
  --primarySecondGradiantClr: linear-gradient(180deg, #1e1e1e 0%, #24b282 100%);
  --primaryOneGradiantClr: linear-gradient(0deg, #fff 0%, #fff 100%),
    rgba(36, 178, 130, 0.6);
  --antiFlashWhiteClr: rgba(30, 30, 30, 0.05);
  --lightWhiteClr: rgba(255, 255, 255, 0.2);
  --sugarGrapeClr: 0px 11px 10px -8px rgba(30, 30, 30, 0.1);
  --heatherGreyClr: rgba(36, 178, 130, 0.1);
  --lazyLavenderClr: rgba(30, 30, 30, 1);
  --unicornSilverClr: rgba(30, 30, 30, 0.1);
  --vanillaStrawberryClr: rgba(255, 255, 255, 0.05);
  --stoicWhiteClr: rgba(255, 255, 255, 0.6);
  --redClr: #DC3545;

  --font46: 4.6rem;
  --font40: 4rem;
  --font32: 3.2rem;
  --font24: 24px;
  --font20: 20px;
  --font18: 18px;
  --font16: 16px;
  --font15: 15px;
  --font14: 14px;
  --font12: 12px;
  --headerHeight: 90px;

  --space-big: 9rem;
  --space-mid: 7.4rem;
  --space-small: 5.4rem;

  --section-xy-space: 12px;
}
/* root css end */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-moz-selection {
  /* Code for Firefox */
  background-color: #5a988363;
  /*  color: var(--whiteClr) !important;*/
}

::selection {
  background-color: #5a988363;
  /*  color: var(--whiteClr) !important;*/
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-size: var(--font16);
  color: var(--blackClr);
  font-family: var(--fontInter);
  font-weight: 400;
}

.h1,
h1 {
  font-size: var(--font46);
}

.h2,
h2 {
  font-size: var(--font40);
}

.h3,
h3 {
  font-size: var(--font32);
}

.h4,
h4 {
  font-size: var(--font24);
}

.h5,
h5 {
  font-size: var(--font20);
}

h6,
.h6 {
  font-size: var(--font18);
}

.p.big,
p.big {
  font-size: var(--font16);
}

.p,
p {
  font-size: var(--font14);
}

.span {
  font-size: var(--font12);
}

a {
  text-decoration: none;
}

.link {
  color: var(--primaryClr);
  text-decoration: none;
  transition: 0.3s color;
}

.link:hover {
  color: var(--primaryClr);
}
.link-hover-light-black:hover {
  color: var(--blackClr) !important;
}
.link-hover,
.link-hover-light-black,
.transition-03,
.redirection-arrow {
  transition: all 0.3s linear;
}
header .navbar-collapse a.active-link,
.link-hover:hover,
header .nav-link.active {
  color: var(--primaryClr) !important;
}

img {
  max-width: 100%;
  height: auto;
}

.space-big-pt-top {
  padding-top: var(--space-big);
}

.space-big-pb-bottom {
  padding-bottom: var(--space-big);
}

.space-big-py {
  padding-top: var(--space-big);
  padding-bottom: var(--space-big);
}

.space-mid-pt-top {
  padding-top: var(--space-mid);
}

.space-mid-pb-bottom {
  padding-bottom: var(--space-mid);
}

.space-mid-py {
  padding-top: var(--space-mid);
  padding-bottom: var(--space-mid);
}

.space-small-pt {
  padding-top: var(--space-small);
}

.space-small-pb {
  padding-bottom: var(--space-small);
}

.space-small-py {
  padding-top: var(--space-small);
  padding-bottom: var(--space-small);
}

.space-big-mt-top {
  margin-top: var(--space-big);
}

.space-big-mb-bottom {
  margin-bottom: var(--space-big);
}

.space-big-my {
  margin-top: var(--space-big);
  margin-bottom: var(--space-big);
}

.space-mid-mt-top {
  margin-top: var(--space-mid);
}

.space-mid-mb-bottom {
  margin-bottom: var(--space-mid);
}

.space-mid-my {
  margin-top: var(--space-mid);
  margin-bottom: var(--space-mid);
}

.space-small-mt {
  margin-top: var(--space-small);
}

.space-small-mb {
  margin-bottom: var(--space-small);
}

.space-small-my {
  margin-top: var(--space-small);
  margin-bottom: var(--space-small);
}

/* BUTTON STYLING */
.primary-btn {
  border-radius: 8px;
  min-width: 12rem;
  min-height: 45px;
  color: var(--whiteClr);
  font-size: var(--font14);
  font-weight: 600;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primaryClr);
  background-color: var(--primaryClr);
  cursor: pointer;
  background-size: 300% 100%;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  transition: 0.5s all;
}

.primary-btn:hover {
  background-color: var(--darkBlackClr);
  border-color: var(--darkBlackClr);
}

.transparent-btn {
  background-color: transparent;
  color: var(--primaryClr);
}

.transparent-btn:hover {
  background-color: var(--primaryClr);
  border-color: var(--primaryClr);
  color: var(--whiteClr);
}

.primary-btn:focus {
  outline: none;
}

.primary-btn:active {
  transform: scale(0.9);
}

.primary-btn .redirection-arrow {
  transition: transform 1s ease-in-out 0s;
  animation-duration: 1s;
  animation-name: redirection-ani;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.secondary-btn{
  background-color: var(--redClr);
  border-color: var(--redClr);
}
.secondary-btn:hover{
  background-color: transparent;
  border-color: var(--redClr);
  color: var(--redClr);
}

@keyframes redirection-ani {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(5px);
  }
}
/* BUTTON STYLING END */

.form-label {
  color: var(--blackClr);
  font-size: var(--font16);
  line-height: 140%; /* 140% */
  letter-spacing: 0.3px;
}

.form-control::placeholder {
  color: var(--blackClr);
}

.form-select,
.form-control {
  font-size: var(--font16);
  border-radius: 10px;
  padding: 11px 27px;
  min-height: 50px;
  border-color: var(--blackClr);
  background-color: var(--lightWhiteClr);
  transition: 0.3s all;
}

.form-select:hover,
.form-control:hover,
.form-select:focus,
.form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: var(--primaryClr);
  background-color: var(--stoicWhiteClr);
}

.form-group {
  margin-bottom: 16px;
}

label{
  color: var(--darkBlackClr);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 2px;
}
label span{
  color: var(--primaryClr);
}
.custom-input{
  border-color: #1E1E1E1A;
  color: var(--blackClr);
  min-height: 44px;
  padding: 5px 14px;
  font-weight: 500;
  border-radius: 10px;
}
.custom-input::placeholder{
  color: #1E1E1E66;
}

.form-textarea {
  height: 195px;
}
::-webkit-scrollbar {
  width: 7px;
  height: 5px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--primaryClr);
}
::-webkit-scrollbar-track {
  background-color: var(--darkBlackClr);
}
.w-max-content {
  width: max-content;
}
.h-inherit {
  height: inherit;
}
.flex-0-auto {
  flex: 0 0 auto;
}
.heading-label-text {
  color: var(--lazyLavenderClr);
  font-size: var(--font16);
  font-weight: 400;
  line-height: 150%; /* 150% */
}
.head-title {
  font-family: var(--fontSTSong);
  font-size: var(--font46);
  font-weight: 400;
  line-height: normal;
  background: var(--primarySecondGradiantClr);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.head-mid-title {
  color: var(--darkBlackClr);
  font-family: var(--fontSora);
  font-size: var(--font40);
  font-weight: 700;
  line-height: 125%; /* 125% */
  letter-spacing: -0.8px;
}
.head-small-title {
  color: var(--darkBlackClr);
  font-family: var(--fontSora);
  font-size: var(--font32);
  font-weight: 700;
  line-height: 131.25%; /* 131.25% */
}
ul {
  padding: 0;
}
ul li {
  list-style: none;
}
.line-height-0 {
  line-height: 0;
}
.section-xy-space {
  padding-left: var(--section-xy-space) !important;
  padding-right: var(--section-xy-space) !important;
}
.boder-radius-inherit {
  border-radius: inherit;
}
.primary-text {
  color: var(--primaryClr) !important;
}
.title-gradint{
  background: linear-gradient(180deg, #1E1E1E 0%, #24B282 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--fontSTSong);
  font-size: 4.6rem;
}
.cursor-pointer{
  cursor: pointer;
}
.bg-everlasting-ice-clr,
.bg-ice-clr.bg-everlasting-ice-clr{
  background-color: #24B2821A;
}
/* default css end */
/* home css start */
/* header css start */
header {
  min-height: var(--headerHeight);
  background-color: var(--whiteClr);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 0 15px transparent;
  border-bottom: 1px solid var(--unicornSilverClr);
  transition: 0.3s all;
}
header.scrolled {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.182);
}
header .navbar-collapse a {
  color: var(--darkBlackClr);
  font-size: var(--font16);
  line-height: 150%; /* 150% */
}
.auth-header-wrap a:not(:last-child) {
  padding-right: 24px;
}
.auth-header-wrap .sign-in-text {
  color: var(--primaryClr);
  font-size: var(--font14);
  line-height: 157.143%; /* 157.143% */
}
.profile-dropdown .dropdown-menu {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  min-width: 150px;
  width: 100%;
}
.profile-dropdown .dropdown-item {
  padding: 5px 10px;
  font-size: 14px;
  color: #1e1e1e;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.profile-dropdown .dropdown-item:hover {
  background-color: var(--primaryClr);
  color: var(--whiteClr);
}
.profile-dropdown .dropdown-toggle {
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: none;
  background-color: #ccc0;
}
.profile-dropdown .dropdown-toggle img {
  border-radius: inherit;
}
.profile-dropdown .dropdown-toggle::after {
  border-top: 4px solid var(--blackClr);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  margin-left: 8px;
}
/* header css end */
/* header-bar-section start */
.header-bar-section {
  background-color: var(--primaryClr);
  padding: 10px var(--section-xy-space);
}
.social-target-link-wrap ul li a {
  color: var(--whiteClr);
  font-size: var(--font14);
  line-height: 157.143%; /* 157.143% */
  grid-gap: 8px;
}
.social-target-link-wrap ul li:not(:last-child) a {
  padding-right: 20px;
}
.social-link-wrap ul li:not(:first-child) a {
  padding-left: 20px;
}
/* header-bar-section end */
/* hero-section start */
.hero-section {
  background: url(./../images/bg/hero-header-bg.png),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 72.51%, #fff 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 144rem;
}
.demo-hero-section {
  min-height: 115rem;
}
.hero-section h1 {
  max-width: 85rem;
}
.learn-more-btn-wrap {
  margin: 6.4rem 0 30px;
  grid-gap: 16px;
}
.weather-label-wrap {
  min-width: 16.8rem;
  min-height: 7.2rem;
  border-radius: 10px;
  border: 1px solid var(--antiFlashWhiteClr);
  background: var(--lightWhiteClr);
  box-shadow: 0px 11px 10px -8px var(--unicornSilverClr);
  backdrop-filter: blur(10px);
  padding: 8px;
}
.weather-round-wrap {
  width: 6px;
  height: 6px;
  border: 2px solid var(--darkBlackClr);
  border-radius: 100%;
}
.weather-label-icon-wrap {
  min-width: 5.6rem;
  min-height: 5.6rem;
  color: var(--primaryClr);
  border-radius: 8px;
  background-color: var(--alterClr);
}
.weather-content {
  padding-left: 12px;
}
.weather-content h5 {
  color: var(--darkBlackClr);
  font-size: var(--font14);
  line-height: 157.143%; /* 157.143% */
}
.weather-content h6 {
  color: var(--darkBlackClr);
  font-size: var(--font24);
  line-height: 141.667%; /* 141.667% */
}
/* hero-section end */
/* predictive-analytics-section start */
.predictive-analytics-section {
  margin-top: -24rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 72.51%, #fff 100%);
  padding: 5rem;
}
.predictive-analytics-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4.8rem;
  margin-top: 5rem;
}
.predictive-analytics-label-icon-wrap {
  min-width: 48px;
  min-height: 48px;
  color: var(--primaryClr);
  border-radius: 10px;
  background-color: var(--alterClr);
  border: 1px solid var(--primaryClr);
  margin-right: 24px;
  transition: all 0.3s;
}
.predictive-analytics-col:hover .predictive-analytics-label-icon-wrap {
  background-color: var(--whiteClr);
}
.predictive-analytics-col p {
  color: var(--darkBlackClr);
  font-size: var(--font16);
  line-height: 150%; /* 150% */
}
/* predictive-analytics-section end */
/* our-team-section start */
.our-team-section {
  background-color: var(--everlastingIceClr);
}
.our-team-card-grid {
  margin-top: 5.4rem;
  grid-gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
  display: flex !important;
  max-width: 1200px;
  margin: 5.4rem auto 0;
}
.our-team-card-col {
  border-radius: 20px;
  background-color: var(--whiteClr);
  padding: 16px;
  border: 1px solid transparent;
  width: calc(100% / 2);
}
.our-team-card-col:hover {
  border-color: var(--primaryClr);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.our-team-profile-pic-wrap {
  border-radius: 16px;
}
.our-team-content-wrap a {
  padding: 8px 0;
  border-bottom: 1px solid var(--unicornSilverTwoClr);
}
.our-team-content-wrap a h4 {
  color: var(--darkBlackClr);
  font-size: var(--font18);
  line-height: 155.556%; /* 155.556% */
}
.our-team-card-col:hover a h4 {
  color: var(--primaryClr);
}
.our-team-content-wrap a span {
  color: var(--lazyLavenderClr);
  font-size: var(--font12);
  line-height: 150%; /* 150% */
}
.our-team-content-wrap h6 {
  color: var(--lazyLavenderClr);
  font-size: var(--font12);
  line-height: 150%; /* 150% */
  padding-top: 8px;
}
.our-team-content-wrap h6 span {
  color: var(--darkBlackClr);
}
/* our-team-section end */
/* qualify-development-section start */
.qualify-development-section {
  background-image: url(./../images/bg/book-demo-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 50rem;
}
.qualify-development-section .head-mid-title {
  max-width: 75.1rem;
}
.qualify-development-section .button {
  grid-gap: 8px;
  margin-top: 5.4rem;
}
/* qualify-development-section end */
/* footer start */
footer {
  background-color: var(--darkBlackClr);
  padding: 5.4rem var(--section-xy-space) 3.6rem;
}
footer ul {
  margin-top: 4rem;
  max-width: 800px;
  gap: 12px 0;
}
footer ul li{
  width: calc(100% / 3);
}
footer ul li a {
  color: var(--whiteClr);
  font-size: var(--font16);
  line-height: 150%; /* 150% */
}
.footer-inner-section {
  padding: 28px 0;
  background-color: var(--chromaphobicBlackClr);
}
.footer-inner-content-wrap {
  grid-gap: 24px;
}
.footer-inner-section h6 {
  color: var(--stoicWhiteClr);
  font-size: var(--font14);
  line-height: 157.143%; /* 157.143% */
}
.footer-social-section {
  background-color: var(--darkBlackClr);
  padding: 16px var(--section-xy-space);
}
.footer-social-section h6 {
  color: var(--stoicWhiteClr);
  font-size: var(--font14);
  line-height: 157.143%; /* 157.143% */
}
.footer-line{
  border-top: 1px solid #FFFFFF1A;
  margin-top:  4rem;
}
/* footer end */
/* use-cases-section start */
.use-cases-section {
  background-color: var(--everlastingIceClr);
}
/* .auto-slide-cases-section h6 {
  max-width: 55.6rem;
} */
/* use-cases-section end */
/* auto slide imag section start */
.auto-slide-img-wrap {
  grid-gap: 10rem;
}
.auto-slide-img-wrap .select-block {
  width: calc(100% - var(--auto-slide-img-width));
  list-style: none;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.auto-slide-img-wrap .select-block li {
  cursor: default;
  height: auto;
  padding: 16px;
  border: 1px solid var(--unicornSilverTwoClr);
  background-color: var(--whiteClr);
  border-radius: 10px;
}
.auto-slide-img-wrap .select-block li.active {
  background-color: var(--whiteClr);
}
.auto-slide-img-wrap .select-block li.active h4 {
  color: var(--primaryClr);
}
.auto-slide-img-wrap .select-block li:not(:last-child) {
  margin-bottom: 20px;
}
.auto-slide-img-wrap .select-block li::before {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--primaryClr);
  position: absolute;
  left: 0;
  bottom: 0;
  display: none;
}
.auto-slide-img-wrap .select-block li.active::before {
  width: 100%;
  transition: all 8s linear;
  -webkit-transition: all 8s linear;
  -moz-transition: all 8s linear;
  -ms-transition: all 8s linear;
  -o-transition: all 8s linear;
}
.auto-slide-img-wrap .select-block li h4 {
  color: var(--darkBlackClr);
  font-family: var(--fontSora);
  font-size: var(--font18);
  line-height: 155.556%; /* 155.556% */
}
.auto-slide-img-wrap .select-block li p {
  word-break: break-word;
  color: var(--blackClr);
  font-size: var(--font15);
  line-height: 157.143%; /* 157.143% */
  font-family: var(--fontSora);
}
.auto-slide-img-wrap .content {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.auto-slide-img-wrap .select-block li.active .content {
  padding-top: 10px;
  visibility: visible;
  height: 90px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.auto-slide-img-wrap .bg-block img {
  max-width: 100%;
  border-radius: inherit;
}
/* musthave style */
.auto-slide-img-wrap .bg-container {
  width: var(--auto-slide-img-width);
}
.auto-slide-img-wrap .bg-container:before {
  content: "";
  display: block;
  padding-top: 127.5%;
  height: 0;
}
.auto-slide-img-wrap .bg-block {
  background-color: var(--everlastingIceClr);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  border-radius: 16px;
  transition: all 0.3s linear;
}
.auto-slide-img-wrap .bg-block.active {
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  transition: all 0.3s linear;
}
.auto-slide-img-wrap .select-block h3 {
  color: var(--darkBlackClr);
  font-family: var(--fontSora);
  font-size: var(--font24);
  line-height: 141.667%; /* 141.667% */
}
.auto-slide-img-wrap .select-block h6 {
  color: var(--lazyLavenderClr);
  font-size: var(--font16);
  line-height: 150%; /* 150% */
}
.product-services-section .auto-slide-img-wrap ul {
  margin-top: 3.6rem;
}
.product-services-section .auto-slide-img-wrap .select-block li.active {
  background-color: var(--everlastingIceClr);
}
.scrollspy-menu-list-wrap {
  padding: 3rem 0;
  grid-gap: 24px;
  top: var(--headerHeight);
  z-index: 9;
  background-color: var(--whiteClr);
}
.product-services-section .nav {
  padding: 3rem 0;
  grid-gap: 24px;
  top: var(--headerHeight);
  z-index: 9;
  background-color: var(--whiteClr);
}
.scrollspy-menu-name,
.product-services-section .nav-link {
  border-radius: 10px;
  border: 1px solid var(--unicornSilverClr);
  background: var(--whiteClr);
  padding: 8px 20px;
}
.scrollspy-menu-name h5,
.product-services-section .nav-link {
  color: var(--darkBlackClr);
  font-size: 16px;
  line-height: 157.143%; /* 157.143% */
}
.scrollspy-menu-name:hover,
.menu-item-active,
.scrollspy-menu-list-wrap .active,
.product-services-section .nav-pills .nav-link.active,
.product-services-section .nav-pills .show > .nav-link {
  background-color: var(--primaryClr);
}
.product-services-section .nav::-webkit-scrollbar {
  height: 0;
}
.scrollspy-menu-name:hover h5,
.menu-item-active h5,
.scrollspy-menu-list-wrap .active h5 {
  color: var(--whiteClr);
}
/* auto slide imag section end */

/* Timeline styling css */
.timeline__track {
  background: var(--primaryClr);
  background-clip: content-box;
  height: 100%;
  left: 30px;
  min-height: 9px;
  max-height: 100%;
  position: absolute;
  top: 0;
  width: 4px;
  z-index: 2;
  display: none;
}
.timeline__track::after {
  background: var(--blackClr);
  border-radius: 50%;
  bottom: 0;
  content: "";
  height: 12px;
  left: -4px;
  position: absolute;
  width: 12px;
}
.timeline__line {
  background: var(--darkBlackClr);
  height: 4px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  display: none;
}
.timeline__track {
  left: calc(var(--auto-slide-img-width) + 10px);
}
.timeline.is-init .timeline__line {
  transition: width 0.5s ease-in-out;
  width: 0;
  will-change: width;
}
.timeline.is-init .timeline__wrap {
  opacity: 0;
  transform: translateY(-70px);
  transition: transform 0.5s, opacity 0.2s;
  will-change: opacity, transform;
}

.timeline.is-loading .timeline__line,
.timeline.is-loading .timeline__wrap {
  transition: none;
}
.timeline .is-visible .timeline__line {
  width: 100%;
}
.timeline .is-visible .timeline__wrap {
  opacity: 1;
  transform: translateY(0);
}
/* Timeline styling end */
.slider {
  margin: 30px 50px;
}

.slick-slide {
  background: #3a8999;
  color: white;
  padding: 40px 0;
  font-size: 30px;
  font-family: "Arial", "Helvetica", sans-serif;
  text-align: center;
}

.slick-prev::before,
.slick-next::before {
  color: black;
}

.slick-slide:nth-child(odd) {
  background: #e84a69;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
/*loader css start*/
/* Center the loader */
.body-content-loader-overflow {
  overflow: hidden;
  height: 100vh;
}
.custom-loader {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-loader-round {
  width: 60px;
  height: 60px;
  border: 7px solid var(--primaryClr);
  border-radius: 50%;
  border-top: 7px solid var(--whiteClr);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0px;
    opacity: 1;
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

/*loader css end*/
/* privacy policy css start */
/* .inner-hero-section{
  background-image: url(./../images/bg/privacy-policy-banner.webp);
  width: 100%;
  height: 100%;
  min-height: 47.2rem;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
} */
 .inner-hero-section h2{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
 }
.scrollspy-section .list-group h4 {
  color: var(--darkBlackClr);
}
.scrollspy-section .list-group-item {
  color: var(--darkBlackClr);
  font-size: 14px;
  font-weight: 600;
  border-width: 1px;
  border-color: rgba(30, 30, 30, 0.1);
  border-radius: 5px;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 4px 12px;
}

.scrollspy-section .list-group-item:focus {
  background-color: transparent;
}

.scrollspy-section .list-group-item.active {
  color: var(--whiteClr);
  background-color: var(--primaryClr);
  border-color: var(--primaryClr);
}

.scrollspy-section .list-group-item + .list-group-item.active {
  border-top-width: 0;
}

.scrollspy-example::before{
  content: '';
  border-left: 1px solid rgba(30, 30, 30, 0.1);
  height: 100%;
  position: absolute;
  left: calc(8.33333333% / 2.5* -2);
}
.scrollspy-section .scrollspy-example h4 {
  font-family: var(--fontSora);
  color: var(--darkBlackClr);
  font-weight: 700;
  font-size: 24px;
}
.scrollspy-section .scrollspy-example h5 {
  font-family: var(--fontSora);
  color: var(--darkBlackClr);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}
.scrollspy-section .scrollspy-example h6 {
  font-family: var(--fontSora);
  color: var(--darkBlackClr);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0;
}
.scrollspy-section .scrollspy-example p{
   color: rgba(30, 30, 30, 0.5);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 0;
}
.scrollspy-section .scrollspy-example > div:not(:last-child){
  margin-bottom: 48px;
}
.scrollspy-section .scrollspy-example ul li{
  font-weight: 500;
  font-size: 16px;
  list-style: disc;
}
/* privacy policy css end */
.error{
  color:red;
  font-size: 14px;
}

/* delete account css start */
.delete-acc-logo-wrap{
  width: 10rem;
  height: 10rem;
  min-width: 60px;
  min-height: 60px;
  border-radius: 100%;
  background-color: #DC35451A;
}
.delete-acc-logo-wrap svg{
  max-width: 4rem;
  min-width: 30px;
  min-height: 30px;
}
.custom-modal .modal-dialog{
  max-width: 586px;
}
.custom-modal .modal-body{
  padding: 3.2rem;
}
.custom-modal .modal-content{
  border-radius: 20px;
}
.custom-modal .modal-content h4{
  color: var(--darkBlackClr);
  font-weight: 600;
  font-size: 24px;
}
.custom-modal .modal-content p{
  color: #1E1E1E99;
  font-weight: 400;
  font-size: 16px;
}
.custom-modal .form-check-label{
  border: 1px solid #1E1E1E1A;
  border-radius: 10px;
  padding: 12px 12px 12px 45px;
  margin-bottom: 21px;
}
.custom-modal .form-check-label h5{
  color: var(--darkBlackClr);
  font-weight: 500;
  font-size: 16px;
}
.custom-modal .form-check-label p{
  font-size: 14px;
}
.custom-modal .form-check-input:checked{
  background-color: var(--primaryClr);
  border-color: var(--primaryClr);
}
.custom-modal .form-check-input{
  width: 20px;
  height: 20px;
  top: 12px;
  left: 12px;
}
.custom-modal .form-check-input:checked + label{
  background-color: var(--everlastingIceClr);
  border-color: var(--primaryClr);
}
.form-check-wrap .error {
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
}
/* delete account css end */
/* custom progress steps css start */
.delete-account-section .custom-modal{
  max-width: 650px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 20px 5rem;
  border-radius: 3rem;
}
.progress-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 30px;
  max-width: 100%;
}
.progress-container::before {
  content: '';
  background-color: var(--line-border-empty);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  z-index: -1;
}

.progress-container .progress {
  background-color: var(--primaryClr);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 0%;
  z-index: -1;
  transition: 0.4s ease;
}

.progress-container .circle {
  background-color: #fff;
  color: #999;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--line-border-empty);
  transition: 0.4s ease;
}

.progress-container .circle.active {
  border-color: var(--primaryClr);
  color: var(--primaryClr);
}

.delete-account-footer .button:active {
  transform: scale(0.98);
}

.delete-account-footer .button:focus {
  outline: 0;
}

.delete-account-footer .button:disabled {
  background-color: var(--line-border-empty);
  border-color: var(--line-border-empty);
  color: #1E1E1E99;
  cursor: not-allowed;
}
/* custom progress steps css end */