.app_content {
  /* background-color: aquamarine; */
  padding-top: 87px;
}

.home_first_section {
  background-image: url(../assets/home/hero_section/hero_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  height: calc(100vh - 87px);
  position: relative;
  overflow: hidden;
  font-family: var(--normal-font-family);
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.box {
  width: 100px;
  height: 100px;
  background: transparent;
  border-top: 1px solid rgba(212, 212, 212, 0.4);
  border-left: 1px solid rgba(212, 212, 212, 0.4);
  filter: blur(0.5px);
  transition: all 1s ease;
}

.welcome_clara {
  display: flex;
  justify-content: center;
  align-content: center;
  border-radius: 40px;
  gap: 7px;
  width: max-content;
  margin: 0 auto;
  padding: 7px 20px;
  position: relative;
  background: white;
  border: 0.6px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(white, white),
    linear-gradient(91deg, #6367ff 23.65%, #0f9dfc 75.34%);
  box-shadow: 0px 1px 5.1px 0px rgba(0, 0, 0, 0.25),
    4px -3px 4px 0px rgba(180, 180, 180, 0.25) inset;
  align-items: center;
  margin-bottom: 12px;
}

.welcome_clara p {
  font-size: 16px;
  line-height: 33px;
}



.welcome_clara img {
  width: auto;
  height: 100%;
}

.scroll_next {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  bottom: 24px;
}

.scroll_next img {
  width: 30px;
  height: auto;
  opacity: 0;
  animation: scrollArrow 2s ease-in-out infinite;
}

.scroll_next img:nth-child(2) {
  animation-delay: 1s;
}

@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: translateY(-3px);
  }

  50% {
    opacity: 1;
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    transform: translateY(3px);
  }
}

.hero_heading h1 {
  color: var(--black);
  text-align: center;
  font-size: 80px;
  font-weight: var(--bold--font-weight);
  line-height: 110%;
}

.hero_heading h1:first-child {
  background: linear-gradient(91deg, #6367ff 23.65%, #0f9dfc 75.34%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero_heading p {
  text-align: center;
  font-size: 24px;
  line-height: 33px;
  margin-top: 40px;
}

.hero_button {
  display: flex;
  gap: 35px;
  align-items: center;
  margin: 0 auto;
  margin-top: 20px;
}

.hero_button a:first-child {
  background: linear-gradient(180deg, #6367ff 0%, #0f9dfc 100%);
  border: 1px solid var(--primary-color);
}

.hero_button a:first-child p {
  color: var(--white);
}

.hero_button a:first-child:hover {
  background: linear-gradient(91deg, #6367ff 23.65%, #0f9dfc 75.34%);
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid var(--primary-color);
}

.hero_button a {
  display: flex;
  padding: 19px 38px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  border: 1px solid var(--black);
  background: var(--white);
}

.hero_button a:hover {
  background: linear-gradient(91deg, #6367ff 23.65%, #0f9dfc 75.34%);
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid var(--primary-color);
}

.hero_button a p {
  color: var(--black);
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.12);
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

.hero_section {
  display: flex;
  flex-direction: column;
  z-index: 99;
  max-width: 807px;
  width: 100%;
  padding-bottom: 55px;
  gap: 20px;
}

@media (max-width: 1321px) {
  .app_content {
    padding-top: 81px;
    transition: all 0.3s ease;
  }
}

@media (max-width: 960px) {
  .hero_heading h1 {
    font-size: 42px;
    transition: all 0.3s ease;
  }

  .welcome_clara p {
    font-size: 10px;
    transition: all 0.3s ease;
    line-height: 100%;
  }

  .hero_heading p {
    font-size: 18px;
    transition: all 0.3s ease;
  }

  .hero_section {
    padding: 0 20px;
    transition: all 0.3s ease;
  }

  .hero_button a {
    padding: 14px 20px;
    transition: all 0.3s ease;
  }

  .hero_button a p {
    font-size: 16px;
    transition: all 0.3s ease;
  }
}

@media (max-width: 500px) {
  .home_first_section {
    height: calc(100vh - 120px);
    transition: all 0.3s ease;
  }

  .hero_heading h1 {
    font-size: 32px;
    transition: all 0.3s ease;
  }

  .hero_heading p {
    font-size: 16px;
    line-height: normal;
    transition: all 0.3s ease;
  }

  .hero_button {
    gap: 10px;
  }

  .scroll_next {
    bottom: 40px;
  }

  .scroll_next img {
    width: 20px;
  }

}

/* home about_section start */

.home_about_section {
  padding: 100px 0;
}

.home_about_section .home_about_heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.home_about_section .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 60px;
}

.home_about_section .home_about_description {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.home_about_section .home_about_description .content_text {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-start;
  max-width: 438px;
  width: 100%;
  position: relative;
  padding-left: 30px;
}

.home_about_section .home_about_description .content_img img {
  height: auto;
  width: 100%;
}

.home_about_section .home_about_description .content_img {
  max-width: 771px;
  width: 100%;
}

.scroll_line {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 6px;
  background-color: #ccc;
}

.content_text .about_tech p {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: top 0.5s ease-in, opacity 0.5s ease;
}

.home_about_description .highlight-bar {
  position: absolute;
  left: 10px;
  width: 6px;
  height: 120px;
  background: linear-gradient(0deg, #6367ff 23.65%, #0f9dfc 75.34%);
  /* transition: top 0.4s ease; */
  border-radius: 2px;
}

.content_text .about_tech.active p {
  max-height: 300px;
  opacity: 1;
}

.home_about_section .home_about_description .content_text .about_tech.active h4 {
  color: #109cfb;
  font-family: var(--heading-font-family);
  font-size: var(--content-heading-size);
}

.home_about_section .home_about_description .content_text .about_tech h4 {
  color: #888;
  font-family: var(--heading-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 32.1px;
  transition: top 0.4s ease;
}

.home_about_section .content_text .about_tech {
  position: relative;
  cursor: pointer;
  padding-left: 20px;

}

.home_about_section .content_text .about_tech h4 {
  color: #888;
  font-family: var(--heading-font-family, sans-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  /* transition: color 0.5s ease, transform 0.5s ease; */
  transform-origin: top;
  /* transform: translateY(0); */
}


.home_about_section .content_text .about_tech p {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 400;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: top 0.4s ease;
}



.home_about_section .content_text .about_tech.active h4 {
  color: #109cfb;
  transform: translateY(5px);
}

.home_about_section .content_text .about_tech.active p {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .home_about_section .home_about_description {
    flex-direction: column;
    gap: 40px;

  }

  .home_about_section .home_about_description .content_text {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .home_about_section {
    padding: 40px 0;
  }
}

/* home about_section end */
/* our products section start */
.our_products {
  background-image: url(../assets/home/images/products_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  background-size: cover;
  position: relative;
  overflow: hidden;
  font-family: var(--normal-font-family);
  padding: 72px 0px;
}

.our_products .product_card {
  display: flex;
  max-width: 395px;
  height: 350px;
  padding: 39px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: 25px;
  border: 1px solid rgba(2, 12, 39, 0.5);
  background: var(--white);
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our_products .product_card:hover {
  transform: translateY(-15px) scale(1);
  /* scale(1) keeps GSAP scale */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--primary-color);
}

.our_products .product_card h3 {
  color: #020c27;
  line-height: 33px;
  margin-bottom: 5px;
  text-align: left;
}

.our_products .product_card p {
  color: #020c27;
}

.our_products .product_card h6 {
  display: flex;
  justify-content: start;
  align-items: center;
  color: #6941c6;
  font-family: var(--normal-font-family);
  font-size: 18px;
  font-weight: var(--bold--font-weight);
  gap: 6px;
  margin-top: 15px;
}

.our_products .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 64px;
  transition: all 0.3s ease;
}

.our_products .our_products_heading {
  display: flex;
  max-width: 402px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 27px;
  width: 100%;
}

.our_products .our_products_heading h5 {
  color: var(--gray);
  font-family: var(--normal-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

.our_products .container>a:nth-child(3) h6 {
  color: #e53505;
}

.our_products .container>a:nth-child(3) h6 img {
  filter: invert(34%) sepia(93%) saturate(3000%) hue-rotate(1deg) brightness(95%) contrast(92%);
}

.our_products .container>a:nth-child(4) h6 {
  color: #00861d;
}

.our_products .container>a:nth-child(4) h6 img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(70%) saturate(1895%) hue-rotate(115deg) brightness(106%) contrast(101%);
}

.our_products .container>a:nth-child(5) h6 {
  color: #e09123;
}

.our_products .container>a:nth-child(5) h6 img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(62%) saturate(624%) hue-rotate(349deg) brightness(92%) contrast(90%);
}

.our_products .container>a:nth-child(6) h6 {
  color: #109cfb;
}

.our_products .container>a:nth-child(6) h6 img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(77%) saturate(4397%) hue-rotate(179deg) brightness(96%) contrast(105%);
}

@media (max-width: 1320px) {
  .our_products .container {
    gap: 20px 64px;
    transition: all 0.3s ease;
  }
}

@media (max-width: 960px) {
  .our_products .container {
    gap: 20px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: all 0.3s ease;
  }

  .our_products .product_card {
    padding: 22px 24px;
    gap: 15px;
    transition: all 0.3s ease;
    justify-content: center;
  }

  .our_products .product_card img {
    height: auto;
    width: 60px;
    transition: all 0.3s ease;
  }

  .our_products .product_card h6 img {
    height: 22px;
    transition: all 0.3s ease;
  }

  .our_products .product_card h3 {
    line-height: normal;
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }
}

@media (max-width: 600px) {
  .our_products .our_products_heading h5 {
    font-size: 14px;
    line-height: normal;
    transition: all 0.3s ease;
  }

  .our_products {
    padding: 40px 0;
    transition: all 0.3s ease;
  }

  .our_products .our_products_heading {
    gap: 12px;
    transition: all 0.3s ease;
    max-width: 100%;
  }

  .our_products .container {
    gap: 20px 30px;
    display: flex;

    transition: all 0.3s ease;
  }

  .our_products .product_card {
    max-width: 100%;
    height: 100%;
  }

  .our_products .product_card h6 {
    font-size: 14px;
  }
}

/* our products section end */
/* We Serve section start */
.we_serve_scrolling img {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.we_serve {
  display: flex;
  flex-direction: column;
  gap: 84px;
  padding: 148px 0 40px 0;
}

.we_serve .we_serve_heading {
  display: flex;
  max-width: 656px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

.we_serve .we_serve_heading p {
  color: var(--gray);
  font-size: 20px;
  line-height: 26px;
  max-width: 569px;
}

@media (max-width: 960px) {
  .we_serve .slick-dots {
    bottom: -20px;
  }
}

@media (max-width: 600px) {
  .we_serve .we_serve_heading p {
    text-align: center;
  }

  .we_serve .we_serve_heading {
    justify-content: center;
    align-items: center;
  }

  .we_serve {
    padding: 40px 0px;
    gap: 30px;
  }

  .we_serve .we_serve_heading p {
    font-size: 14px;
    line-height: normal;
  }
}

/* We Serve section end */
/* lets started section start */
.lets_started {
  background: linear-gradient(109deg, #deebf6 -1.04%, #f8e9fa 99.21%);
  padding: 75px 0;
}

.lets_started p {
  font-weight: 500;
  width: 100%;
  max-width: 470px;
}

.lets_started .content_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 31px;
  max-width: 787px;
  width: 100%;
}

.lets_started .content_btn {
  display: flex;
  gap: 11px;
  align-items: start;
}

.lets_started .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.lets_started .content_img img {
  transition: opacity 0.5s ease-in-out;
  height: auto;
  width: 100%;
}

.lets_started .content_img {
  height: 304px;
  width: auto;
}

@media (max-width: 1320px) {
  .lets_started .content_btn {
    flex-direction: column;
  }
}

@media (max-width: 960px) {
  .lets_started .container {
    flex-direction: column;
  }
}

/* lets started section end */
/* our clients section start */
.our_clients .client_scrolling .client_logo {
  display: flex;
  min-width: 206px;
  width: 100%;
  height: 108px;
  justify-content: center;
  align-items: center;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0px 2.274px 90.947px 0px rgba(0, 0, 0, 0.07),
    0px 0.508px 20.314px 0px rgba(0, 0, 0, 0.04);
  margin: 40px 17px;
}

.our_clients .client_scrolling .client_logo img {
  width: auto;
  height: auto;
}

.our_clients .container h2 {
  text-align: center;
  margin-bottom: 40px;
}

.our_clients .client_scrolling {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #fff;
  /* optional */
  padding: 10px 0;
}

.our_clients {
  padding: 89px 0;
}

.scrolling_content {
  display: inline-flex;
  animation: scroll-left 30s linear infinite;
}

.scrolling_content.reverse {
  animation: scroll-right 30s linear infinite;
}


/* @keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
} */

/* our clients section end */
/* insights section start */
.insight_card {
  display: flex;
  padding-bottom: 25px;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
  border-radius: 20px;
  border: 1px solid #d4d4d4;
  background: var(--white);
  width: max-content;
  max-width: 405px;
  width: 100%;
  height: 557px;
  overflow: hidden;
}

.insight_card:hover {
  border: 1px solid var(--primary-color);
  background: #F3F9FF;
}

.insight_card img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  /* 👈 smooth animation */
  transform: scale(1);
  /* initial state */
}

.insight_card:hover img {
  transform: scale(1.05);
  /* 👈 zoom on hover */
}


.insight_card .content_text {
  padding: 0 29px;
}

.insight_card .content_text h4 {
  color: var(--purple);
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: 600;
  line-height: 21.711px;
  margin-bottom: 13px;
}

.insight_card .content_text h1 {
  color: #101828;
  font-family: var(--heading-font-family);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 13px;
}

.insight_card .content_text p {
  color: var(--gray);
  font-size: 15px;
  line-height: 26.053px;
}

.insight_card .hight_insight {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  margin-top: 26px;
}

.insight_card .hight_insight span {
  text-align: center;
  font-family: var(--normal-font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 2px 10px;
  border-radius: 16px;
}

.insights .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.insights .insight_card_container {
  display: flex;
  align-items: center;
  gap: 72px 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.insights .insight_heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.insights .more_view_insights a {
  color: var(--black);
  text-align: center;
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 20px;
  border: 1.5px solid var(--black);
}

.insights .more_view_insights a:hover {
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
}

.insights .more_view_insights {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}

.insights {
  padding: 89px 0;
}

.allports_text {
  background-color: #f0f9ff;
  color: #026aa2;
}

.governor_text {
  background-color: #eef4ff;
  color: #3538cd;
}

.tia_text {
  background-color: #fff6ed;
  color: #c4320a;
}

.violet_text {
  background-color: #fdf2fa;
  color: #c11574;
}

.fungreen_text {
  background-color: #ecfdf3;
  color: #027a48;
}

.purple_text {
  background-color: #f9f5ff;
  color: #6941c6;
}

.rhino_text {
  background-color: #f8f9fc;
  color: #363f72;
}

@media (max-width: 1320px) {
  .insights .insight_card_container {
    gap: 24px 20px;
    justify-content: center;
  }
}

@media (max-width: 1200px) {
  .recent_posts .recent_content {
    flex-direction: column;
  }

  .recent_posts .shift_rtl .insight_card {
    flex-direction: row;
  }
}

@media (max-width: 500px) {
  .insight_card .hight_insight span {
    font-size: 12px;
  }
}

/* insights section end */
/* testimonials section start */
.testimonials {
  background-image: url(../assets/home/images/test_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  position: relative;
  overflow: hidden;
  font-family: var(--normal-font-family);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  text-align: center;
}

.testimonials .container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.testimonials .testimonials_card {
  display: flex;
  align-items: center;
  gap: 40px;
  font-family: var(--normal-font-family);
  margin-bottom: 36px;
}

.testimonials .testimonials_card .content_text {
  max-width: 915px;
  height: 320px;
  border-radius: 20px;
  border: 1px solid #6367ff;
  background: var(--white);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  padding: 37px 49px 51px 49px;
  text-align: left;
}

.testimonials .testimonials_card .content_text p {
  color: var(--gray);
  margin-bottom: 34px;
  margin-top: 24px;
}

.testimonials .testimonials_card .content_text h5 {
  color: var(--purple);
  font-size: var(--normal-font-size);
  font-weight: var(--bold--font-weight);
}

.testimonials .testimonials_card .content_text h6 {
  color: #000;
  font-size: 12px;
  font-weight: 600;
}

.testimonials .testimonials_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 31px;
}

.testimonials .testimonials_card .content_text img {
  height: auto;
  width: 100%;
  max-width: 55px;
}


@media (max-width: 1320px) {
  .testimonials {
    padding: 50px 0;
  }

  .testimonials .testimonials_card {
    gap: 20px;
  }

  .testimonials .testimonials_card .content_text p {
    margin-bottom: 17px;
    margin-top: 12px;
  }
}

@media (max-width: 960px) {
  .testimonials .testimonials_card {
    flex-direction: column;
    gap: 5px;
  }

  .testimonials .testimonials_card .content_img img {
    height: 180px;
    width: 180px;
    display: block;
  }

  .testimonials .container {
    gap: 30px;
  }

  .testimonials .testimonials_heading {
    gap: 6px;
  }

  .testimonials {
    padding: 26px 0;
  }

  .testimonials .testimonials_card .content_text img {
    max-width: 26px;
  }

  .testimonials .testimonials_card .content_text {
    height: auto;
    padding: 20px 30px;
  }

  .slick-dots {
    bottom: 10px;
  }

}

/* testimonials section end */
/* student case section start */
.stu_case .case_heading {
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 27px;
  max-width: 1106px;
  width: 100%;
  margin: 0 auto;
}

.stu_case .content {
  display: flex;
  justify-content: space-between;
  gap: 42px;
}

.stu_case .content_text {
  display: flex;
  gap: 10px;
}

.stu_case .container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.stu_case .content_box span {
  text-align: center;
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: 500;
  line-height: 20px;
  padding: 2px 10px;
  border-radius: 16px;
}

.stu_case .content_text .content_box {
  display: flex;
  justify-content: space-between;
}

.stu_case .counting {
  color: #888;
  font-family: var(--normal-font-family);
  font-size: var(--large-font-size);
  font-weight: 600;
  line-height: 24.871px;
  height: 37px;
  width: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}

.stu_case .counting.active {
  background-color: #111110;
  color: var(--white);
}

.stu_case .content_text .content_box .left_side {
  max-width: 504px;
  width: 100%;
}

.stu_case .clara_case {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.stu_case .content_box h4 {
  font-family: var(--heading-font-family);
  font-size: var(--section-h);
  font-weight: 500;
  line-height: 42px;
}

.stu_case .content_box h4 span {
  font-size: var(--section-h);
  background: linear-gradient(91deg, #6367ff 23.65%, #0f9dfc 75.34%);
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0;
  line-height: 100%;
  font-family: var(--heading-font-family);
}

.stu_case .content_box .left_side {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stu_case .content_box {
  display: none;
}

.stu_case .content_box.active {
  display: block;
}

.stu_case .content_area {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.stu_case .counter {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-direction: column;
  justify-content: center;
}

.stu_case .content_box p {
  max-width: 490px;
  width: 100%;
}

.stu_case .btn-primary {
  width: max-content;
}

.stu_case .right_side img {
  height: auto;
  width: 100%;
}

.stu_case .right_side {
  height: auto;
  width: 100%;
}

@media (max-width: 768px) {
  .stu_case .clara_case {
    flex-direction: column-reverse;
  }

  .stu_case .right_side img {
    height: auto;
    width: 45%;
  }

  .stu_case .content_box p {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .stu_case .content {
    gap: 10px;
  }

  .stu_case .content_box h4 {
    align-items: start;
  }

  .stu_case .clara_case {
    gap: 20px;
  }

  .stu_case .content_box h4,
  .stu_case .content_box h4 span {
    font-size: 22px;
    line-height: normal;
  }

  .stu_case .content_box .left_side {
    gap: 20px;
  }
}

/* student case section end */
/* clara advantage section start */
.clara_advantage .advantage_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clara_advantage .advantage_heading p {
  max-width: 642px;
  width: 100%;
}

.clara_advantage .container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.clara_advantage {
  padding: 89px 0 120px 0;
}

.card_view_container {
  display: flex;
  width: auto;
  gap: 27px;
}

.clara_advantage .hide_card {
  max-width: 130px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  padding-bottom: 120px;
  background-color: white;
  border-radius: 16px;
  border: 2px solid rgb(52, 137, 253);
  cursor: pointer;
  transition: left .2s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.clara_advantage .hide_card a {
  display: inline-block;
  color: hsl(0, 0%, 100%) !important;
  background: #109cfb !important;
  border-radius: 50%;
  margin-top: 30px;
  cursor: pointer;
  height: 34px;
  width: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidecad_back {
  transform: rotate(-180deg);
  background-color: transparent !important;
}

.hidecad_back img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(96%) saturate(3441%) hue-rotate(179deg) brightness(99%) contrast(99%);
}


.clara_advantage .hide_card:not(.expanded) h5 {
  transform: rotate(-90deg);
  color: rgb(72, 72, 72);
  font-family: var(--heading-font-family);
  font-size: 20px;
  font-weight: 600;
  width: 320px;
  margin: 0;
  white-space: nowrap;
}

.clara_advantage .hide_card h1 {
  color: var(--primary-color);
  font-family: var(--heading-font-family);
  font-size: 24px;
  font-weight: 500;
}

.clara_advantage .hide_card.expanded h5,
.clara_advantage .hide_card.expanded h1 {
  display: none;
}

.clara_advantage .hide_card.expanded {
  max-width: 850px;
  background: #f0f8ff;
  border-radius: 16px;
  background: rgb(226, 241, 255);
  box-shadow: rgba(0, 0, 0, 0) 0px 48px 13px 0px, rgba(0, 0, 0, 0.01) 0px 31px 12px 0px, rgba(0, 0, 0, 0.03) 0px 17px 10px 0px, rgba(0, 0, 0, 0.04) 0px 8px 8px 0px, rgba(0, 0, 0, 0.05) 0px 2px 4px 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 24px 24px 24px 60px;
  gap: 44px;
  border: 2px solid #f0f8ff;
}


.clara_advantage .hide_card.expanded:nth-child(2) {
  background: #EEE6FC;
}

.clara_advantage .hide_card.expanded:nth-child(3) {
  background: #FFF3E7;
}

.clara_advantage .hide_card.expanded:nth-child(4) {
  background: #E1EDFF;
}

.clara_advantage .extra_content {
  display: none;
}

.clara_advantage .hide_card.expanded .extra_content {
  display: flex;
  gap: 40px;
}

.clara_advantage .extra_content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.clara_advantage .hide_card.expanded .extra_content h6 {
  color: var(--purplish-blue, #3489FD);
  font-family: "Rethink Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.clara_advantage .hide_card.expanded .extra_content h4 {
  color: var(--black, #111110);
  font-family: "Rethink Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.clara_advantage .hide_card.expanded .extra_content .content_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  max-width: 312px;
  padding-top: 30px;
}


@media (max-width: 960px) {
  .clara_advantage .advantage_heading {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
}

/* clara advantage section end */
/* clara nation clients section start */
.clara_nation .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.clara_nation {
  padding: 89px 0 0 0;
}

.clara_nation .content_text {
  max-width: 642px;
  width: 100%;
}

.clara_nation .content_text h2 {
  max-width: 100%;
  width: 100%;
  margin-bottom: 26px;
}

.clara_nation .counting-box h2 {
  display: flex;
}

.clara_nation .clara_clients_count {
  display: flex;
  margin: 62px 0;
}

.clara_nation .clara_clients_count h2 {
  display: flex;
  padding: 0px 53px;
  align-items: center;
  gap: 2px;
  justify-content: center;
  font-size: 36px;
}

.clara_nation .clara_clients_count .counting-box {
  min-width: 211px;
}

.clara_nation .clara_clients_count .counting-box:first-child,
.clara_nation .clara_clients_count .counting-box:nth-child(2) {
  border-right: 1px solid var(--black);
}

.clara_nation .clara_clients_count .counting h2 {
  margin-bottom: 0;
}

.clara_nation .counting-box h4 {
  color: #000;
  text-align: center;
  font-family: var(--heading-font-family);
  font-size: var(--content-heading-size);
  font-weight: var(--light-font-weight);
  line-height: 33px;
}

.clara_nation .content_img img {
  height: auto;
  width: 100%;
}

.clara_nation .content_img {
  position: relative;
}

.clara_nation .map-image {
  width: 100%;
  height: auto;
}

.clara_nation .dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #EA3535;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
}

.clara_nation .dot::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 22px;
  height: 22px;
  background-color: #EA3535;
  opacity: 0;
  border-radius: 50%;
  animation: blink 1s infinite;
  z-index: 1;
}

.clara_nation .state-name {
  position: absolute;
  font-weight: 600;
  user-select: none;
  white-space: nowrap;
  border-radius: 4.384px;
  font-family: var(--normal-font-family);
  font-size: 13px;
  color: var(--black);
  border: 1px solid var(--primary-color);
  background: var(--white);
  display: inline-flex;
  padding: 2px 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  box-shadow: 0px 48px 13px 0px rgba(0, 0, 0, 0.00),
    0px 31px 12px 0px rgba(0, 0, 0, 0.01),
    0px 17px 10px 0px rgba(0, 0, 0, 0.03),
    0px 8px 8px 0px rgba(0, 0, 0, 0.04),
    0px 2px 4px 0px rgba(0, 0, 0, 0.05);
}

.clara_nation .left-side .state-name {
  right: 100%;
  transform: translateX(-10px);
}

.clara_nation .top-side .state-name {
  bottom: 100%;
  transform: translateY(-10px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
}

.clara_nation .right-side .state-name {
  left: 100%;
  transform: translateX(10px);
}

@keyframes blink {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 0.2;
  }
}

@media (max-width: 768px) {
  .clara_nation .container {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .clara_nation .content_text {
    max-width: 100%;
  }

  .clara_nation .clara_clients_count .counting h4 {
    font-size: 20px;
  }

  .nation_count {
    padding: 40px 0;
  }

  .clara_nation .clara_clients_count .counting-box {
    min-width: 100px;
  }

  .clara_nation .counting-box h4 {
    font-size: 14px;
  }

  .clara_nation .clara_clients_count h2 {
    font-size: 16px;
    margin-bottom: 0;
  }
}

@media (max-width: 500px) {
  .clara_nation .clara_clients_count .counting {
    padding: 0 38px;
  }

  .clara_nation .clara_clients_count {
    margin: 22px 0;
  }

  .clara_nation .dot {
    width: 8px;
    height: 8px;
  }

  .clara_nation .dot::before {
    width: 16px;
    height: 16px;
    top: -4px;
    left: -4px;
  }

  .clara_nation .state-name {
    font-size: 8px;
  }


}

/* clara nation clients section end */

/* about us page start */
.aboutus_first_section {
  background-image: url(../assets/about_us/banner_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  height: calc(87vh - 87px);
  position: relative;
  overflow: hidden;
  font-family: var(--normal-font-family);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

.aboutus_first_section .content_text {
  max-width: 737px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 45px;
}

.aboutus_first_section .content_text h2 {
  max-width: 748px;
  width: 100%;
}

.erp_clients {
  display: inline-flex;
  height: auto;
  padding: 40px 0;
  justify-content: center;
  align-items: flex-start;
  gap: 0px;
  border-radius: 25px;
  border: 1px solid #00b1ff;
  background: #fff;
  width: 100%;
  margin-top: -50%;
}

.erp_clients .client_numbers {
  display: flex;
  width: 100%;
  height: auto;
  padding: 0px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-right: 1.5px solid #e6e6e6;
}

.erp_clients .client_numbers:last-child {
  border: 0;
}

.erp_clients .client_numbers h4 {
  color: #1d1d1d;
  text-align: center;
  font-family: var(--normal-font-family);
  font-size: 22px;
  font-weight: var(--large-font-weight);
  line-height: 33px;
}

.changing-text-wrapper {
  position: relative;
  height: 57px;
  overflow: hidden;

}

.changing-text {
  position: absolute;
  width: 100%;
  height: 57px;
  line-height: 56px;
  top: 0;
  left: 0;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.changing-text-wrapper #aboutus_scrooling1,
.changing-text-wrapper #aboutus_scrooling2 {
  background: linear-gradient(91deg, #6367ff 23.65%, #0f9dfc 75.34%);
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-up {
  transform: translateY(-100%);
  opacity: 0;
}

.slide-in {
  transform: translateY(100%);
  opacity: 0;
}

.aboutto_scroll {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 960px) {
  .erp_clients .client_numbers h4 {
    font-size: 18px;
    line-height: normal;
  }

  .erp_clients {
    padding: 24px;
  }
}

/* company overview section start */
.company_overview {
  padding: 89px 0 20px 0;
}

.company_overview .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.company_overview .overview_heading h2 {
  font-size: var(--section-h);
  line-height: 42px;
  margin-bottom: 32px;
  margin-top: 16px;
}

.company_overview .overview_text p {
  color: var(--gray);
}

.company_overview .overview_text p:first-child {
  margin-bottom: 30px;
}

.company_overview .overview_text {
  max-width: 747px;
  width: 100%;
}

.company_overview .overview_heading {
  max-width: 371px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* company overview section end */

/* our mission section start */
.our_mission {
  padding: 45px 0 89px 0;
}

.our_mission .content .mission_box {
  background-image: url(../assets/about_us/images/card_bg_1.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  position: relative;
  overflow: hidden;
  height: 240px;
  max-width: 683px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  gap: 12px;
  padding: 22px 32px;
}

.our_mission .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.our_mission .content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.our_mission .content .vision_box {
  background-image: url(../assets/about_us/images/card_bg_2.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  position: relative;
  overflow: hidden;
  height: 240px;
  max-width: 683px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  gap: 12px;
  padding: 22px 32px;
}

.our_mission .content_img img {
  height: auto;
  width: 100%;
}

.our_mission .content img {
  height: auto;
  width: auto;
}

.our_mission .content h4 {
  color: var(--black);
  font-family: var(--heading-font-family);
  font-size: 20px;
  font-weight: var(--bold--font-weight);
}

/* our mission section end */
/* clara cero section start */
.ceo_card {
  display: flex;
  width: 100%;
  height: auto;
  padding: 0px 0px 0px 122px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: #e2f1ff;
  box-shadow: 0px 48px 13px 0px rgba(0, 0, 0, 0),
    0px 31px 12px 0px rgba(0, 0, 0, 0.01), 0px 17px 10px 0px rgba(0, 0, 0, 0.03),
    0px 8px 8px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
}

.ceo_card h1 {
  color: #000;
  font-family: var(--heading-font-family);
  font-size: 24px;
  font-weight: var(--light-font-weight);
  line-height: 34.833px;
}

.ceo_card h2 {
  font-size: 28px !important;
  line-height: 34.833px !important;
}

.ceo_card h4 {
  color: #000;
  font-family: var(--heading-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 34.833px;
}

.ceo_card .content_img img {
  height: 100%;
  width: auto;
  display: block;
}

.ceo_card .content_text {
  max-width: 616px;
  width: 100%;
}

.ceo_card p {
  font-size: 14px;
  margin-bottom: 40px;
  margin-top: 30px;
}

/* clara cero section end */

/* clara team section start */
.clara_team {
  padding: 89px 0;
}

.clara_team .team_card_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.clara_team .container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.clara_team .team_heading {
  display: flex;
  max-width: 909px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

.clara_team .team_heading a {
  margin-top: 10px;
}

.clara_team .container h2 {
  font-size: var(--section-h);
}

.clara_team .team_card_container .team_card {
  max-width: 278px;
  width: 100%;
  margin: 0 32px;
}

.clara_team .team_card_container .team_card img {
  margin-bottom: 22px;
  width: 276px;
  height: 292px;
}

.clara_team .team_card_container .team_card h4 {
  color: #101828;
  font-family: var(--normal-font-family);
  font-size: 18px;
  font-weight: 600;
  line-height: 29.664px;
}

.clara_team .team_card_container .team_card h5 {
  color: #6941c6;
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: 500;
  line-height: 27.686px;
}

/* clara team section end */
/* about us page end */

/* contact us page start */
.contact_our_team {
  background: linear-gradient(289deg, #deebf6 -1.04%, #f8e9fa 99.21%);
  height: calc(500px - 87px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: -1;
}

.vector_team_left {
  position: absolute;
  left: 0;
  top: 20px;
  z-index: -1;
}

.vector_team_right {
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: -1;
}

.contact_our_team h3 {
  margin-bottom: 16px;
}

.container_second {
  width: 100%;
  margin: 0 auto;
  max-width: var(--max-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -80px;
}

.container_second .contact_card {
  display: flex;
  max-width: 420px;
  width: 100%;
  height: auto;
  padding: 25px 30px 30px 30px;
  justify-content: start;
  align-items: start;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0px 48px 13px 0px rgba(0, 0, 0, 0),
    0px 31px 12px 0px rgba(0, 0, 0, 0.01), 0px 17px 10px 0px rgba(0, 0, 0, 0.03),
    0px 8px 8px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  gap: 28px;
  z-index: 99;
}

.container_second .contact_card h4 {
  color: var(--primary-color);
  font-family: var(--heading-font-family);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 7px;
}

@media (max-width: 1320px) {
  .container_second {
    padding: 0 20px;
    gap: 20px;
  }

  .container_second .contact_card {
    padding: 24px 20px;
    gap: 14px;
    max-width: 100%;
    height: 152px;
  }
}

@media (max-width: 960px) {
  .container_second {
    flex-direction: column;
  }

  .container_second .contact_card {
    height: auto;
  }

}

@media (max-width: 600px) {
  .contact_our_team {
    height: calc(400px - 87px);
  }

  .container_second .contact_card h4 {
    font-size: 18px;
  }

  .container_second .contact_card img {
    height: 28px;
  }

  .container_second .contact_card {
    height: auto;
    padding: 20px;
  }


}

/* regional offices section start */
.regional_offices {
  padding: 89px 0;
}

.regional_offices .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.regional_offices .office_info {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 610px;
  width: 100%;
}

.regional_offices .clara_offices_maping .office_location {
  display: flex;
  align-items: center;
  gap: 25px;
  align-self: stretch;
  max-width: 278px;
  width: 100%;
  padding: 16px 8px;
  border-radius: 8px;
  border: 1px solid var(--light-blue, #F0F8FF);
  background: #FFF;

  box-shadow: 0px 48px 13px 0px rgba(0, 0, 0, 0.00), 0px 31px 12px 0px rgba(0, 0, 0, 0.01),
    0px 17px 10px 0px rgba(0, 0, 0, 0.03), 0px 8px 8px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
}

.regional_offices .clara_offices_maping .office_location p {
  font-size: 20px;
  font-weight: 600;
}

.regional_offices .clara_offices_maping .office_location h6 {
  color: var(--gray);
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: 600;
}

.regional_offices .clara_offices_maping {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.regional_offices .office_info h2 {
  font-size: var(--section-h);
}

.regional_offices .office_info img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(9%) saturate(2%) hue-rotate(338deg) brightness(92%) contrast(88%);
}

.regional_offices .clara_offices_maping .office_location:hover img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(99%) saturate(2628%) hue-rotate(197deg) brightness(98%) contrast(104%);
}

.regional_offices .clara_offices_maping .office_location:hover p,
.regional_offices .clara_offices_maping .office_location:hover h6 {
  color: var(--primary-color);
}

.regional_offices .office_map {
  width: 100%;
  height: 560px;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
}

.regional_offices .office_map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 1320px) {
  .regional_offices .clara_offices_maping {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .regional_offices .office_map iframe {
    width: 100%;
    height: 200px;
  }

  .regional_offices .container {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }

  .regional_offices .office_info {
    max-width: 100%;
  }

  .regional_offices .office_map {
    width: 100%;
    height: 200px;
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  .regional_offices .clara_offices_maping {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .regional_offices {
    padding: 40px 0 70px 0;
  }
}

@media (max-width: 600px) {
  .regional_offices .office_info {
    gap: 34px;
  }

  .regional_offices .clara_offices_maping .office_location p {
    font-size: 14px;
  }

  .regional_offices .office_info img {
    height: 30px;
  }

  .regional_offices .clara_offices_maping {
    gap: 20px;
  }

  .regional_offices .clara_offices_maping .office_location {
    gap: 10px;
  }

  .regional_offices .clara_offices_maping .office_location {
    max-width: 100%;
  }
}

@media (max-width: 425px) {
  .regional_offices .clara_offices_maping {
    grid-template-columns: 1fr;
  }

}

/* regional offices section end */

/* global offices section start */
.global_offices {
  padding: 0px 0px 89px 0;
}

.global_offices .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 42px;
  flex-direction: column;
}

.global_offices .global_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 47px;
  width: 100%;
}

.global_offices .global_container .global_maping {
  display: flex;
  padding: 58px 32px 35px 32px;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  border-radius: 16px;
  border: 1px solid var(--primary-color);
  background: var(--white);
  width: 100%;
}

.global_offices .global_container .global_maping p {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}

.global_offices .global_container .global_maping h6 {
  color: var(--gray);
  text-align: center;
  font-family: var(--heading-font-family);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.global_offices .global_container .global_maping h5 {
  color: #8A8A8A;
  text-align: center;
  font-family: var(--normal-font-family);
  font-size: 18px;
  font-weight: 500;
}

.global_offices .global_container .global_maping h3 {
  width: 74px;
  background: linear-gradient(270deg, #0F9DFC 2.7%, #7FCBFE 50.95%, #0F9DFC 99.32%);
  height: 7px;
  border-radius: 12px;
}

.global_offices .global_container .global_maping img {
  height: 70px;
  width: 70px;
}



@media (max-width: 960px) {
  .global_offices .global_container .global_maping {
    width: 46%;
    padding: 30px;
  }

  .global_offices .global_container {
    flex-wrap: wrap;
  }

  .global_offices .global_container {
    gap: 30px;
  }
}

@media (max-width: 600px) {


  .global_offices .global_container .global_maping p {
    font-size: 14px;
  }

  .global_offices .global_container {
    gap: 20px;
  }

  .global_offices {
    padding-bottom: 60px;
  }

  .global_offices .global_container .global_maping h5 {
    font-size: 16px;
  }
}

@media (max-width: 425px) {
  .global_offices .global_container {
    gap: 14px;
  }

  .global_offices .global_container .global_maping {
    gap: 5px;
  }

  .global_offices .global_container .global_maping {
    width: 100%;
  }

}

/* global offices section end */
/* lets conversation form section start */
.lets_conversation {
  background: #ecf6ff;
  padding: 89px 0 120px 0;
}

.lets_conversation .content_top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  justify-content: space-between;
}

.lets_conversation .conversation_heading p {
  margin-bottom: 16px;
}

.lets_conversation .team_media {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lets_conversation .conversation_heading h2 {
  font-size: var(--section-h);
  margin-bottom: 20px;
}

.lets_conversation .container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 38px;
}

.contact-form {
  width: 100%;
}

.form-group {
  display: flex;
  gap: 45px;
  margin-bottom: 20px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-field label {
  margin-bottom: 5px;
  font-weight: 500;
}

.submit-btn {
  margin-top: 40px;
}

@media (max-width: 1000px) {
  .w-50 {
    width: 48%;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 960px) {
  .lets_conversation {
    padding: 35px 0;
  }
}



@media (max-width: 600px) {
  .form-group {
    flex-direction: column;
    gap: 20px;
  }

  .submit-btn {
    margin: 0;
  }

  .w-50 {
    width: 100% !important;
  }

  .lets_conversation .content_top {
    flex-direction: column;
  }

}

/* lets conversation form section end */
/* contact us page end */
/* careers page start */
.careers_first_section {
  background-image: url(../assets/careers/banner.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 572px;
  position: relative;
  overflow: hidden;
  font-family: var(--normal-font-family);
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}

.careers_first_section .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 36px;
}

.careers_first_section .container h2 {
  color: var(--white);
}

.careers_first_section .container p {
  font-size: 20px;
  color: var(--white);
}

@media (max-width: 600px) {
  .careers_first_section .container p {
    font-size: 15px;
    transition: all 0.3s ease;
  }
}

/* clara job opportunities section start */
.clara_job_opportunities .container h2 {
  font-size: var(--section-h);
  margin-bottom: 14px;
}

.clara_job_opportunities {
  padding: 76px 0 105px 0;
}

.clara_job_opportunities .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  flex-direction: column;
}

.clara_job_opportunities .job_heading {
  display: flex;
  justify-content: start;
  flex-direction: column;
}

.job_card_container .job_card {
  max-width: 294px;
  height: 290px;
  width: 100%;
  border-radius: 15px;
  border: 1px solid var(--primary-color);
  background: var(--white);
  box-shadow: 0px 2.851px 5.703px 0px rgba(79, 94, 113, 0.1),
    0px 1.426px 2.851px 0px rgba(79, 94, 113, 0.11),
    0px 0px 1.426px 0px rgba(79, 94, 113, 0.12);
  padding: 28px 38px 24px 34px;
  transition: all 0.3s ease-in-out;
}

.job_card_container .job_card:hover {
  transform: translateY(-15px);

  box-shadow: 0px 48px 13px 0px rgba(0, 0, 0, 0),
    0px 31px 12px 0px rgba(0, 0, 0, 0.01), 0px 17px 10px 0px rgba(0, 0, 0, 0.03),
    0px 8px 8px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
}

.job_card_container .job_card h4 {
  color: var(--primary-color);
  font-family: var(--normal-font-family);
  font-size: var(--large-font-size);
  font-weight: var(--bold--font-weight);
  line-height: 136.618%;
}

.job_card_container .job_card h4::after {
  content: "";
  display: block;
  width: 42px;
  height: 0.5px;
  background: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.job_card_container .job_card .job_info {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.job_card_container .job_card .job_info p {
  color: var(--gray);
}

.job_card_container .job_card .job_eligibility {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 5px;
  flex-direction: column;
  margin-bottom: 30px;
}

.job_card_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 960px) {
  .job_card_container {
    justify-content: center;
    transition: all 0.3s ease;
  }

  .clara_job_opportunities .job_heading {
    align-items: center;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
  }
}

@media (max-width: 600px) {
  .clara_job_opportunities {
    padding: 30px 0;
    transition: all 0.3s ease;
  }

  .job_card_container .job_card {
    max-width: 100%;
    padding: 24px;
    height: auto;
    transition: all 0.3s ease;
  }
}

/* clara job opportunities section end */

/* why join clara section start  */

.why_join_clara .join_clara_card {
  background: #F0FFF2;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0px 48px 13px 0px rgba(0, 0, 0, 0),
    0px 31px 12px 0px rgba(0, 0, 0, 0.01), 0px 17px 10px 0px rgba(0, 0, 0, 0.03),
    0px 8px 8px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-left: 108px;
}

.why_join_clara .container h2 {
  font-size: var(--section-h);
}

.why_join_clara .join_clara_card .content_text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
  padding-top: 83px;
  width: 100%;
}

.why_join_clara .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: start;
}

.why_join_conatainer {
  width: 100%;
}

.why_join_clara .join_clara_card .content_text p {
  max-width: 496px;
  width: 100%;
}

.join_clara_card .join_clara_vector {
  height: 100%;
  width: auto;
}

.join_clara_card .join_clara_vector img {
  filter: brightness(0) saturate(100%) invert(91%) sepia(10%) saturate(1003%) hue-rotate(69deg) brightness(102%) contrast(94%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.why_join_clara .join_clara_card:nth-child(2) {
  background: #F0F8FF;
}

.why_join_clara .join_clara_card:nth-child(2) .join_clara_vector img {
  filter: brightness(0) saturate(100%) invert(97%) sepia(87%) saturate(1301%) hue-rotate(174deg) brightness(100%) contrast(102%);
}

.why_join_clara .join_clara_card:nth-child(3) {
  background: #FBF4FD;
}

.why_join_clara .join_clara_card:nth-child(3) .join_clara_vector img {
  filter: brightness(0) saturate(100%) invert(92%) sepia(51%) saturate(5418%) hue-rotate(188deg) brightness(103%) contrast(96%);
}

.why_join_clara .join_clara_card:nth-child(4) {
  background: #FCF5EC;
}

.why_join_clara .join_clara_card:nth-child(4) .join_clara_vector img {
  filter: brightness(0) saturate(100%) invert(97%) sepia(38%) saturate(6295%) hue-rotate(298deg) brightness(113%) contrast(113%);
}

.why_join_conatainer .slick-dots {
  bottom: 20px;
}

@media (max-width: 1200px) {
  .why_join_clara .join_clara_card {
    height: 100%;
    padding-left: 30px;
  }

  .why_join_clara .join_clara_card .content_img {
    width: 100%;
    display: flex;
    justify-content: end;
  }

  .why_join_clara .join_clara_card .content_img img {
    height: 100%;
    max-height: 350px;
  }

  .why_join_clara .join_clara_card .content_text {
    padding-top: 30px;
  }
}

@media (max-width: 960px) {
  .why_join_clara .join_clara_card {
    flex-direction: column;
    gap: 14px;
  }

  .why_join_clara .container {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .why_join_clara .join_clara_card .content_img img {
    max-height: 200px;
  }

  .join_clara_card .join_clara_vector {
    z-index: -1;
  }

  .why_join_clara .join_clara_card .content_text {
    padding-right: 20px;
  }
}

/* why join clara section end  */

/* clara life section start */
.clara_life {
  padding: 89px 0;
}

.clara_life .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.clara_life .container h2 {
  font-size: var(--section-h);
}

.clara_life .content_text {
  max-width: 608px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}

.clara_life .clara_life_phots img {
  height: auto;
  width: 100%;
}

.clara_life_phots {
  width: 100%;
  max-width: 571px;
}

@media (max-width: 1320px) {
  .clara_life_phots {
    width: 100%;
    max-width: 450px;
  }
}

@media (max-width: 960px) {
  .clara_life .container {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  .clara_life .content_text {
    max-width: 100%;
  }

  .clara_life {
    padding: 30px 0;
  }

  .clara_life_phots {
    width: 100%;
    max-width: 100%;
  }

  .clara_life p {
    text-align: justify;
  }
}

/* clara life section end */

/* careers page end */
/* careers form page start */
.career_form_first {
  background: linear-gradient(289deg, #deebf6 -1.04%, #f8e9fa 99.21%);
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  font-family: var(--normal-font-family);
  display: flex;
  justify-content: center;
  align-items: center;
}

.career_form_first .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.career_form_first .container h2 {
  max-width: 527px;
  width: 100%;
}

.career_form_first .content_text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 737px;
  width: 100%;
}

.career_form_first .content_img img {
  height: auto;
  width: 100%;
  display: block;
}

.career_form_first .content_img {
  width: auto;
  height: auto;
  padding-top: 32px;
}

.career_form_first .careers_rlt_vector {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

/* submit resume section start */
.submit_resume {
  padding: 89px 0;
}

.submit_resume .container h2 {
  font-size: var(--section-h);
  margin-bottom: 14px;
}

.submit_resume .container {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.career_form {
  width: 100%;
}

.career_form input,
.career_form select {
  background: #f3f3f3;
}

/* submit resume section end */
.careers_form .clara_job_opportunities {
  background: #ecf6ff;
}

@media (max-width: 600px) {
  .career_form_first .container {
    flex-direction: column;
  }

  .career_form_first .content_img img {
    width: 60%;
  }

  .career_form_first .content_img {
    padding: 0;
    display: flex;
    justify-content: center;
    align-content: center;
  }

  .career_form_first .content_text {
    max-width: 100%;
    gap: 14px;
    padding-top: 40px;
  }

  .submit_resume {
    padding: 35px 0;
  }

  .submit_resume .container {
    gap: 30px;
  }
}

/* careers form page end */

/* insights page start  */
.insight_first_section {
  background: linear-gradient(289deg, #deebf6 -1.04%, #f8e9fa 99.21%);
  height: calc(380px - 87px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: -1;
}

.insight_first_section h4 {
  color: var(--black, #111110);
  font-family: var(--heading-font-family);
  font-size: 24px;
  font-weight: 500;
  line-height: 55px;
}

/* recent posts section start */
.recent_posts {
  padding: 74px 0 0px 0;
}

.recent_posts .insight_card .card_move,
.ins_page .insight_card .card_move {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.insight_card .card_move:hover img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(46%) saturate(2253%) hue-rotate(198deg) brightness(98%) contrast(103%);
  transform: rotate(45deg);
}

.insight_card .card_move:hover h1 {
  color: var(--primary-color);
}

.insight_card .card_move img {
  width: 100%;
  height: 24px;
  max-width: 24px;
  transition: all 0.3s ease-in-out;
}

.recent_posts .insight_card,
.ins_page .insight_card {
  border: 0;
  gap: 25px;
  height: auto;
  padding: 0;
}

.recent_posts .insight_card,
.ins_page .insight_card {
  background-color: var(--white);
}

.ins_page .insight_card .content_text {
  padding: 0;
}

.recent_posts .insight_card .content_text {
  padding: 0;
}

.post_heading p {
  color: var(--black);
  font-family: var(--heading-font-family);
  font-size: var(--content-heading-size);
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 32px;
}

.recent_posts .recent_content {
  display: flex;
  align-items: flex-start;
  gap: 55px;
  align-self: stretch;
}

.recent_posts .shift_rtl .insight_card {
  flex-direction: row;
  max-width: 860px;
  width: 100%;
  gap: 24px;
}

.recent_posts .shift_rtl .insight_card img {
  width: 100%;
  height: auto;
  max-width: 320px;
}

.recent_posts .shift_rtl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 44px;
}

.ins_page .insights .container {
  gap: 55px;
}

.insights .tag_slider span {
  text-align: center;
  font-family: var(--normal-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding: 10px 22px;
  border-radius: 40px;
  color: var(--gray);
  background: #f3f3f3;
  width: max-content !important;
}

.insights .tag_slider {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  gap: 12px;
  white-space: nowrap;
  flex: 1;
}

.tag_slider_wrapper {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.insights .arrow {
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 40%,
      rgba(255, 255, 255, 1) 60%,
      rgba(255, 255, 255, 0) 100%) !important;


  padding: 0 20px 0 00px;
}

.insights .arrow:last-child {
  padding: 0 0 0 20px;
}

.insights .arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.left_tag_arrow {
  transform: rotate(180deg);
}

@media (max-width: 1320px) {
  .recent_posts .shift_rtl .insight_card {
    flex-direction: column;
  }

  .recent_posts .shift_rtl {
    flex-direction: row;
  }
}

@media (max-width: 1200px) {
  .recent_posts .shift_rtl .insight_card {
    flex-direction: row;
  }

  .recent_posts .shift_rtl {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .recent_posts .shift_rtl .insight_card {
    flex-direction: column;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .insight_first_section h4 {
    line-height: normal;
    font-size: 16px;
    padding-top: 10px;
  }

  .vector_team_left img {
    height: 60px;
    width: 100%;
  }

  .vector_team_right img {
    height: 60px;
    width: 100%;
  }

  .insight_card .content_text h1 {
    font-size: 18px;
    line-height: normal;
  }

  .insights .tag_slider span {
    font-size: 12px;
    margin: 0;
    padding: 7px 12px;
  }

  .insights .arrow {
    padding: 0 00px;
  }
}

/* recent posts section end */

/* insights page end  */
/* blogs page start */
.blogs_bg_section {
  width: 100%;
  height: calc(500px - 87px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: end;
  font-family: var(----normal-font-family);
  z-index: -1;
  padding-bottom: 60px;
  padding-left: 90px;
}

.blogs_text_section p {
  color: var(--white);
  font-family: var(--heading-font-family);
  font-size: var(--section-h);
  font-weight: 600;
  letter-spacing: -0.72px;
  opacity: 0;
  transform: translateX(-100%);
  animation: slideIn 1s forwards;
}

.blogs_text_section {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-left: 6px solid var(--white);
  overflow: hidden;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.blog_part {
  padding: 72px 0 100px 0;
}

.blog_part .blog_card_container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.blog_part .blog_card_container .blog_card {
  display: flex;
  height: 190px;
  padding: 28px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid rgba(101, 104, 250, 0.2);
  background: #f3edfd;
}

.blog_part .blog_card_container .blog_card:hover {
  border: 1px solid rgba(16, 156, 251, 0.40);
}

.blog_card_container a:nth-child(even) .blog_card {
  background: #e2f1ff;
}


.blog_part .blog_card h4 {
  color: #111110;
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.36px;
}

.blog_part .blog_tittle .heading {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.blog_part .blog_tittle .heading h2 {
  font-size: 24px;
  line-height: 100%;
}

.blog_part .blog_tittle {
  display: flex;
  max-width: 320px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding-top: 92px;
}

.blog_part .blog_card .more_btn {
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: stretch;
}

.blog_part .blog_card .more_btn p {
  color: var(--primary-color);
  font-weight: var(--bold--font-weight);
}

.blog_part .full_blog {
  max-width: 925px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 36px;
  align-items: start;
  flex-direction: column;
}

.blog_part .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.blog_part .full_blog .blog_head h2 {
  font-size: 24px;
  line-height: 100%;
}

.blog_part .full_blog .blog_head {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 28px;
  flex-direction: column;
  width: 100%;
}

.blog_part .full_blog .blog_head_btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #b8b8b8;
}

.blog_part .full_blog .blog_head_btm p {
  color: var(--primary-color);
}

.blog_part .full_blog .blog_head_btm .social_media {
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog_part .full_blog .blogs_content_text p {
  color: var(--gray);
  /* margin-bottom: 16px; */
  text-align: justify;
}

.blog_part .full_blog .blogs_content_text h5 {
  color: var(--black);
  font-family: var(--normal-font-family);
  font-size: var(--large-font-size);
  font-weight: var(--bold--font-weight);
  letter-spacing: -0.36px;
  padding-bottom: 5px;
}

.blog_part .full_blog .blogs_content_text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog_part .full_blog .blogs_content_img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1320px) {
  .blog_part .blog_tittle {
    max-width: 250px;
  }

  .blogs_bg_section {
    padding-left: 30px;
  }
}

@media (max-width: 750px) {
  .blog_part .container {
    flex-direction: column;
    gap: 30px;
  }

  .blogs_text_section p {
    font-size: 20px;
  }

  .blogs_bg_section {
    padding-left: 18px;
    padding-bottom: 14px;
  }

  .blogs_text_section {
    border-left: 2px solid var(--white);
  }

  .blog_part {
    padding: 25px 0;
  }

  .blog_part .full_blog .blog_head h2 {
    font-size: 18px;
  }

  .blog_part .full_blog {
    gap: 20px;
  }

  .blog_part .blog_tittle {
    padding-top: 0;
  }

  .blog_part .blog_card_container .blog_card {
    max-width: 100%;
    height: auto;
    padding: 14px 18px;
    gap: 6px;
  }


  .blog_part .blog_tittle {
    max-width: 100%;
  }

  .blog_part .blog_card h4 {
    font-size: 16px;
  }
}

/* blogs page end */

/* partnership page start  */
.partnership_banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #f8e9fa, #deebf6);
  position: relative;
  z-index: -1;
}

.partnership_banner .container {
  width: 100%;
  z-index: 99;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-left: 40px;
}

.partnership_banner .content_text {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: start;
  width: 100%;
  max-width: 90%;
}

.partnership_banner img {
  height: auto;
  width: 100%;
  max-width: 852px;
  display: block;
  z-index: 99;
}

.partnership_banner .content_text p {
  max-width: 660px;
}

.partnership_banner .banner_vecter {
  position: absolute;
  bottom: 10px;
  right: 0;
}

@media (max-width: 1262px) {
  .partnership_banner .content_text h2 {
    font-size: 36px;
    line-height: 110%;
  }

  .soft_conatiner .container h2 {
    font-size: 36px;
  }

  .soft_conatiner .content_text {
    gap: 15px;
  }

}

@media (max-width: 960px) {
  .partnership_banner .content_text h2 {
    font-size: 28px;
  }

  .soft_conatiner .container h2 {
    font-size: 28px;
  }

  .partnership_banner .content_text {
    gap: 25px;
  }


}

/* Channel partner section start */
.Channel_partner {
  padding: 89px 0 116px 0;
}

.flex_content .content_text {
  max-width: 699px;
}

.Channel_partner .partner_collab {
  max-width: 539px;
  height: 380px;
  width: 100%;
}

@media (max-width: 1200px) {
  .Channel_partner .partner_collab {
    max-width: 400px;
    height: auto;
    width: 100%;
  }
}

@media (max-width: 960px) {
  .Channel_partner .flex_content {
    flex-direction: column;
  }

  .flex_content .content_text {
    max-width: 100%;
  }

  .Channel_partner .partner_collab {
    max-width: 490px;
    height: auto;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .Channel_partner .partner_collab {
    max-width: 100%;
    height: auto;
    width: 100%;
  }

  .Channel_partner {
    padding: 39px 0 60px 0;
  }
}

/* Channel partner section end */

/* collab section start */
.clara_collaborate {
  padding-bottom: 116px;
  padding-top: 120px;
}

.clara_collaborate .collab_heading {
  max-width: 404px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.clara_collaborate .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 61px 57px;
}

.clara_collaborate p {
  color: var(--gray);
}

.clara_collaborate .collab_heading h2 {
  font-size: var(--section-h);
  max-width: 100%;
}

.clara_collaborate .collab_heading p {
  max-width: 327px;
}

.clara_collaborate .collab_card {
  width: 400px;
  height: 210px;
  border-radius: 16px;
  background: #f8f3ff;
  box-shadow: 0px 48px 13px 0px rgba(0, 0, 0, 0),
    0px 31px 12px 0px rgba(0, 0, 0, 0.01), 0px 17px 10px 0px rgba(0, 0, 0, 0.03),
    0px 8px 8px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.clara_collaborate .collab_card:hover {
  transform: translateY(-15px);
}

.clara_collaborate .container>a:nth-child(3) .collab_card {
  background: #fef2ef;
}

.clara_collaborate .container>a:nth-child(4) .collab_card {
  background: #edf0fc;
}

.clara_collaborate .container>a:nth-child(5) .collab_card {
  background: #fff3e8;
}

.clara_collaborate .container>a:nth-child(6) .collab_card {
  background: #e8f4ff;
}

.clara_collaborate .collab_card .card_front {
  max-width: 318px;
  display: flex;
  gap: 21px;
  flex-direction: column;
}

.clara_collaborate .collab_card .card_front .content_head {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 32px;
}

.clara_collaborate .collab_card h3 {
  color: var(--black);
  text-align: start;
}

@media (max-width: 1320px) {
  .clara_collaborate .container {
    justify-content: center;
  }

}

@media (max-width: 900px) {
  .clara_collaborate .container {
    gap: 30px;
  }

}

@media (max-width: 870px) {
  .clara_collaborate .collab_heading {
    max-width: 100%;
  }

  .clara_collaborate .collab_card {
    max-width: 100%;
    height: auto;
    padding: 30px 20px 30px 40px;
    width: 100%;
    justify-content: start;
  }

  .clara_collaborate .container a {
    width: 100%;
  }

  .clara_collaborate .collab_card .card_front {
    max-width: 100%;
  }

  .clara_collaborate .collab_heading p {
    max-width: 100%;
  }

}

@media (max-width: 500px) {
  .clara_collaborate .collab_card .card_front .content_head {
    gap: 18px;
  }

  .clara_collaborate .collab_card {
    padding: 30px;
  }

  .clara_collaborate .collab_card h3 {
    font-size: 16px;
    line-height: normal;
  }

  .clara_collaborate {
    padding-bottom: 50px;
  }

}

/* collab section end */
/* explore servies section start */
.explore_servies {
  background: linear-gradient(109deg, #deebf6 -1.04%, #f8e9fa 99.21%);
  padding: 94px 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.explore_servies .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.explore_servies .product_card {
  display: flex;
  max-width: 280px;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border-radius: 25px;
  border: 1px solid #0084bf;
  background: #fff;
  width: 100%;
  margin: 0 auto;
}

.explore_servies .product_card h3 {
  color: #020c27;
}

.explore_servies .product_card p {
  font-size: 14px;
}

.explore_servies .product_card h6 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6941c6;
}

.explore_servies .slick-dots {
  bottom: -65px;
}

.purpule_filter {
  filter: brightness(0) saturate(100%) invert(28%) sepia(16%) saturate(7459%) hue-rotate(242deg) brightness(91%) contrast(92%);
}

.red_filter {
  filter: brightness(0) saturate(100%) invert(23%) sepia(74%) saturate(2518%) hue-rotate(357deg) brightness(89%) contrast(96%);
}

.indigo_filter {
  filter: brightness(0) saturate(100%) invert(15%) sepia(69%) saturate(5385%) hue-rotate(241deg) brightness(85%) contrast(88%);
}

.dark_yellow_filter {
  filter: brightness(0) saturate(100%) invert(69%) sepia(9%) saturate(4575%) hue-rotate(348deg) brightness(94%) contrast(86%);
}

.blue_filter {
  filter: brightness(0) saturate(100%) invert(19%) sepia(35%) saturate(7333%) hue-rotate(188deg) brightness(99%) contrast(98%);
}

.explore_servies_scroll {
  width: 100%;
}

@media (max-width: 960px) {
  .explore_servies .container {
    text-align: center;
  }

}

@media (max-width: 500px) {
  .explore_servies {
    padding: 30px 0;
    gap: 24px;
  }

}

/* explore servies section end */
/* joinus today section start */
.joinus_today {
  padding: 89px 0;
}

.joinus_today .container {
  border-top: 2px solid rgba(52, 137, 253, 0.3);
  padding-top: 89px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.joinus_today .join_heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.joinus_today .join_heading h2 {
  font-size: var(--section-h);
}

.joinus_today .grow_us {
  background-image: url(../assets/partnership/form_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 774px;
  height: 739px;
  width: 100%;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.joinus_today .grow_us .content {
  display: flex;
  flex-direction: column;
  gap: 61px;
  align-items: center;
}

.joinus_today .grow_us .content img {
  height: auto;
  width: 100%;
}

.joinus_today .flex_content .content_text {
  width: 100%;
  gap: 22px !important;
  align-items: center !important;
}

.joinus_today .grow_us .content_text h4 {
  color: #fff;
  text-align: center;
  font-family: var(--heading-font-family);
  font-size: 28px;
  font-weight: 700;
}

.joinus_today .grow_us .content_text p {
  color: white;
  text-align: center;
}

.joinus_today .grow_us .content {
  max-width: 598px;
}

.joinus_today .grow_us_form {
  max-width: 494px;
  width: 100%;
  padding: 42px 22px 42px 32px;
}

.joinus_today .grow_us_form form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
  gap: 30px;
}

.joinus_today .grow_us_form form .form-field {
  width: 100%;
}

.joinus_today .grow_us_form form .form-group {
  gap: 23px;
  width: 100%;
  margin-bottom: 0;
}

.joinus_today .flex_content {
  background: #fff;
  box-shadow: 0px 48px 13px 0px rgba(0, 0, 0, 0),
    0px 31px 12px 0px rgba(0, 0, 0, 0.01), 0px 17px 10px 0px rgba(0, 0, 0, 0.03),
    0px 8px 8px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  gap: 30px;
  justify-content: start;
}

.joinus_today form input,
.joinus_today form textarea {
  background-color: #f3f3f3;
}

.joinus_today .submit-btn {
  margin: 0;
}

.joinus_today form textarea {
  min-height: 80px;
}

.joinus_today .grow_us_form {
  max-width: 494px;
  width: 100%;
  padding: 42px 22px 42px 32px;
}

@media (max-width: 960px) {
  .joinus_today .flex_content {
    flex-direction: column;
  }

  .joinus_today .grow_us .content {
    flex-direction: row;
    max-width: 100%;
    gap: 30px;
  }

  .joinus_today .grow_us {
    max-width: 100%;
    height: auto;
    padding: 20px;
  }

  .joinus_today .grow_us .content img {
    width: 50%;
  }

  .joinus_today .flex_content .content_text {
    align-items: start;
  }

  .joinus_today .grow_us .content_text h4,
  .joinus_today .grow_us .content_text p {
    text-align: left;
  }

  .joinus_today .grow_us_form {
    max-width: 100%;

  }

  .joinus_today .grow_us .content_text h4 {
    font-size: 24px;
  }

}

@media (max-width: 600px) {
  .joinus_today .grow_us .content {
    flex-direction: column;
  }

  .joinus_today .grow_us .content img {
    width: 100%;
  }

  .joinus_today .grow_us_form form .form-field {
    width: 100% !important;
  }

  .joinus_today .grow_us .content_text h4,
  .joinus_today .grow_us .content_text p {
    text-align: center;
  }

  .joinus_today .container {
    padding: 40px 20px;
  }

  .joinus_today {
    padding: 40px 0;
  }

  .joinus_today .grow_us_form {
    padding: 0 20px 30px 20px;
  }

  .joinus_today .grow_us_form form {
    gap: 16px;
  }
}

/* joinus today section end */
/* partnership page end  */

/* software development page start */
.soft_conatiner {
  margin-top: -5%;
}

.soft_conatiner .container {
  display: flex;
  padding: 50px;
  justify-content: center;
  align-items: flex-start;
  gap: 0px;
  border-radius: 25px;
  border: 1px solid #00b1ff;
  background: #fff;
}

.soft_conatiner .content_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  border-right: 1.5px solid #e6e6e6;
  max-width: 360px;
  width: 100%;
}

.soft_conatiner .content_text h4 {
  color: var(--black);
  text-align: center;
  font-family: var(--normal-font-family);
  font-size: 20px;
  font-weight: 400;
  line-height: 33px;
}

.soft_conatiner .content_text:last-child {
  border: 0;
}

.partnership_banner .content_text img {
  height: 46px;
  width: auto;
  display: inline;
}

@media (max-width: 1320px) {
  .soft_conatiner .container {
    padding: 40px;

  }

  .soft_conatiner {
    padding: 0 20px;
  }

  .soft_conatiner .content_text {
    gap: 15px;
  }

  .soft_conatiner .container {
    padding: 20px;
  }

  .partnership_banner .content_text {
    gap: 15px;
  }
}

@media (max-width: 960px) {
  .soft_conatiner .content_text h4 {
    font-size: 16px;
  }

  .partnership_banner {
    display: flex;
    flex-direction: column-reverse;
    padding: 40px 0 60px 0;
  }

  .partnership_banner .content_text {
    max-width: 100%;
  }

  .partnership_banner img {
    max-width: 300px;
  }

}

@media (max-width: 600px) {
  .soft_conatiner .container h2 {
    font-size: 16px;
  }

  .soft_conatiner .content_text h4 {
    font-size: 14px;
    line-height: normal;
  }

  .partnership_banner .container {
    padding-left: 20px;
    padding-bottom: 20px;
  }

  .partnership_banner .content_text h2 {
    font-size: 24px;
  }

  .soft_conatiner .container {
    padding: 20px 10px;
  }

  .soft_conatiner .content_text {
    gap: 2px;
  }

  .soft_conatiner .content_text h4 {
    font-size: 12px;
  }

  .partnership_banner {
    padding: 60px 0;
  }

}


/* business to business section start */
.b_to_company {
  padding: 89px 0 0px 0;
}

.b_to_company .b_to_heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.b_to_company .company_text {
  display: flex;
  padding: 7px 16px 6px 0px;
  align-items: center;
  gap: 28px;
}

.b_to_company .b_to_b_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
}

@media (max-width: 1200px) {
  .b_to_company .flex_content {
    flex-direction: column-reverse;
  }

  .b_to_company .flex_content img {
    height: auto;
    width: 100%;
  }

  .b_to_company .company_text img {
    height: auto;
    width: auto;
  }
}

/* business to business section end */
/* clara use tech section start */
.clara_use_tech {
  padding: 89px 0;
}

.clara_use_tech h2 {
  font-size: var(--section-h) !important;
}

.soft_h h2 {
  font-size: var(--section-h) !important;
}

.clara_use_tech .technologies_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 20px;
}

.clara_use_tech .tech_box {
  display: flex;
  padding: 39px 44px;
  flex-direction: column;
  align-items: center;
  gap: 39px;
  border-radius: 24px;
  border: 1.601px solid var(--primary-color);
}

.clara_use_tech .tech_box .tech_set {
  display: flex;
  align-items: center;
  gap: 18px;
}

.clara_use_tech .tech_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
}

.clara_use_tech .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 55px;
}

.soft_h {
  padding: 70px 0 !important;
  background: #ecf6ff;
}

.soft_h_safeentry {
  padding: 70px 0 !important;
  background: #FBF3FC;
}

.safe_ind {
  position: relative;
  width: 100%;
  height: 100%;
}

.safe_ind p {
  position: absolute;
  bottom: 40px;
  padding-left: 44px;
  color: white;
}

.soft_case {
  padding: 89px 0;
}

.advanced .product_card {
  height: 310px !important;
  justify-content: start;
}

.nation_count {
  padding-bottom: 89px;
}

@media (max-width: 1280px) {
  .clara_use_tech .technologies_container {
    gap: 10px;
  }

  .clara_use_tech .tech_box {
    padding: 28px 20px;
  }

}

@media (max-width: 1024px) {
  .clara_use_tech .technologies_container {
    flex-direction: column;
  }

  .clara_use_tech .tech_content {
    flex-direction: row;
    gap: 20px;
  }

  .clara_use_tech .tech_box {
    width: 100%;
    gap: 20px;
  }

}

@media (max-width: 960px) {
  .clara_use_tech .tech_content {
    flex-direction: column;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .clara_use_tech .technologies_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .clara_use_tech .tech_box .tech_set {
    gap: 8px;
  }

}

@media (max-width: 768px) {
  .clara_use_tech .tech_box .tech_set p {
    display: none;
  }

}

@media (max-width: 500px) {

  .advanced .product_card {
    height: auto !important;
    justify-content: start;
  }

  .soft_h {
    padding: 40px 0 !important;

  }

  .clara_use_tech .tech_content {
    gap: 10px;
  }

  .clara_use_tech .tech_box .tech_set p {
    display: block;
  }

  .clara_use_tech .technologies_container {
    grid-template-columns: 1fr;
  }

  .clara_use_tech .tech_box .tech_set img {
    height: auto;
    width: 24px;
  }

  .clara_use_tech .tech_box {
    gap: 10px;
    padding: 10px 20px;
  }

  .clara_use_tech .container {
    gap: 24px;
  }

  .clara_use_tech {
    padding-bottom: 40px;
  }

  .soft_case {
    padding: 40px 0;
  }
}

/* clara use tech section end */
/* other solution section start */
.other_solution {
  padding: 60px 0 49px 0;
}

.other_solution .solution_card {
  display: flex;
  max-width: 384px;
  height: 466px;
  padding: 18px 18px 32px 18px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  border-radius: 16px;
  background: #fff;

  box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08),
    0px 4px 6px -2px rgba(16, 24, 40, 0.03);
  width: 100%;
  margin: 0 20px 40px 20px;
}

.other_solution h2 {
  font-size: var(--section-h) !important;
}

.other_solution .solution_card img {
  height: auto;
  width: 100%;
}

.other_solution .solution_card .heading_move img {
  height: auto;
  width: 24px;
}

.other_solution .solution_card h4 {
  color: var(--black);
  font-family: var(--normal-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.other_solution .solution_card .heading_move {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  justify-content: space-between;
  width: 100%;
}

.other_solution .solution_card .content_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.other_solution .other_solution_container {
  display: flex;
  align-items: center;
  gap: 40px;
  /* overflow: hidden; */
  position: relative;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.sol_back_move,
.sol_next_move {
  background: none;
  border: none;
  z-index: 10;
  cursor: pointer;
}

.sol_back_move img,
.sol_next_move img {
  width: 45px;
  height: 45px;
}

.other_solution .solution_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 27px;
}

.other_solution .solution_head .sul_btn {
  display: flex;
  gap: 22px;
  align-items: center;
}

@media (max-width: 1274px) {
  .other_solution .other_solution_container {
    gap: 20px;
  }

  .other_solution .solution_card {
    max-width: 292px;
    transition: all 0.3s ease;
    height: 424px;
  }
}

@media (max-width: 960px) {
  .other_solution .other_solution_container {
    justify-content: center;
  }
}

@media (max-width: 645px) {
  .other_solution .solution_card {
    max-width: 100%;
    height: 100%;
  }

  .sol_back_move img,
  .sol_next_move img {
    width: 24px;
    height: 24px;
  }

  .other_solution .solution_head .sul_btn {
    gap: 6px;
  }

  .other_solution .solution_card h4 {
    font-size: 18px;
    line-height: 22px;
  }

  .other_solution .solution_card {
    margin: 0 10px 10px 10px;
  }
}

/* other solution section start */
/* frequently question section start */
.frequently_ques {
  padding-bottom: 89px;
}

.frequently_ques .accordion {
  padding-top: 56px;
}

.frequently_ques .accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}

.frequently_ques .accordion button {
  display: block;
  text-align: left;
  width: 96%;
  padding: 16px 0;
  border: none;
  background: none;
  outline: none;
  height: 84px;
}

.frequently_ques .accordion button:hover,
.frequently_ques .accordion button:focus {
  cursor: pointer;
  color: var(--primary-color);
}

.frequently_ques .accordion button:hover::after,
.frequently_ques .accordion button:focus::after {
  cursor: pointer;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.frequently_ques .accordion button .accordion-title {
  color: var(--black);
  font-family: var(--normal-font-family);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.frequently_ques .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.frequently_ques .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.frequently_ques .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.frequently_ques .accordion button[aria-expanded="true"] {
  color: var(--primary-color);
}

.frequently_ques .accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

.frequently_ques .accordion button[aria-expanded="true"]+.accordion-content {
  opacity: 1;
  max-height: 900px;
  transition: all 200ms ease-in-out;
  will-change: opacity, max-height;
}

.frequently_ques .accordion .accordion-content {
  opacity: 1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease-in-out;
}

/* .frequently_ques .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
} */
.frequently_ques .accordion .accordion-content p {
  color: #484848;
  font-size: var(--normal-font-size);
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  margin-bottom: 16px;
  font-family: var(--normal-font-family);
}

.frequently_ques .accordion .accordion-content ul {
  padding-left: 20px;
  margin: 0;
  list-style: circle;
  margin-bottom: 20px;
}

.frequently_ques .accordion .accordion-content li {
  color: #484848;
  font-size: var(--normal-font-size);
  font-weight: 400;
  line-height: 24px;
  font-family: var(--normal-font-family);
}

.frequently_ques .accordion .accordion-content li p {
  padding-left: 23px;
}

@media (max-width: 768px) {
  .frequently_ques .accordion button {
    height: auto;
  }

  .frequently_ques .accordion button .accordion-title {
    font-size: 16px;
  }

  .frequently_ques .accordion button {
    width: 94%;
  }
}

@media (max-width: 500px) {
  .frequently_ques .accordion button .accordion-title {
    font-size: 14px;
    line-height: normal;
  }

  .frequently_ques .accordion {
    padding-top: 30px;
  }

  .frequently_ques .accordion button {
    width: 92%;
  }
}

/* frequently question section end */

/* education and business section start */
.edu_business {
  padding: 89px 0;
}

.edu_business .container h2 {
  font-size: var(--section-h);
}

.edu_business .edu_card {
  display: flex;
  max-width: 410px;
  height: 472px;
  padding-bottom: 25px;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
  border-radius: 20px;
  border: 1px solid #d4d4d4;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.scroll_safe_card {
  gap: 45px;
  width: 100%;
}

.scroll_safe_card .edu_card {
  margin: 20px 25px;
}

.edu_business .edu_card p {
  color: var(--gray);
}

.edu_business .edu_card .content_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 0 29px;
}

.edu_business .edu_card .content_text h3 {
  color: #101828;
  text-align: start;
  font-family: var(--heading-font-family);
}

.edu_business .edu_business_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 64px 0;
  gap: 20px;
}

.edu_business .edu_card:hover {
  transform: translateY(-15px);
  border-radius: 20px;
  border: 1px solid #6367ff;
  background: #f3f9ff;
  box-shadow: 0px 48px 13px 0px rgba(0, 0, 0, 0),
    0px 31px 12px 0px rgba(0, 0, 0, 0.01), 0px 17px 10px 0px rgba(0, 0, 0, 0.03),
    0px 8px 8px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
}

.edu_business .edu_card:hover h3 {
  color: var(--primary-color);
}

.edu_business .edu_btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1160px) {
  .edu_business .edu_card {
    height: 490px;
    gap: 20px;
  }

  .edu_business .edu_card .content_text h3 {
    line-height: normal;
  }

  .edu_business .container h2 {
    text-align: center;
  }

}

@media (max-width: 960px) {
  .edu_business {
    padding: 40px 0;
  }

  .edu_business .edu_business_content {
    padding: 40px 0;
    flex-direction: column;
  }

  .edu_business .edu_card {
    width: 100%;
    flex-direction: row;
    align-items: center;
    height: auto;
    padding: 0;
  }

  .edu_business .edu_card img {
    height: 210px;
    width: auto;
  }

}

@media (max-width: 768px) {
  .edu_business .edu_card .content_text {
    padding-left: 0;
  }

  .edu_business .edu_card img {
    height: 180px;
  }
}

@media (max-width: 660px) {
  .edu_business .edu_card {
    width: 100%;
    height: auto;
    flex-direction: column;

    max-width: 410px;
    width: 100%;
  }

  .edu_business .edu_card img {
    height: 100%;
  }

  .edu_business .edu_card .content_text {
    padding: 0 29px 20px 29px;
  }
}

/* education and business section end */
/* interactive display section start */
.interactive_display .display_content {
  padding-top: 54px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.interactive_display {
  background: #ecf6ff;
  padding: 68px 0 86px 0;
}

.interactive_display .display_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 21px;
  width: 100%;
}

.interactive_display h2 {
  font-size: var(--section-h) !important;
}

.interactive_display .display_content img {
  display: block;
  width: 100%;
}

@media (max-width: 1340px) {
  .interactive_display .display_content img {
    max-width: 450px;
    width: 100%;
  }

  .interactive_display .display_content {
    justify-content: center;
  }

  .interactive_display h2 {
    text-align: center;
  }

}

@media (max-width: 960px) {
  .interactive_display .display_content img {
    max-width: 330px;
    width: 100%;
  }

}

@media (max-width: 720px) {
  .interactive_display .display_content {
    gap: 20px;
  }

  .interactive_display .display_content img {
    max-width: 220px;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .interactive_display .display_content img {
    max-width: 100%;
    width: 100%;
  }

  .interactive_display .display_content {
    gap: 20px;
    flex-direction: column;
  }

  .interactive_display .display_btn {
    flex-direction: column;
  }

  .interactive_display .display_content {
    padding: 30px 0;
  }

  .interactive_display {
    padding: 40px 0;
  }
}

/* interactive display section start */
/* i_slate section start */
.i_slate {
  padding: 150px 0;
  background: #fbf3fc;
}

.i_slate .collab_card {
  background-color: white;
  border: 1px solid #6568fa;
  height: 239px;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
}

.i_slate .container>a:nth-child(3) .collab_card {
  background-color: white;
  border: 1px solid #c4320a;
}

.i_slate .container>a:nth-child(4) .collab_card {
  background-color: white;
  border: 1px solid #3237cd;
}

.i_slate .container>a:nth-child(5) .collab_card {
  background-color: white;
  border: 1px solid #e09123;
}

.i_slate .container>a:nth-child(6) .collab_card {
  background-color: white;
  border: 1px solid #0267a2;
}

.i_slate .collab_card:hover {
  transform: translateY(-15px);
  box-shadow: 0px 48px 13px 0px rgba(0, 0, 0, 0.00), 0px 31px 12px 0px rgba(0, 0, 0, 0.01), 0px 17px 10px 0px rgba(0, 0, 0, 0.03), 0px 8px 8px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.05) !important;

}

@media (max-width: 768px) {
  .i_slate {
    padding: 50px 0;
  }

  .i_slate .collab_card {
    height: auto;
  }
}

/* i_slate section end */
/* features i slate section start */
.features_slate {
  padding: 89px 0;
}

.features_slate .container h2 {
  text-align: center;
  font-size: var(--section-h);
}

.features_slate .feature_content {
  display: flex;
  align-items: flex-start;
  gap: 63px;
  padding-top: 83px;
}

.features_slate .slate_box {
  width: 137px;
  min-height: 136px;
  border-radius: 12px;
  border: 1px solid #b8b8b8;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features_slate .slate_box img {
  height: 60px;
  max-width: 60px;
}

.features_slate .slate_content h5 {
  color: var(--black);
  text-align: center;
  font-family: var(--heading-font-family);
  font-size: var(--normal-font-size);
  font-weight: 500;
}

.features_slate .slate_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 175px;
}

.feature_wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.feature_scroller {
  display: inline-block;
  white-space: nowrap;
  animation: scrollFeature 30s linear infinite;
}


@keyframes scrollFeature {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 620px) {
  .features_slate .slate_box {
    min-height: 100px;
    width: 100px;
  }

  .features_slate .feature_content {
    padding-top: 40px;
  }

  .features_slate {
    padding: 40px 0;
  }

  .features_slate .slate_content h5 {
    font-size: 12px;
  }
}

/* features i slate section end */
/* tracbull section start */
.tracbull {
  padding: 89px 0;
}

.tracbull .flex_content .content_text {
  max-width: 598px;
}

.tracbull .flex_content .content_text h2 {
  max-width: 465px;
}

.tracbull .flex_content .content_img {
  position: relative;
  max-width: 578px;
  height: 330px;
  width: 100%;
}

.tracbull .flex_content .content_img video {
  position: absolute;
  top: 7px;
  left: 6px;
  width: 98%;
  height: 99%;
  background-color: black;
}

.tracbull .flex_content .content_img img {
  z-index: 99;
  height: auto;
  width: 100%;
}

@media (max-width: 1200px) {
  .tracbull .flex_content {
    flex-direction: column;
  }

  .tracbull .flex_content .content_text {
    max-width: 100%;
  }

  .tracbull .flex_content .content_text h2 {
    max-width: 100%;
  }
}

@media (max-width: 630px) {
  .tracbull .flex_content .content_img video {
    height: auto;
  }

  .tracbull {
    padding: 39px 0;
  }

  .tracbull .flex_content .content_img {
    height: auto;
  }
}

@media (max-width: 370px) {
  .tracbull .flex_content .content_img video {
    left: 3px;
    top: 3px;
    height: auto;
  }

}


/* tracbull section end */
/* software development page end */
/* book erp demo section start */
.book_erp {
  background: linear-gradient(109deg, #deebf6 -1.04%, #f8e9fa 99.21%);
  height: 683px;
  padding-top: 100px;
}

.book_erp .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.book_erp .demo_heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  text-align: center;
  padding-bottom: 64px;
}

.book_erp .demo_heading a {
  padding: 19px 38px;
  font-size: 20px;
}

.book_erp .flex_content {
  background: #fff;
  box-shadow: 0px 48px 13px 0px rgba(0, 0, 0, 0),
    0px 31px 12px 0px rgba(0, 0, 0, 0.01), 0px 17px 10px 0px rgba(0, 0, 0, 0.03),
    0px 8px 8px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  gap: 30px;
  justify-content: start;
}

.book_erp .grow_us {
  background-image: url(../assets/partnership/form_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 760px;
  height: 726px;
  width: 100%;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book_erp .grow_us .content {
  display: flex;
  flex-direction: column;
  gap: 61px;
  align-items: center;
}

.book_erp .grow_us .content img {
  height: auto;
  width: 100%;
}

.book_erp .flex_content .content_text {
  width: 100%;
  gap: 22px !important;
  align-items: center !important;
}

.book_erp .grow_us .content_text h4 {
  color: #fff;
  text-align: center;
  font-family: var(--heading-font-family);
  font-size: 28px;
  font-weight: 700;
}

.book_erp .grow_us .content_text p {
  color: white;
  text-align: center;
}

.book_erp .grow_us .content {
  max-width: 598px;
}

.book_erp .grow_us .content_img {
  width: 100%;
}



.book_erp .grow_us_form form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
  gap: 30px;
}

.book_erp .grow_us_form form .form-field {
  width: 100%;
}

.book_erp .grow_us_form form .form-group {
  gap: 23px;
  width: 100%;
  margin-bottom: 0;
}

.book_erp form input,
.book_erp form textarea {
  background-color: #f3f3f3;
}

.book_erp .submit-btn {
  margin: 0;
}

.book_erp form textarea {
  min-height: 80px;
}

.blank_section {
  height: 520px;
}

@media (max-width: 1320px) {
  .book_erp .flex_content {
    padding-right: 30px;
  }

  .book_erp .grow_us .content {
    padding: 0 20px;
  }
}

@media (max-width: 960px) {
  .book_erp .flex_content {
    flex-direction: column;
    padding: 0 !important;
  }

  .book_erp .grow_us {
    height: auto;
  }

  .book_erp .grow_us .content {
    max-width: 100%;
    padding: 20px;
    gap: 38px;
  }

  .book_erp .grow_us_form {
    width: 100%;
    padding: 0 30px 30px 30px;
  }

  .blank_section {
    height: 880px;
  }

  .book_erp .flex_content .w-50 {
    gap: 5px;
  }

}

@media (max-width: 600px) {
  .book_erp .grow_us .content_text h4 {
    font-size: 22px;
  }

  .book_erp {
    padding-top: 50px;
  }

  .book_erp .demo_heading a {
    padding: 8px 14px;
    font-size: 12px;

  }

  .book_erp .demo_heading {
    padding-bottom: 40px;
  }

}

@media (max-width: 425px) {
  .book_erp .grow_us .content_text h4 {
    font-size: 18px;
  }

  .book_erp .grow_us .content {
    padding-bottom: 40px;
  }

  .blank_section {
    height: 830px;
  }

}

/* book erp demo section end */
/* case study pages start */
.all_case {
  padding: 89px 0 120px;
  background: linear-gradient(90deg,
      rgba(248, 233, 250, 0.7),
      rgba(222, 235, 246, 0.7));
}

.all_case .content_img img {
  width: 100%;
  height: auto;
}

.all_case .clara_case {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.all_case .content_text {
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: start;
  width: 100%;
}

.all_case .clara_case .content_text p {
  font-size: 20px;
}

.all_case .case_highlights span {
  text-align: center;
  font-family: var(--normal-font-family);
  font-size: var(--normal-font-size);
  font-weight: 500;
  line-height: 20px;
  padding: 2px 10px;
  border-radius: 16px;
}

.all_case .case_types {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.all_case .case_types h3 {
  color: var(--black);
}

.all_case .case_highlights {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.case_highlights {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.all_case .content_img {
  position: relative;
}

.all_case .case_bg_card {
  position: absolute;
  left: -26%;
  z-index: -1;
  top: -12%;
}

@media (max-width: 960px) {
  .all_case .clara_case .content_text p {
    font-size: var(--normal-font-size);
  }

  .all_case .clara_case {
    flex-direction: column;
    align-items: start;
  }

  .all_case {
    padding: 50px 0;
  }

  .all_case .content_text {
    max-width: 100%;
    gap: 20px;
  }

  .all_case .content_img img {
    width: 50%;
    height: auto;
  }
}

@media (max-width: 600px) {
  .case_highlights {
    gap: 10px;
  }

  .stu_case .case_heading {
    gap: 8px;
    text-align: start;
  }

  .all_case .content_img img {
    width: 100%;
    height: auto;
  }

  .all_case .case_types {
    flex-direction: column;
  }

  .all_case .case_highlights {
    gap: 10px;
  }

  .all_case .clara_case {
    gap: 10px;
  }
}

/* key_highlights section start */
.key_highlights {
  padding: 89px 0;
}

.key_highlights .container h2 {
  font-size: var(--section-h);
  padding-bottom: 50px;
}

.key_highlights .key_card {
  /* background-image: url(../assets/casestudies/nhs/bg1.png); */
  display: flex;
  height: 495px;
  border-radius: 18px;
  background-size: cover;
  padding: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.key_highlights .key_card h2 {
  font-size: 28px !important;
  padding-bottom: 0px;
  line-height: 37.958px;
}

.key_highlights .key_card .content_text {
  max-width: 560px;
  gap: 28px;
}

.key_highlights .key_card .content_text li {
  font-family: var(--normal-font-family);
  line-height: 209%;
}

.key_highlights .key_card .content_text ul {
  padding-left: 20px;
}

.key_card_scroll {
  width: 100%;
}

.key_highlights .key_card .content_text li span {
  font-weight: bold;
}

.key_card_scroll .key_card:nth-child(1) {
  background-image: url(../assets/casestudies/nhs/bg1.png);
}

.key_card_scroll .key_card:nth-child(2) {
  background-image: url(../assets/casestudies/nhs/bg2.png);
}

.key_card_scroll .key_card:nth-child(3) {
  background-image: url(../assets/casestudies/nhs/bg3.png);
}

.key_card_scroll .key_card:nth-child(4) {
  background-image: url(../assets/casestudies/nhs/bg4.png);
}

.key_card .flex_content {
  gap: 40px;
  max-width: 1090px;
  justify-content: space-between;
  width: 100%;
}

.key_card .content_img {
  height: auto;
  width: auto;
}

.key_card .content_img img {
  width: 100%;
  height: auto;
}

.key_card_scroll .key_card:nth-child(2) li {
  line-height: 23px;
}

.key_highlights .slick-dots {
  bottom: 25px;
}

.got_idea {
  padding-bottom: 0;
  padding-top: 75px;
}

.got_idea .content_img img {
  height: 100%;
  width: 100%;
  display: block;
}

.got_idea p {
  max-width: 500px;
}

.got_idea .btn-primary {
  margin-bottom: 70px;
}

@media (max-width: 960px) {
  .key_card .flex_content {
    flex-direction: column;
    gap: 16px;
    align-items: start;
    width: 90%;
    transition: all 0.3s ease;
    padding-bottom: 32px;
  }

  .key_card_scroll .key_card {
    height: auto;
    width: 100%;
    padding: 30px 20px;
    transition: all 0.3s ease;
  }

  .key_highlights .key_card .content_text {
    gap: 8px;
    transition: all 0.3s ease;
    max-width: 100%;
  }

  .key_highlights .container h2 {
    text-align: center;
  }

  .got_idea .btn-primary {
    margin-bottom: 00px;
  }

  .got_idea {
    padding: 20px 0 0 0;
  }

  .lets_started .content_text {
    max-width: 100%;
  }

  .lets_started .container {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .key_highlights {
    padding: 30px 0;
  }

  .key_highlights .container h2 {
    font-size: 32px;
  }

  .key_highlights .key_card h2 {
    font-size: 22px !important;
  }

  .key_card_scroll .key_card {
    padding: 20px;
  }

  .key_highlights .key_card .content_text li {
    line-height: normal;
    margin-bottom: 4px;
  }

  .aero_card .key_card:nth-child(2) li {
    line-height: normal !important;
  }

  .got_idea .content_img img {
    height: auto;
    width: 100%;
    display: block;
  }

  .lets_started .content_img {
    height: 100%;
    width: auto;
  }
}

/* key_highlights section start */
/* case study pages end */
/* aero case study page start */
.aero_card .key_card:nth-child(3) {
  background-image: url(../assets/casestudies/nhs/bg3.png);
}

.aero_card .key_card:nth-child(4) {
  background-image: url(../assets/casestudies/aerobay/bg4.png) !important;
}

.aero_card .key_card:nth-child(5) {
  background-image: url(../assets/casestudies/aerobay/bg5.png) !important;
}

.aero_card .key_card:nth-child(2) li {
  line-height: 209%;
}

.netbookflix .key_card .content_text li {
  font-family: var(--normal-font-family);
  line-height: normal;
  padding-bottom: 18px;
}

/* aero case study page end */
/* website services page start */
.web_service {
  padding: 89px 0;
}

.web_service .service_left {
  display: flex;
  max-width: 521px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 34px;
  width: 100%;
}

.web_service .service_right {
  max-width: 602px;
  max-height: 734px;
  overflow-y: scroll;
}

.web_service .service_right .costume_service {
  width: 100%;
  height: auto;
  padding: 42px 16px 0px 25px;
  display: flex;
  gap: 28px;
  align-items: start;
}

.web_service .costume_service h4 {
  color: var(--black);
  font-family: var(--normal-font-family);
  font-size: 28px;
  font-weight: 600;
  line-height: 26px;
}

.web_service .costume_service .text_area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
  padding-bottom: 29px;
  border-bottom: 1px solid grey;
}

.web_service .flex_content {
  align-items: start;
}

.web_service .service_left h2 {
  font-size: 36px;
}

@media (max-width: 960px) {
  .web_service .flex_content {
    flex-direction: column;
  }

  .web_service .service_left {
    max-width: 100%;
    gap: 16px;
  }

  .web_service .service_right {
    max-width: 100%;
    max-height: 370px;
  }

}

@media (max-width: 500px) {
  .web_service .service_right .costume_service {
    padding: 30px 16px 0 0;
    gap: 16px;
  }

  .web_service .costume_service h4 {
    font-size: 18px;
  }

  .web_service .costume_service .text_area {
    gap: 16px;
    padding-bottom: 18px;
  }

  .web_service .service_right .costume_service img {
    height: 36px;
  }

  .web_service {
    padding: 39px 0;
  }
}

/* website services page end */
/* advocate confidentiality section start */
.advocate_confidentiality .content_img img {
  height: auto;
  width: 100%;
}

.advocate_confidentiality .flex_content {
  gap: 90px;
  align-items: start;
}

.advocate_confidentiality {
  padding-bottom: 40px;
}

.advocate_confidentiality .container {
  display: flex;
  flex-direction: column;
  gap: 89px;
}

.advocate_confidentiality .flex_content .content_text {
  max-width: 100%;
  width: 100%;
}

@media (max-width: 1320px) {
  .advocate_confidentiality .flex_content {
    gap: 30px;
    align-items: start;
  }
}

@media (max-width: 960px) {
  .advocate_confidentiality .flex_content {
    flex-direction: column;
  }

  .advocate_confidentiality .content_img img {
    height: auto;
    width: 100%;
    max-width: 400px;
  }

  .advocate_confidentiality .content_img {
    order: 1;
  }

  .advocate_confidentiality .container {
    gap: 30px;
  }
}

/* advocate confidentiality section end */
/* about us core value section start */

.core_value {
  position: relative;
  text-align: center;
  padding-top: 119px;
  background-image: url(../assets/about_us/images/values_bg.png);
}

.core_value p {
  max-width: 958px;
}

.core_value .content_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.core_value .core_value_main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 106px 0;
}

.success_path {
  position: relative;
  width: 894px;
  height: 447px;
  background: white;
  border: 10px solid #E2F1FF;
  border-bottom: none;
  border-top-left-radius: 447px;
  border-top-right-radius: 447px;
  overflow: visible;
}

.success_path .path_icon {
  position: absolute;
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 75%;
  left: 45%;
  transform-origin: bottom center;
  box-shadow:
    0px 2px 4px rgba(0, 0, 0, 0.05),
    0px 8px 8px rgba(0, 0, 0, 0.04),
    0px 17px 10px rgba(0, 0, 0, 0.03),
    0px 31px 12px rgba(0, 0, 0, 0.01);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.success_path .path_icon.active {
  background: linear-gradient(95deg, #6367FF 6.47%, #0F9DFC 100.17%);
}


.success_path .path_icon:nth-child(1) {
  transform: rotate(-75deg) translateY(-423px) rotate(75deg);
}

.success_path .path_icon:nth-child(2) {
  transform: rotate(-45deg) translateY(-397px) rotate(45deg);
}

.success_path .path_icon:nth-child(3) {
  transform: rotate(-15deg) translateY(-397px) rotate(15deg);
}

.success_path .path_icon:nth-child(4) {
  transform: rotate(15deg) translateY(-397px) rotate(-15deg);
}

.success_path .path_icon:nth-child(5) {
  transform: rotate(45deg) translateY(-397px) rotate(-45deg);
}

.success_path .path_icon:nth-child(6) {
  transform: rotate(75deg) translateY(-423px) rotate(-75deg);
}

.success_path .path_icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(25%) sepia(4%) saturate(19%) hue-rotate(358deg) brightness(90%) contrast(79%);
}

.success_path .path_icon.active img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(7%) saturate(2974%) hue-rotate(162deg) brightness(109%) contrast(95%);
}

.success_path_content {
  position: absolute;
  bottom: 70px;
  max-width: 389px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  left: 30%;
  align-items: center;
  text-align: center;
}

.success_path_content img {
  filter: brightness(0) saturate(100%) invert(38%) sepia(29%) saturate(1944%) hue-rotate(208deg) brightness(109%) contrast(108%);
  width: 90px;
  height: 90px;
}

.success_path_content h5 {
  color: var(--black);
  text-align: center;
  font-family: var(--normal-font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 22px;
}

.moving_btn {
  position: absolute;
  bottom: 10px;
  left: 48%;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

/* .core_build {
  position: absolute;
  left: 0;
  z-index: -1;
}

.core_build_to {
  position: absolute;
  right: 0;
  z-index: -1;
} */

/* about us core value section end */
/* clara success journey section start */
.success_journey_container .journey_card h5 {
  color: var(--primary-color);
  font-family: var(--heading-font-family);
  font-size: 28px;
  font-weight: 500;
  line-height: 36.141px;
  padding-bottom: 33px;
}

.success_journey_container .journey_card {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  max-width: 660px;
  height: 385px;
  padding: 73px 70px;
  border-radius: 18px;
  background: white;
  box-shadow: 0px 54.571px 14.78px 0px rgba(0, 0, 0, 0.00), 0px 35.244px 13.643px 0px rgba(0, 0, 0, 0.01), 0px 19.327px 11.369px 0px rgba(0, 0, 0, 0.03), 0px 9.095px 9.095px 0px rgba(0, 0, 0, 0.04), 0px 2.274px 4.548px 0px rgba(0, 0, 0, 0.05);
}


.success_journey_heading {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 958px;
  align-items: center;
  text-align: center;

}

.clara_sucess_journey {
  padding: 57px 0 34px 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clara_sucess_journey .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 89px;
}

.success_journey_container {
  width: 100%;
  padding-bottom: 70px;
}

.journey_path {
  height: 10px;
  background-color: var(--primary-color);
  width: 100%;
  position: relative;
}


.slider_wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 105%;
}

.journey_block {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
  padding: 0 50px;
}

.clara_sucess_journey .content_img img {
  width: 100%;
  height: auto;

}

.clara_sucess_journey .dot_text {
  color: var(--primary-color);
  font-family: var(--heading-font-family);
  font-size: 28px;
  font-weight: 700;
}

.progress_container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
}

.progress_line {
  position: relative;
  height: 10px;
  background-color: #007acc;
  transition: width 0.6s ease, margin-left 0.6s ease;
}

.start_dot,
.center_dot,
.end_dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: #007acc;
  border-radius: 50%;
  display: none;
  z-index: 3;
}

.start_dot {
  left: 0;
  transform: translate(-50%, -50%);
}

.center_dot {
  left: 50%;
  transform: translate(-50%, -50%);
}

.end_dot {
  right: 0;
  transform: translate(50%, -50%);
}

.dot_text {
  position: absolute;
  top: 100%;
  /* below the dot */
  transform: translate(-50%, 10px);
  left: 50%;
  white-space: nowrap;
  font-size: 14px;
  color: #333;
  z-index: 2;
  transition: all 0.3s ease;
}

/* clara success journey section end */

/* safeentry section */
.safety_Streamline {
  padding: 100px 0;
}

.safety_Streamline .streamline_heading {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.safety_Streamline .container h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.safety_Streamline .content_img {
  background-image: url('../assets/solutions/safentry/images/mobile_frame.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 311px;
  height: 625px;
  width: 100%;
  position: relative;
}

.safety_Streamline .content_img img {
  border-radius: 30px;
  width: 83%;
  margin: 13px 25px;
  transition: opacity 0.5s ease;
  opacity: 1;
  position: relative;
}

/* .safety_Streamline .fade-out {
  opacity: 0 !important;
} */

.safety_Streamline .content_text {
  display: flex;
  gap: 69px;
  align-items: flex-start;
}

.safety_Streamline .safe_line {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 10px 0;
  height: 582px;
  justify-content: space-between;
  padding: 47px 0;
}

.safety_Streamline .safe_line::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 453px;
  border: 2px dashed #B8B8B8;
  z-index: 0;
}

.safety_Streamline .safe_life_vet {
  background-color: #DEF1FE;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin: 0px 0;
  z-index: 1;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.safety_Streamline .safe_life_vet p{
font-family: var(--normal-font-family);
  color:var(--gray);
font-weight: 600;
font-size: 20px;
}

.safety_Streamline .safe_life_vet:hover {
  transform: scale(1.1);
}

.safety_Streamline .safe_life_vet.selected {
  background-color: #109CFB;
 

}
.safety_Streamline .safe_life_vet.selected
 p{
 color: white !important;
}

.safety_Streamline .safe-rlt {
  display: flex;
  flex-direction: column;
  gap: 57px;
  max-width: 547px;
  height: 100%;
  justify-content: space-between;
  padding-top: 47px;
}

.safety_Streamline .text_div {
  cursor: pointer;
}

.safety_Streamline .text_div h2 {
color:  #888;
font-family: var(--normal-font-family);
font-size: 20px;
font-weight: 600;
line-height: 26px; 
height: 26px;
margin-bottom: 12px;
}

.safety_Streamline .text_div p {
color:  #888;
font-weight: 400;
line-height: 26px;
}

.safety_Streamline .text_div.active h2 {
  color: #109CFB;
  font-size: 28px;
font-weight: 700;
line-height: 26px;
margin-bottom: 12px;
}
.safety_Streamline .safeentry_animate {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 70px;
}