
.section-heading h1 {
  font-weight: 500;
  margin-bottom: 35px;
}

/* Navigation Links color will be white in the drafting page */
/* .site-header .nav-dark .site-main-menu li a {
    color: #ffffff;
} */

/*---------------------------------------- 
    Solutions Banner Styles (BEM) 
-----------------------------------------*/

.solutions-banner {
  background-color: #f5f5f5;
  padding-top: 120px;
  padding-bottom: 30px;
}
.solutions-banner__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #d64000;
}
.solutions-banner__subtitle {
  margin-bottom: 20px;
}
.solutions-banner__description {
  margin-bottom: 20px;
}
.solutions-banner__image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.solutions-banner .btn {
  background-color: #d64000;
  color: #fff;
}
/*---------------------------------
 Feature section styling start
--------------------------------- */

.feature-section {
  padding: 60px 0;
  background-color: #fcf2da;
}
.feature-section-heading {
  text-align: left;
  /* margin-bottom: 40px; */
}
.feature-section-heading h1 {
  font-size: 30px;
  /* font-weight: 600; */
  line-height: 1.5;
}

.feature-section .feature-heading {
  font-size: 25px;
  font-weight: 400;
}

.feature-section .feature-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.feature-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  &:hover {
    transform: scale(1.05);
  }
}

.feature-section .feature-link {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.feature-section .feature-link a {
  font-size: 16px;
  text-decoration: underline;
  color: #005da2ff;
  margin-right: 5px;
}
.feature-section .feature-link svg {
  color: #d64000;
}

.feature-section .contact-link {
  color: #005da2ff;
  font-size: 14px;
  text-decoration: underline;
}

/*------------------------
    Choose Us Section 
 ------------------------*/
.why-choose-us .section-heading h1 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  color: #d64000;
}
.why-choose-us .section-heading {
  margin-bottom: 40px;
}
.choose-us-item {
  border: 1px solid #000;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.choose-us-item h2 {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 500;
}
.choose-us-item p {
  margin-bottom: 0;
}

/* document intelligence value */
.document-value h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.4;
}

.document-value iframe {
  border-radius: 8px;
}

.document-value .section-heading h1 {
  color: #d64000;
}

/* insight numbers */
.numbers .section-heading h1 {
  color: #d64000;
}
.numbers h2 {
  font-weight: 500;
}
.content-wrapper {
  border: 1px solid #000;
  border-radius: 8px;
}

/* related products */
.related-products .section-heading {
  margin-bottom: 30px;
}
.related-products .section-heading h1 {
  font-weight: 500;
}
.related-product-item {
  border-radius: 8px;
}
.related-products h3 {
  font-weight: 500;
}
.related-products a {
  text-decoration: underline;
}

/* document intelligence support */

.document-intelligence-support {
  background-color: #f8eadd;
}

.document-intelligence-support .support-content h1 {
  font-weight: 400;
}
.document-intelligence-support .support-content a {
    text-decoration: none;
    display: inline-block;
    background: #d64000;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
}
.document-intelligence-support .support-card {
  padding: 25px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.document-intelligence-support .support-card h4 {
  font-weight: 400;
  margin-bottom: 15px;
}
.document-intelligence-support .support-card a {
  text-decoration: underline;
}

.document-intelligence-support .support-cards {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



/* ---------------------------
Drafting Search Case Laws styles
------------------------------*/
.draft-banner h2 {
  color: #333;
}
.draft-banner {
  position: relative;
  /* background: #3c758d; */
  background: #ffffff;
  overflow: hidden;
  color: #333;
}
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background-image: radial-gradient(white 1px, transparent 1px); */
  background-image: radial-gradient(#d64000 2px, transparent 1px);
  background-size: 50px 50px;
  animation: move 20s linear infinite;
  opacity: 0.3;
}

@keyframes move {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100px);
  }
}

.why-us-inner h2 {
  font-size: 1.5rem;
}

.drafting-features {
  background: #f4f4f4;
}

/* --------------------------------
          Real time data css
  -----------------------------------*/

.real-time-data-banner {
  padding: 120px 0;
}
.real-time-data-banner a {
  text-decoration: underline;
}


/*------------------------
    Responsive Styles 
 ------------------------*/
@media screen and (max-width: 767px) {
  .section-heading h1 {
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 30px;
  }

  /* Solutions Banner Responsive */
  .solutions-banner {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  .solutions-banner__title {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .solutions-banner__subtitle {
    font-size: 23px;
    margin-bottom: 10px;
  }
  .solutions-banner__description {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .solutions-banner__btn {
    width: 100%;
    display: block;
  }
  .section-heading h1 {
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 20px;
    line-height: 1.3;
  }
  .feature-section .feature-heading {
    font-size: 18px;
    font-weight: 400;
  }
  .feature-section .feature-description {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
  }
  .feature-section .feature-link a {
    font-size: 14px;
    margin-right: 8px;
  }
  /* why choose us section */
  .why-choose-us .section-heading h1 {
    font-size: 20px;
  }
  .related-products h3 {
    font-size: 20px;
  }
  .related-product-item {
    margin-bottom: 1rem;
  }
  .document-intelligence-support .support-content h1 {
    font-size: 1.5rem;
  }
  .document-value h4 {
    font-size: 18px;
    font-weight: 400;
    margin: 15px 0;
  }
  .real-time-data-banner h1 {
    font-size: 30px;
  }
  .real-time-data-banner h2 {
    font-size: 24px;
  }

  .real-time-data-banner a {
    font-size: 14px;
  }
  .call-to-action .action-content .pix-btn {
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 500;
    position: relative;
    z-index: 2;
  }
  .drafting-features h4 {
    font-size: 18px;
  }
  .realtime-data-features h1 {
    font-size: 30px;
  }
  .why-us-inner{
    margin-bottom: 1rem;
  }
  .why-us-inner h2{
    font-size: 18px;
  }
  .why-us-inner p{
    font-size: 14px;
  }
}