@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Asap", sans-serif;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  border: 0;
}

.scroll-container {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 120px;
  margin-top: 120px;
  margin-bottom: 70px;
}

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

.scroll-content {
  display: flex;
  animation: scroll 40s linear infinite;
}

.scroll-content .item {
  display: flex;
  display: inline-flex;
  gap: 20px;
  text-align: center;
  align-items: center;
  min-width: 200px;
  margin-right: 50px;
  position: relative;
  padding-right: 30px;

}

.scroll-content .item p {
  margin-bottom: 0px !important;
  font-family: Asap;
  font-weight: 400;
  font-size: 14px;
  color: #565656;
}

.scroll-content .item h3 {
  font-family: Asap;
  font-weight: 700;
  font-size: 30px;
  color: #565656;
}

.scroll-content .item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: #565656;
  opacity: 36%;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Instead of bottom fade-in, slide in from left */
.animated-text {
  opacity: 0;
  transform: translateX(-50px);
}

.fade-in {
  animation: slideInLeft 1s forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide-out will now move text slightly to the left again */
.slide-out {
  animation: slideOutLeft 1s forwards;
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-50px);
  }
}

/* Image animation styles */
.image-wrapper {
  position: relative;
  display: inline-block;
}

.animated-image {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: block;
  position: relative;
  z-index: 2;
  /* ensure it stays above shadow */
  border-radius: 10px;
}

/* Create oval shadow */
.image-wrapper::after {
  content: "";
  position: absolute;
  bottom: -15px;
  /* place shadow below image */
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  border-radius: 50%;
  z-index: 1;
}




.image-fade-in {
  animation: imageSlideInTop 1s forwards;
}

@keyframes imageSlideInTop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.image-slide-out {
  animation: imageSlideOutTop 1s forwards;
}

@keyframes imageSlideOutTop {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-40px);
  }
}



.controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.ani-btn {
  background: #2196f3;
  border: none;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.ani-btn:hover {
  /* darker shade on hover */
  transform: scale(1.1);
  /* smooth grow effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  /* stronger shadow */
}


/* Right side vertical dots container */
.dots-container {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Individual dots */
.dot {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #C9C9C9;
}

.yt-iframe-home {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.yt-iframe-home iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* above is from style header in page */

.hero-background {
  background-image: url('/images/hero-bg.png');
  /* your PNG file */
  background-repeat: no-repeat;
  /* prevent tiling */
  background-position: center;
  /* position it */
  background-size: cover;
  /* scale to cover the container */
}

.hero-section {
  padding-top: 60px;
  padding-bottom: 150px;
  position: relative;
}

.hero-section h1 {
  font-family: Asap;
  font-weight: 600;
  font-size: 32px;
  color: white;

}

.hero-section h3 {
  font-family: Asap;
  font-weight: 400;
  font-size: 24px;
  color: white;

}

.hero-section .hero-image {
  max-width: 110%;
}

.hero-section .demo-form-section {
  position: absolute;
  top: 40%;
}

.hero-section .demo-form {
  background-color: white;
  padding: 30px 50px;
  border-radius: 28px;
  border: 1px solid #0069AB;
}

.hero-section .demo-form .form-heading {
  font-family: Asap;
  font-weight: 700;
  font-size: 26px;
  color: #0069AB;
  margin-bottom: 20px;
}

.hero-section .demo-form .get-demo-home-btn {
  background-color: #F96831 !important;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 400;
  font-family: asap;
}

.hero-section .field-names {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-section .field-names h6 {
  margin-bottom: 0px !important;
  color: #888888;
}

.demo-form .input-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.demo-form .form-inputs {
  width: 100%;
  padding: 13px 15px;
  margin-top: 15px;
  border: 2px solid #E7E7E7;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
}

.demo-form .placeholder-text {
  position: absolute;
  left: 15px;
  top: 60%;
  transform: translateY(-50%);
  color: #919191;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.demo-form input:focus+.placeholder-text {
  top: 8px;
  left: 10px;
  font-size: 12px;
}

.demo-form input:not(:placeholder-shown)+.placeholder-text {
  display: none;
}

.scroll-background {
  align-items: center;
  display: flex;
  background-image: url('/images/scroll-bg.png');
  /* your PNG file */
  background-repeat: no-repeat;
  /* prevent tiling */
  background-position: center;
  /* position it */
  background-size: cover;
  /* scale to cover the container */
}

.specialities-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url('/images/specialties-bg.png');
  /* your PNG file */
  background-repeat: no-repeat;
  /* prevent tiling */
  background-position: center;
  /* position it */
  background-size: cover;
  /* scale to cover the container */
}

.specialities-section .headers-box {
  text-align: center;
}

.specialities-row {
  align-items: center;
}

.specialities-section .headers-box h3 {
  font-family: Asap;
  font-weight: 500;
  font-size: 30px;
  color: white;
}

.specialities-section .headers-box h5 {
  font-family: Asap;
  font-weight: 500;
  font-size: 20px;
  color: white;
}

.specialities-section .headers-box span {
  font-family: Asap;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-decoration: underline;
  text-decoration-style: solid;

}

.specialty-box {
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: white;
  border: 0.87px solid #D5D5D5;
  border-radius: 11.45px;
  margin-top: 10px;
  width: 100%;
  padding-left: 10px;
}

.specialty-box img {
  max-width: 22%;
}

.specialty-box h6 {
  margin-bottom: 0px;
  font-family: Asap;
  font-weight: 400;
  font-size: 14px;
  color: #686868;
}

.product-suite-background {
  background-image: url('/images/produt-suite-bg.png');
  /* your PNG file */
  background-repeat: no-repeat;
  /* prevent tiling */
  background-position: center;
  /* position it */
  background-size: cover;
  /* scale to cover the container */
}

.product-suite-section h2 {
  font-family: Asap;
  font-weight: 700;
  font-size: 36px;
  color: #565656;
  padding-top: 100px;
  margin-bottom: 20px;
}

.product-suite-section h5 {
  font-family: Asap;
  font-weight: 400;
  font-size: 28px;
  color: #686868;
  margin-bottom: 40px;
}

.product-suite-section .product-card {
  padding: 8px 8px 8px 8px;
  border: 1px solid #C6C6C6;
  border-radius: 12px;
  font-family: Asap;
  font-weight: 400;
  font-size: 22px;
  color: #565656;
  transition: background-color 0.3s ease, color 0.3s ease;

  flex: 1;
  /* makes all cards inside column take full height */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  line-height: 100%;

}

.product-suite-section .product-card:hover {
  background-color: #2B99FF;
  color: white;
  cursor: pointer;
}

.product-suite-section .product-card.active {
  background-color: #2B99FF;
  color: white;
  cursor: pointer;
}

.product-suite-section .container {
  width: 80%;
  margin-top: 50px;
  padding-bottom: 120px;
}

.product-suite-section .product-info {
  padding: 30px;
  background-color: #FF7B48;
  border-radius: 12px;
}

.product-suite-section .product-info p {
  font-family: Asap;
  font-weight: 400;
  font-size: 22px;
  color: white;
  text-align: left;

}

.view-more-btn {
  background-color: white;
  font-size: 14px;
  font-weight: 500;
  width: 70%;
  border-radius: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.workflow-background {
  background-image: url('/images/workflow-background.png');
  /* your image path */
  background-size: cover;
  /* makes it cover the whole section */
  background-position: center;
  /* centers the image */
  background-repeat: no-repeat;
  /* prevents tiling */
  width: 100%;
  /* height: 1000px; */
  position: relative;
  overflow: hidden;
  /* just in case */
}

.workflow-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* dark tint */
  z-index: 0;
  /* keep it behind content */
}

.workflow-background>* {
  position: relative;
  z-index: 1;
  /* ensure text/content is above overlay */
}


.workflow-background>* {
  position: relative;
  z-index: 2;
  /* keeps text above the overlay */
}

.workflow-section {
  margin-top: 50px;
}

.workflow-section .heading {
  background-color: white;
  /* opacity: 10%; */
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 40px;
}

.workflow-section .heading h2 {
  font-family: Asap;
  font-weight: 500;
  font-size: 35px;
  padding: 10px 20px 10px 20px;
}

.feature-card {
  background-color: white;
  opacity: 40%;
  border-radius: 24px;
  padding-top: 30px;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;

}

.feature-card.active {
  opacity: 100%;
}

.feature-card:hover {
  opacity: 100%;
}

.feature-card p {
  font-family: Asap;
  font-weight: 300;
  font-size: 14px;
  padding: 20px;
}

.feature-card .feature-heading-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-left: 10px;
}

.feature-card .feature-heading {
  display: flex;
  align-items: center;
  display: inline-flex;
  justify-content: flex-end;
  gap: 20px;
  background: #56CCF2;
  padding: 10px;
  /* solid background color */
  border-radius: 40px 0px 0px 40px;
}

.feature-card .feature-heading h6 {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 22px;
  color: white;
  /* padding-right: 10%; */
  margin-bottom: 0px !important;

}

.workflow-section {
  margin-bottom: 70px;
}

.workflow-desc-box {
  display: flex;
  justify-content: end;
}

.workflow-section .description-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: #2B99FF;
  padding: 15px;
  border-radius: 24px;
  margin-bottom: 20px;
}

.workflow-section .description-card h6 {
  font-family: Asap;
  font-weight: 700;
  font-size: 20px;
  color: white;
}

.workflow-section .description-card p {
  font-family: Asap;
  font-weight: 400;
  font-size: 14px;
  color: white;
  margin-bottom: 0px !important;
}

.workflow-section .description-card img {
  width: 100px;
}


.blue-background {
  background: #2196f3;
  /* Adjust to your exact blue */
  position: relative;
}

.department-background {
  background-image: url('/images/department-bg.png');
  /* your image path */
  background-size: cover;
  /* makes it cover the whole section */
  background-position: center;
  /* centers the image */
  background-repeat: no-repeat;
  /* prevents tiling */
}

.department-section {
  padding-top: 100px;
  padding-bottom: 50px;
}

.department-section h2 {
  font-family: Asap;
  font-weight: 700;
  font-size: 38px;

}

.department-section .insights-box {
  display: flex;
  gap: 20px;
  align-items: center;
}

.department-section .list-group-item {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 0;
}

.department-section .list-group-item:last-child {
  border-bottom: none;
}

.department-section .list-group-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.department-section .label {
  font-family: Asap;
  font-weight: 500;
  font-size: 30px;
}

.corner-box {
  position: relative;
  padding: 30px 10px 30px 30px;
  color: white;
  max-width: 90%;
}

.corner-box p {
  font-family: Asap;
  font-weight: lighter;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 0px;
}

/* Top-left corner */
.corner-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  /* horizontal line length */
  height: 40px;
  /* vertical line length */
  border-top: 6px solid white;
  border-left: 6px solid white;
  border-top-left-radius: 19px;
  /* rounded effect */
}

/* Bottom-right corner */
.corner-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-bottom: 6px solid white;
  border-right: 6px solid white;
  border-bottom-right-radius: 19px;
  /* rounded effect */
}

.inline-icon-text .icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.inline-icon-text.open .icon {
  transform: rotate(45deg);
}

/* .inline-icon-text .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #2196f3;
  
} */

/* .inline-icon-text.open .content {
  max-height: 1000px; 
  background-color: white;
  color: #222222;
  border-radius: 12px;
  padding: 20px;
} */

.inline-icon-text {
  position: relative;
}

.inline-icon-text .content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease, transform 0.3s ease;
  color: #313131;
  font-size: 14px;
  font-weight: 500;
  font-family: asap;
  margin-left: 15%;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}

.inline-icon-text .content p {
  margin: 15px;
}

.inline-icon-text .content.show {
  opacity: 1;
  transform: translateY(0);
  /* padding: 20px; */
  border-color: #ddd;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
}









.gray-background {
  background-color: #ECECEC;
}

.features-section .features-heading {
  max-width: 85%;
  padding-top: 80px;
}

.features-section .features-heading h3 {
  text-align: center;
  font-family: Asap;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  color: #222222;
}

.features-section .cta-btn {
  background-color: #2B99FF;
  border-radius: 8px;
  color: white;
  font-size: 24px;
  font-weight: 500;
  font-family: asap;
  line-height: 100%;
}

.features-box {
  /* optional for card effect */
  padding: 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  align-items: center;
}

.features-box img {
  max-width: 45%;
  object-fit: contain;
  padding-bottom: 10px;
}

.features-box p {
  font-family: Asap;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
}

.features-section h4 {
  font-family: Asap;
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
  margin-top: 30px;
  color: #313131;

}

.features-section .cta-section {
  padding-top: 50px;
  padding-bottom: 80px;
}

.features-section .cta-section .container {
  max-width: 80%;
}

.features-section .cta-section .cta-box {
  border-radius: 12px;
  background-color: #F6F6F6;
  padding: 20px 30px;
}

.features-section .cta-section .cta-box p {
  font-family: Asap;
  font-weight: 500;
  font-size: 28px;
  text-align: center;
}

#testimonials_section {
  margin-top: 100px;
  margin-bottom: 40px;
}

#testimonials_section>h2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 100%;
  color: #565656;
  text-align: center;
  margin-bottom: 20px;
}

#testimonials_section>p {
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
  color: #686868;
  text-align: center;
}

.slide_card {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  background-color: #F5F5F5;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 20px 20px;
}

.slide_card>img {
  width: 50px;
  /* align-items: end; */
}

.slide_card>p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #1b1b1b;
  text-align: center;
  margin-top: 30px;
}

.swiper_card_part>h6 {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #1b1b1b;
  /* margin-top: 5px; */
  align-items: center;
  margin-top: 10px;
  margin-bottom: 0px;
}

.swiper_card_part {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.swiper {
  height: 100%;
  /* or a fixed height like 400px */
  margin-top: 60px;
}

.swiper-slide {
  /* display: flex;
flex-direction: column;
justify-content: space-between; */
  height: auto;
}

.swiper-wrapper {
  margin-bottom: 110px;
}

.swiper-pagination {
  text-align: center;
  margin-top: 20px;
  bottom: 40px !important;
}

.swiper-pagination-bullet {
  background-color: #F1F1F1;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #D9D9D9;
  width: 10px;
  height: 10px;
}


.nav-bottom-right {
  position: absolute;
  bottom: 20px;
  right: 3px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  background: #EEEEEE;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  color: #5D5D5D;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
}

.resource-blog-section {
  padding-top: 50px;
  padding-bottom: 80px;
}

.resources-header {
  max-width: 70%;
}

.resources-header h4 {
  font-family: Asap;
  font-weight: 700;
  font-size: 34px;
  color: #565656;
}

.resources-header p {
  font-family: Asap;
  font-weight: 400;
  font-size: 28px;
  color: #686868;
  padding-bottom: 20px;
}

.blogs-section {
  background-color: white;
  border-radius: 24px;
  padding: 20px;
}

.blogs-section>p {
  font-family: Asap;
  font-weight: 400;
  font-size: 22px;
  padding-bottom: 5px;
  color: #2F2F2F;
}

.blog-box {
  border-radius: 8px;
  background-color: #F2F2F2;
  margin-bottom: 10px;
  padding: 10px 20px 10px 10px;
}

.blog-box .blog-read {
  display: flex;
  justify-content: space-between;
}

.blog-box h5 {
  font-family: Asap;
  font-weight: 500;
  font-size: 14px;
  color: #1B1B1B;
}

.all-blogs-button {
  background-color: #ff6a32;
  /* orange */
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  border: 2px solid #ff6a32;
  /* so border stays on hover */
  transition: all 0.3s ease;
  margin-top: 20px;
  margin-bottom: 20px;
  /* smooth effect */
}

.all-blogs-button:hover {
  background-color: #fff;
  /* switch to white */
  color: #ff6a32;
  /* orange text */
}

.resources-section {
  background-color: white;
  border-radius: 24px;
  padding: 20px 20px 0px 20px;
}

.resources-section .resources-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resources-section .resources-top .view-more-resources-btn {
  font-family: Asap;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  background-color: #FF6935;
  color: white;
  margin-bottom: 10px;
}

.resources-section .resources-top p {
  font-family: Asap;
  font-weight: 400;
  font-size: 22px;
  padding-bottom: 5px;
  color: #2F2F2F;
}

.resources-section .resources-box {
  background-color: #F3F3F3;
  padding: 20px 20px 10px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.resources-box h6 {
  font-family: Asap;
  font-weight: 500;
  font-size: 14px;
  margin-top: 10px;
}

.resources-box .download-button {
  max-width: 80%;
}

.more-specialty-section {
  padding-top: 100px;
}

.more-specialty-section h3 {
  font-family: Asap;
  font-weight: 700;
  font-size: 34px;
  text-align: center;
  color: #565656;
  margin-bottom: 20px;
}

.more-specialty-section h4 {
  font-family: Asap;
  font-weight: 400;
  font-size: 28px;
  text-align: center;
  color: #686868;
  margin-bottom: 40px;
}

.more-specialty-section .specialities-box {
  margin-top: 40px;
  margin-bottom: 70px;
}

.more-specialty-section .more-line {
  background: linear-gradient(90deg, #FFFFFF 0%, #D0D0D0 50.48%, #FFFFFF 100%);
  height: 4px;
}

.more-specialty-section .more-box {
  border: 1px solid #615E5E;
  margin-top: 20px;
  padding: 5px 0px 5px 20px;
  width: 100%;
  border-radius: 8px;

}

.more-specialty-section .more-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.more-specialty-section .more-header p {
  margin-bottom: 0px !important;
  font-family: Asap;
  font-weight: 400;
  font-size: 16px;
  color: #686868;
  line-height: 110%;
}

.more-specialty-section .more-header img {
  max-width: 17%;
}


.faq-header {
  margin-top: 100px;
}

.faq-section {
  margin-bottom: 50px;
}

.faq-section h3 {
  font-family: Asap;
  font-weight: 700;
  font-size: 50px;
  color: #000000;

}

.faq-section .faq-row {
  margin-top: 50px;
}

.faq-section .faq-left h5 {
  font-family: Asap;
  font-weight: 600;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 20px;
}

.faq-section .faq-left p {
  font-family: Asap;
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  color: #656565;
  margin-bottom: 6px;
}

.faq-section .faq-left .chat-button {
  background-color: #2B99FF;
  color: white;
  border-radius: 6px;
  width: 120px;
  font-family: Asap;
  font-size: 18px;
  font-weight: 600;
}

.faq-section .faq-right .search-box h6 {
  font-family: Asap;
  font-weight: 400;
  font-size: 24px;
  color: #B4B4B4;
  margin-bottom: 0 !important;

}

.search-box {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px dotted #B4B4B4;
  padding-bottom: 10px;
}

.search-box .icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.search-box .line {
  border-top: 1px dotted #B4B4B4;
}

.faq-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;

  display: flex;
  position: relative;
  z-index: 1;
}

.faq-box .down-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;

  transition: transform 0.3s ease;
}

.faq-box h6 {
  font-family: Asap;
  font-weight: 400;
  font-size: 20px;
  color: #010101;
}

.faqs .line {
  height: 0.5px;
  background-color: #B4B4B4;
  /* border-top: 1px #B4B4B4; */
}


.faq-item {
  position: relative;
  margin-bottom: 10px;
}

/* Initially hidden */
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: #F4F4F4;
  padding: 0 12px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
  font-size: 16px;
  padding-left: 10%;
  margin-bottom: 10px;
}

.faq-item.active .faq-box {
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 6px -2px rgba(0, 0, 0, 0.2);
  background: #F4F4F4;
}

.faq-item.active .down-icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
  opacity: 1;
  max-height: 1000px;
  /* enough to animate open */
}

.faqs .line {
  margin-top: 15px;
}


@media (max-width: 767px) {
  .hero-background {
    background-image: url('/images/hero-mob-bg.png');
    /* your PNG file */
  }

  .hero-section {
    padding-top: 40px;
    padding-bottom: 150px;
    position: relative;
  }

  .hero-section .hero-text-div {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }

  .hero-section .hero-text-div h1 {
    font-family: Asap;
    font-weight: 600;
    font-size: 20px;
  }

  .hero-section .hero-text-div h3 {
    font-family: Asap;
    font-weight: 400;
    font-size: 16px;
  }

  .hero-h3-heading {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .hero-image-div {
    display: flex;
    justify-content: center;
  }

  .hero-section .hero-image {
    max-width: 70%;
  }

  .dots-container {
    right: 2% !important;
  }

  .dot {
    height: 8px !important;
    width: 8px !important;
  }

  .controls {
    right: 10px !important;
    bottom: 55px !important;
    gap: 5px;
  }

  .scroll-container {
    margin-top: 40px !important;
    margin-bottom: 20px !important;
  }

  .inline-icon-text .content {
    margin-left: 5%;
    width: 90%;
    margin-top: 5px;
  }

  .specialities-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .yt-iframe-home {
    margin-bottom: 30px;
  }

  .specialities-section .headers-box img {
    max-width: 40%;
    margin-bottom: 10px;
  }

  .specialities-section .headers-box h3 {
    font-size: 20px;
  }

  .specialities-section .headers-box h5 {
    font-size: 14px;
  }

  .specialities-section .headers-box span {
    font-size: 14px;
  }

  .product-suite-section .container {
    width: 100% !important;
    padding-bottom: 80px;
  }

  .product-suite-section .product-info {
    padding: 15px;
  }

  .product-suite-section .product-info p {
    font-size: 16px;
  }

  .view-more-btn {
    width: 100%;
    border-radius: 6px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .product-suite-section h2 {
    padding-top: 50px;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .product-suite-section h5 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .product-suite-section .product-card {
    font-size: 14px;
    margin-top: 10px;
  }

  .workflow-mobile-section {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .wf-mob-heading {
    background-color: white;
    text-align: center;
    margin-top: -100px;
    padding: 10px;
    margin: -62% auto 48% auto;
    position: relative;
    width: 80%;
    border-radius: 5px;

  }

  .wf-mob-heading h3 {
    font-family: Asap;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    margin-bottom: 0px !important;
  }

  .workflow-carousel-swiper {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .wf-mob-box {
    padding: 20px;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 24px;
    background-color: #FFFFFF;
  }

  .wf-mob-header {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .wf-mob-header img {
    max-width: 10%;
  }

  .wf-mob-header h6 {
    margin-bottom: 0px;
    font-family: Open Sans;
    font-weight: 700;
    font-size: 20px;

  }

  .wf-mob-box>p {
    margin-top: 10px;
    font-family: Asap;
    font-weight: 300;
    font-size: 13px;
  }

  .wf-mob-details .detail-box {
    padding: 5px 10px 5px 10px;
    background-color: #EEEEEE;
    border-radius: 8px;
    margin-bottom: 10px;
  }


  .wf-mob-details .detail-box .detail-header {
    display: flex;
    gap: 5px;
    align-items: center;
  }

  .wf-mob-details .detail-box .detail-header img {
    max-width: 8%;
  }

  .wf-mob-details .detail-box .detail-header h6 {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 14px;
  }

  .wf-mob-details .detail-box p {
    margin-top: 3px;
    font-weight: 400;
    font-size: 12px;
    color: #1B1B1B;
    margin-bottom: 0px;
  }

  .workflow-mobile-section .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 82%;
  }

  .department-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .dept-section-details {
    width: 95%;
    margin-top: 30px;
  }

  .department-section h2 {
    font-family: Asap;
    font-weight: 700;
    font-size: 20px;
  }

  .department-section .label {
    font-size: 16px;
  }

  .insights-box img {
    max-width: 8% !important;
  }

  .inline-icon-text {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .inline-icon-text .content p {
    margin: 10px;
    font-size: 12px;
  }

  .corner-box {
    padding: 15px;
    width: 80%;
  }

  .corner-box p {
    font-family: Asap;
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 0px;
  }

  .corner-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    /* horizontal line length */
    height: 30px;
    /* vertical line length */
    border-top: 4px solid white;
    border-left: 4px solid white;
    border-top-left-radius: 9px;
    /* rounded effect */
  }

  /* Bottom-right corner */
  .corner-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-bottom: 4px solid white;
    border-right: 4px solid white;
    border-bottom-right-radius: 9px;
    /* rounded effect */
  }

  .swiper-slide {
    justify-content: center;
    /* display: flex; */
  }

  .features-section .features-heading h3 {
    font-family: Asap;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    line-height: 100%;
  }

  .features-section h4 {
    font-family: Asap;
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    text-align: center;
    padding: 0px 30px;
    margin-top: -40px;

  }

  .features-section .cta-section {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .features-section .cta-section .cta-box p {
    font-family: Asap;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

  }

  .features-section .cta-btn {
    font-family: Asap;
    font-weight: 500;
    font-size: 14.56px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

  }

  .features-section .cta-section .container {
    max-width: 100%;
  }

  .features-carousel-swiper .swiper-wrapper {
    display: flex;
    /* Already Swiper uses flex, but we make sure */
    align-items: stretch;
    /* Ensures all slides are equal height */
  }

  .features-box {
    border-radius: 12px;
    padding: 20px 40px 20px 40px;
  }

  .features-box img {
    padding-bottom: 20px;
  }

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 75%;
  }

  .swiper-pagination-bullet {
    background-color: gray;
  }

  .swiper-pagination-bullet-active {
    background-color: #309af4;
  }

  #testimonials_section {
    margin-top: 50px;
    margin-bottom: 20px;
  }

  #testimonials_section>h2 {
    font-family: Asap;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;

  }

  #testimonials_section>p {
    font-family: Asap;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0%;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 0px !important;
  }

  .resources-header {
    max-width: 90%;
  }

  .resources-header h4 {
    font-family: Asap;
    font-weight: 700;
    font-size: 20px;
  }

  .resources-header p {
    font-family: Asap;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
  }

  .blog-box h5 {
    font-size: 12px;
  }

  .blog-box {
    padding: 10px;
  }

  .resources-section {
    margin-top: 20px;
  }

  .resources-box {
    width: 100%;
  }

  .more-specialty-section {
    padding-top: 50px;
  }

  .more-specialty-section h3 {
    font-size: 20px;
  }

  .more-specialty-section h4 {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .more-specialty-section .specialities-box {
    margin-top: 20px;
  }

  .more-specialty-section .more-box {
    padding: 5px 0px 5px 10px;
  }

  .more-specialty-section .more-header {
    gap: 8px;
  }

  .faq-header {
    display: flex;
    gap: 10px;
    margin-top: 50px;
    align-items: end;
  }

  .faq-section h3 {
    font-family: Asap;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    margin-bottom: 0px in !important;

  }

  .faq-section .faq-right .search-box h6 {
    font-family: Asap;
    font-weight: 400;
    font-size: 16px;
    text-align: center;

  }

  .faq-section .faq-row {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .faq-right {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .search-box {
    gap: 10px;
    display: flex;
    margin-bottom: 10px;
  }

  .search-box .icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }


  .faq-box h6 {
    font-size: 16px;
  }

  .faq-box .down-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .faq-box {
    gap: 10px;
    margin-top: 5px;
    padding-top: 5px;
    padding-left: 10px;
  }


  .faqs .line {
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .faq-answer {
    padding-left: 13%;
    padding-bottom: 5px !important;
  }

  .faq-answer p {
    margin-top: 5px;
    margin-bottom: 5px;
  }



}

@media (min-width: 768px) and (max-width: 991px) {

  .hero-section .demo-form {
    padding: 20px;
  }

  .hero-section h1 {
    font-size: 26px;
  }

  .hero-section h3 {
    font-size: 22px;
  }

  .hero-section .demo-form-section {
    top: 38%;
  }

  .scroll-container {
    margin-top: 135px !important;
  }

  .workflow-mobile-section.container {
    max-width: 100%;
  }

  .specialities-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .yt-iframe-home {
    margin-bottom: 10px;
    text-align: center;
  }

  .specialities-section .headers-box img {
    max-width: 50%;
    margin-bottom: 10px;
  }

  .specialities-section .headers-box h3 {
    font-size: 24px;
  }

  .specialities-section .headers-box h5 {
    font-size: 20px;
  }

  .specialities-section .headers-box span {
    font-size: 20px;
  }

  .workflow-mobile-section {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .workflow-mobile-section>img {
    width: 100% !important;
  }

  .wf-mob-heading {
    background-color: white;
    text-align: center;
    margin-top: -100px;
    padding: 10px;
    margin: -62% auto 48% auto;
    position: relative;
    width: 80%;
    border-radius: 5px;

  }

  .wf-mob-heading h3 {
    font-family: Asap;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    margin-bottom: 0px !important;
  }

  .workflow-carousel-swiper {
    padding-left: 10px !important;
    padding-right: 10px !important;
    width: 90%;
  }

  .wf-mob-box {
    padding: 20px;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 24px;
    background-color: #FFFFFF;
  }

  .wf-mob-header {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .wf-mob-header img {
    max-width: 13%;
  }

  .wf-mob-header h6 {
    margin-bottom: 0px;
    font-family: Open Sans;
    font-weight: 700;
    font-size: 24px;

  }

  .wf-mob-box>p {
    margin-top: 10px;
    font-family: Asap;
    font-weight: 300;
    font-size: 16px;
  }

  .wf-mob-details .detail-box {
    padding: 5px 10px 5px 10px;
    background-color: #EEEEEE;
    border-radius: 8px;
    margin-bottom: 10px;
  }


  .wf-mob-details .detail-box .detail-header {
    display: flex;
    gap: 5px;
    align-items: center;
  }

  .wf-mob-details .detail-box .detail-header img {
    max-width: 12%;
  }

  .wf-mob-details .detail-box .detail-header h6 {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 16px;
  }

  .wf-mob-details .detail-box p {
    margin-top: 3px;
    font-weight: 400;
    font-size: 15px;
    color: #1B1B1B;
    margin-bottom: 0px;
    line-height: 140%;
  }

  .workflow-mobile-section .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 88%;
  }

  .department-section h2 {
    font-size: 28px;
  }

  .corner-box p {
    font-size: 18px;
  }

  .department-section .label {
    font-size: 18px;
  }

  .inline-icon-text .content p {
    margin: 8px;
  }

  .inline-icon-text .content {
    line-height: 130%;
  }

  .department-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .features-box-sec {
    margin-top: 20px;
  }

  .features-section .features-heading h3 {
    font-size: 28px;
    line-height: 130%;
    margin-bottom: 20px !important;
  }

  .features-section h4 {
    font-size: 26px;
  }

  .features-section .cta-section .container {
    max-width: 100%;
  }

  .features-section .cta-section .cta-box p {
    font-size: 20px;
  }

  .features-section .cta-btn {
    font-size: 16px;
  }

  .features-section .cta-section .cta-box {
    padding: 10px 12px;
  }

  .blogs-section {
    margin-left: auto;
    margin-right: auto;
  }

  .resources-section {
    margin-top: 20px;
  }

  .resources-header p {
    line-height: 130%;
  }

  .more-specialty-section .more-box {
    padding: 5px 0px 5px 10px;
  }

  .more-specialty-section .more-header p {
    font-size: 14px;
  }


  .faq-section .faq-left p {
    font-size: 16px;
  }

  .faq-section .faq-left h5 {
    font-size: 20px;
  }

}

@media (min-width:992px) and (max-width: 1200px) {
  .specialty-box {
    gap: 5px;
    padding-left: 5px;
  }

  .specialty-box h6 {
    font-size: 12px;
  }

  .more-specialty-section .more-box {
    padding: 5px 0px 5px 10px;
  }


}

/* Mobile Text Animations - Slide from/to top */
.mobile-text-slide-out {
  animation: mobileTextSlideOut 0.9s ease-in-out forwards;
}

.mobile-text-slide-in {
  animation: mobileTextSlideIn 0.9s ease-in-out forwards;
}

@keyframes mobileTextSlideOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

@keyframes mobileTextSlideIn {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Image Animations - Slide from/to bottom */
.mobile-image-slide-out {
  animation: mobileImageSlideOut 0.9s ease-in-out forwards;
}

.mobile-image-slide-in {
  animation: mobileImageSlideIn 0.9s ease-in-out forwards;
}

@keyframes mobileImageSlideOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(100px);
    opacity: 0;
  }
}

@keyframes mobileImageSlideIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Text Animations - Slide from/to top */
.mobile-text-slide-out {
  animation: mobileTextSlideOut 0.9s ease-in-out forwards !important;
  transform: translateY(0);
  opacity: 1;
}

.mobile-text-slide-in {
  animation: mobileTextSlideIn 0.9s ease-in-out forwards !important;
  transform: translateY(-100px);
  opacity: 0;
}

@keyframes mobileTextSlideOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

@keyframes mobileTextSlideIn {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Image Animations - Slide from/to bottom */
.mobile-image-slide-out {
  animation: mobileImageSlideOut 0.9s ease-in-out forwards !important;
  transform: translateY(0);
  opacity: 1;
}

.mobile-image-slide-in {
  animation: mobileImageSlideIn 0.9s ease-in-out forwards !important;
  transform: translateY(100px);
  opacity: 0;
}

@keyframes mobileImageSlideOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(100px);
    opacity: 0;
  }
}

@keyframes mobileImageSlideIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Text Animations - Slide from/to top */
.mobile-text-slide-out {
  animation: mobileTextSlideOut 0.9s ease-in-out forwards !important;
}

.mobile-text-slide-in {
  animation: mobileTextSlideIn 0.9s ease-in-out forwards !important;
}

@keyframes mobileTextSlideOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

@keyframes mobileTextSlideIn {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Image Animations - Slide from/to bottom */
.mobile-image-slide-out {
  animation: mobileImageSlideOut 0.9s ease-in-out forwards !important;
}

.mobile-image-slide-in {
  animation: mobileImageSlideIn 0.9s ease-in-out forwards !important;
}

@keyframes mobileImageSlideOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(100px);
    opacity: 0;
  }
}

@keyframes mobileImageSlideIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Ensure smooth transitions and prevent animation conflicts */
.hero-text,
.animated-image {
  transition: none;
  /* Remove any existing transitions that might conflict */
}

/* Optional: Adjust animation distance for very small screens */
@media screen and (max-width: 480px) {
  @keyframes mobileTextSlideOut {
    0% {
      transform: translateY(0);
      opacity: 1;
    }

    100% {
      transform: translateY(-80px);
      opacity: 0;
    }
  }

  @keyframes mobileTextSlideIn {
    0% {
      transform: translateY(-80px);
      opacity: 0;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes mobileImageSlideOut {
    0% {
      transform: translateY(0);
      opacity: 1;
    }

    100% {
      transform: translateY(80px);
      opacity: 0;
    }
  }

  @keyframes mobileImageSlideIn {
    0% {
      transform: translateY(80px);
      opacity: 0;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
}






/** privacy policy css **/

.banner-image-block {
  background-image: url('/public/assets/images/BannerImage.svg');
  background-size: cover;
  aspect-ratio: 1440 / 447;
  align-content: center;
}


.banner-image-block-mobile {
  display: none;
}




.banner-content-section {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-image-block-two {
  background-image: url('/public/assets/images/medical-banner.svg');
  background-size: cover;
  aspect-ratio: 1440 / 447;
  align-content: center;
}

.banner-image-block-three {
  background-image: url('/public/assets/images/Gdp-privacybanner.svg');
  background-size: cover;
  aspect-ratio: 1440 / 447;
  align-content: center;
}

.banner-image-block-four {
  background-image: url('/public/assets/images/cookieprivacybanner.svg');

  background-size: cover;
  aspect-ratio: 1440 / 447;
  align-content: center;
}

.banner-image-block-five {
  background-image: url('/public/assets/images/gdprclientbanner.svg');
  background-size: cover;
  aspect-ratio: 1440 / 447;
  align-content: center;
}


.banner-image-block-six {

  background-image: url('/public/assets/images/emailbanner.svg');
  background-size: cover;
  /* background-position: center bottom; */
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 1440 / 447;
  align-content: center;
}


.backround-container {
  background-image: url('/public/assets/images/dotBackground.svg');
  background-size: cover;
  background-position: center top;
  height: auto;
  width: 100%;
  background-repeat: no-repeat;

}

.bannersubimage {
  height: 23.5rem;
  width: 100%;
}



.banner-text {
  white-space: pre-line;
  font-size: 45px;
  color: #fff;
  line-height: 1.2;
}

.info-text {
  white-space: pre-line;
  line-height: 1.3;
}

.topic-card {
  width: 21.75rem;
  height: 12rem;
  background-color: #2681DC;
  position: relative;
  display: flex;
  justify-content: center;

}


.topic-card-parent {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-bottom: 7%;
}

.sub-text-block {
  width: 80%;
  background-color: #0654AB;
  border-radius: 12px;
  height: 4.2rem;
  position: absolute;
  bottom: -19%;
  text-align: center;
  padding: 4%;

}

.sub-text-block a {
  font-weight: 600;
}

.card-image {
  height: 82%;
  padding: 5%;
}

.notice-block {
  border-radius: 15px;
  border: 1px solid #CECECE;
  padding: 20px 30px;
  background-color: #fff;
  margin-bottom: 2%;
}

.privacy-mail-block {
  background-color: #ECECEC;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
}

.data-text {

  font-weight: 600;
}

.email-text {

  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 5px;
}

/* .notice-text{
  text-align: justify;
} */

.semibld-text {
  font-weight: 600;
}

.container-block {
  padding: 5% 0;
}





.icon-image {
  width: 20px;
}

.icon-image-two {
  width: 17px;
}

.rights_list {
  padding-left: 1.5rem !important;
}

.rights_list ::marker {
  font-weight: bold;
}

.title-text {
  font-weight: 600;
}



.table-responsive {
  border: 1px solid #ccc;
  border-radius: 12px;
}

.table-responsive .table {
  border-collapse: separate;
  border-spacing: 0;
}



.table-responsive .table thead {
  border-bottom: 1px solid #ccc;
}

.table-bordered>:not(caption)>*>* {
  border-width: 0 1px 1px 0px;
}

.table>:not(:last-child)>:last-child>* {
  border-bottom-color: inherit;
}


.table-responsive .table th {
  font-size: 14px;
  font-weight: 600;
  padding: 1.2% !important;
  border-right: 1px solid #ccc;
}

.table-responsive .table td {
  font-size: 13px;
  padding: 2% !important;
  vertical-align: middle;
  border-right: 1px solid #ccc;
}

.custom-row td {
  border-bottom: none;
}

.custom-row td:last-child {
  border: none;
}

.table-responsive .table td:last-child {
  border-right: none;
}

.table-responsive .table th:last-child {
  border-right: none;
}

.topic-conatiner {
  margin-bottom: 5%;
}

#captureicon {
  cursor: pointer;
}

/* hr{
  background-color: #E2E2E2 !important;
 } */

.hr-line {
  margin: 3.2% 0 3% 0 !important;
  background-color: #E2E2E2 ;
  opacity: 0.7;
}


#banner-line{
  border-bottom: 1px solid #196CB8 ;
  padding-bottom: 1.3rem;

  
}

.boldText {
  font-weight: 600;
}

.sub-text-block span {
  font-weight: 600;
}

.topic-text{
  margin-bottom:1.4rem;
  padding-top: 4.2rem;
}

.iconblock{
  padding: 5px;
  border-radius: 5px;
  height:30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.tooltip-inner{
  background-color: #359EFF !important;
}
.tooltip-arrow::before
{
  border-top-color: #359EFF !important;
}

.grid-gap {
  margin-top: 24px;
}
@media (max-width: 767px) {


  .banner-image-block,
  .banner-image-block-three,
  .banner-image-block-four,
  .banner-image-block-five,
  .banner-image-block-two,
  .banner-image-block-six {
    display: none;
  }





  .mobile-line{
    display: block !important;
  }

  .grid-gap {
    margin-top: 0 !important;
  }

  .banner-image-block-mobile {
    background-image: url('/public/assets/images/mobile-banner.svg');
    background-size: cover;
    align-content: center;
    aspect-ratio: 430 / 385;
    display: block;
  }

  .backround-container {
      background-position: top;
    background-size: auto;
  }

  .topic-text {
        margin-bottom: 1.2rem !important;
    padding-top: 3rem !important;
  }

  .topic-card-parent{
    padding-top: 0 !important;
  }

  .banner-content-section {
    flex-direction: column;
  }

  .privacy-block {
    padding: 0 5% 0 5% !important;
    margin: 8% 0 5% 0;
  }

  .bannersubimage {
    height: 12rem;
    margin-top: 2.9rem;
  }

 
  .banner-text {
    font-size: 17px;
    text-align: center;
  }

  .info-text {
    font-size: 15px !important;
    text-align: center;
    line-height: 1.2;
    font-weight: 400;

  }

  .info-text-two{
       font-size: 15px !important;
    text-align: center;
    line-height: 1;
    margin-top: 1.3rem;
  }

  .topic-conatiner {
    margin-bottom: 10%;
  }

  .notice-block {
    margin-bottom: 5%;
    padding: 20px 20px;
  }

  .title-text {
    font-size: 1.1rem;
  }

  .privacy-mail-block {
    flex-direction: column;
    padding: 10px;
  }

  .table-responsive .table th {
    font-size: 13px;
    padding: .5rem .5rem !important;
    vertical-align: middle;
  }

  .table-responsive .table td {
    font-size: 12px;
    padding:8px !important;
  }

  .data-text {
    margin-bottom: 5px !important;
  }

  .privacy-container {
    margin: 5% 0% 0% 0% !important;
  }

  .title-block {
    margin-top: 2% !important;
  }

  .privacy-lists,
  .rights_list {
    padding-left: 1rem !important;
  }

  .privacy-lists li {
    margin-bottom: 0.5rem !important;
  }

  .complaint-link {
    margin-left: 0 !important;
    line-height: 1;
  }

  .service_provider_text {
    margin-left: 0 !important;
  }

  .read-text {
    font-size: 15px !important;
  }

  .grp-block{
    margin-bottom: 4% !important;
  }

 .grp-block-two{
      padding-bottom: 6%;
    border-bottom: 1px solid #E2E2E2;
    margin-bottom: 6%;

 }

  .grp-block-three{
        padding-top: 6%;
    border-top: 1px solid #E2E2E2;
    margin-top: 2%;
    padding-bottom: 2%;
  
 }
#head-text{
  font-size: 1.7rem !important;
}
}

@media (min-width: 768px) and (max-width: 991px) {
  .topic-card {
    width: 19rem;
  }
   .topic-card-parent{
    padding-top: 0 !important;
  }
  
  .head-text{
  font-size: 1.7rem;
  text-align: center;
  color:#fff;
}


  .banner-image-block,
  .banner-image-block-three,
  .banner-image-block-four,
  .banner-image-block-five,
  .banner-image-block-two,
  .banner-image-block-six {
    display: none;
  }

  .banner-image-block-mobile {
    background-image: url('/public/assets/images/Banner.svg');
    background-size: cover;
    aspect-ratio: 1440 / 447;
    align-content: center;
    display: block;
  }

  .bannersubimage {
    height: 12rem;
    padding-right: 8%;
  }

  .privacy-block {
    padding: 0 5% 0 5% !important;
    margin: 5% 0 5% 0;
  }

  .bannersubimage {
    height: 12rem;
  }

  .banner-text {

    font-size: 25px;
    margin-bottom: 2% !important;
    line-height: 1;
  }

  .info-text,.info-text-two{
    font-size: 15px !important;
    white-space: normal;
    margin-bottom: 2% !important;
  }

  .topic-conatiner {
    margin-bottom: 10%;
  }

  .topic-text {
    margin-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
  }

  .title-block {
    margin-top: 0 !important;
  }

  .privacy-lists,
  .rights_list {
    padding-left: 1rem !important;
  }

  .table-responsive .table th {
    font-size: 13px;
    padding: .5rem .5rem !important;
    vertical-align: middle;
  }

  .privacy-lists li {
    margin-bottom: 0.5rem !important;
  }

  .complaint-link {
    margin-left: 0 !important;
    line-height: 1;
  }

  .privacy-container {
    margin: 5% 0% 0% 0% !important;
  }

  .service_provider_text {
    margin-left: 0 !important;
  }

  .notice-block {
    margin-bottom: 5%;
    padding: 20px 20px;
  }

  #banner-line{
    border-bottom: none;
    padding-bottom: 0;
  }
  .grp-block-two,.grp-block-three{
    padding: 0;
    margin: 0;
    border: none;
  }
}

@media (min-width: 992px) and (max-width: 1300px) {
  .title-block {
    margin-top: 2% !important;
  }

   .topic-card-parent{
    padding-top: 0 !important;
  }

  .privacy-lists,
  .rights_list {
    padding-left: 1rem !important;
  }

  .privacy-lists li {
    margin-bottom: 0.5rem !important;
  }

  .complaint-link {
    margin-left: 0 !important;
    line-height: 1;
  }

  .privacy-container {
    margin: 5% 0% 0% 0% !important;
  }

  .service_provider_text {
    margin-left: 0 !important;
  }

  .title-text {
    font-size: 1.1rem;
  }

  .notice-block {
    padding: 20px 20px;
  }

  .read-text {
    font-size: 15px !important;
  }



  .banner-text {
    font-size: 27px;
  }

  .info-text {
    font-size: 16px !important;
  }

   #banner-line{
    border-bottom: none;
    padding-bottom: 0;
  }

   .grp-block-two,.grp-block-three{
    padding: 0;
    margin: 0;
    border: none;
  }

}

.mobile-line{
  display: none;
}






