:root {
  --font-family: "Poppins", sans-serif;
    --font-size-base: 18px;
    --line-height-base: 2.7rem;
    --font-weight-normal: 400;
    --color-text: #000;
    --primary-color: #a042db;
    --bg-secondary-color: #f2f2f2;
    --bg-footer: #F6ECFB;
    --heading1-size: 5.7rem;
    --heading1-line-height: 7.7rem;
    --heading2-size: 3.6rem;
    --heading2-line-height: 4.8rem;
    --heading3-size: 2.1rem;
    --heading3-line-height: 2.7rem;
    --intro-font-size: 2.2rem;
    --intro-line-height: 3.3rem;
    --white-color: #fff;
    --dropdown-btn-color: #E3C6F4;
    --cta-primary-color: #fff;
    --cta-primary-bg: var(--primary-color);
    --cta-primary-hover-color: var(--primary-color);
    --cta-primary-hover-bg: rgba(0, 0, 0, 0);
    --accordion-hover-bg: #D9B3F1;
    --cta-secondary-color: var(--primary-color);
    --cta-secondary-hover-bg: var(--primary-color);
    --cta-secondary-hover-color: #fff;
    --list-color: var(--primary-color);
    --list-hover-bg: #e3c6f4;
    --fw-700: 700;
  }
  * {
    margin-top: 0;
  }
  html{
    font-size: 10px;
    scroll-behavior: smooth !important;
  }
  .row > *{
    padding-left:16px;
    padding-right:16px;
  }
  body {
    font: var(--font-weight-normal) var(--font-size-base) /
      var(--line-height-base) var(--font-family);
    color: var(--color-text);
    overflow-x: hidden;
    scroll-behavior: smooth !important;
  }
  main{
    overflow-x: hidden;
  }
  .module-name__title {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: bold;
    margin-bottom: 0;
  }
  h1, .h1, section .h1, .rad-big {
    font: var(--heading1-size) / var(--heading1-line-height) var(--font-family);
    margin-bottom: 40px;
    font-weight: var(--fw-700);
   
  }
  h2 {
    font: var(--heading2-size) / var(--heading2-line-height) var(--font-family);
    margin-bottom: 40px;
    font-weight: var(--fw-700);
  }
  h3 {
    font-size: var(--heading3-size);
    margin-bottom: 20px;
    font-weight: var(--fw-700);
    line-height:var(--heading3-line-height);
    color:var(--primary-color);
  }
  p {
    font-size: var(--font-size-base);
    line-height: 2.6rem;
    margin-bottom: 20px;
  }
  a:focus-visible{
      outline: 2px solid #000 !important;
      outline-offset: 2px;
    }
    .cta--primary {
      background-color: var(--cta-primary-bg);
      border: 2px solid var(--primary-color);
      border-radius: 10px;
      padding: 8px 16px;
      color: var(--cta-primary-color);
      font-size: 1.6rem;
      text-decoration: none;
      transition: 0.4s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }
    .cta--primary:hover {
      background-color: var(--cta-primary-hover-bg);
      color: var(--cta-primary-hover-color);
    }
    .cta--secondary {
      background: #fff;
      color: var(--cta-secondary-color);
      border: 2px solid #fff;
      border-radius: 30px;
      padding: 8px 26px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.4s;
      display: inline-flex;
      align-items: center;
      font-size: 1.6rem;
      justify-content: center;
      gap: 14px;
    }
    .cta--secondary:hover {
      background: var(--cta-secondary-hover-bg);
      color: var(--cta-secondary-hover-color);
    }
    .bg-primary-color {
      background-color: var(--primary-color);
    }
    .bg-secondary-color {
      background-color: var(--bg-secondary-color);
    }
    .bg-footer{
      background-color: var(--bg-footer);
    }
    .text-white {
      color: var(--white-color);
    }
    img {
      width: 100%;
    }
    .intro, .intro p, .rad-introtext {
      font: var(--intro-font-size) / var(--intro-line-height) var(--font-family);
    }
    ul {
      display: inline-block;
      margin-top: 0;
    }
    ul:last-child{
      margin-bottom: 0;
    }
    ul li:last-child{
      margin-bottom: 0;
    }
    li {
      margin-bottom: 15px;
    }
    ul li::marker {
      color: var(--list-color);
    }
    section ul li{
      text-decoration: none;
      color: #000;
      position:relative;
      
    }
    ul li,
    ul li a {
      text-decoration: none;
      color: var(--list-color);
      position:relative;
    }
    ul li,
    ul li a {
      text-decoration: none;
      color: var(--list-color);
      position:relative;
    }
    ul li a::after {
      content: "";
      display: block;
      position: absolute;
      height: 2px;
      width: 0;
      background-color: var(--list-hover-bg);
      transition: 0.2s;
    }
    ul li a:hover::after {
      width: 100%;
      transition: 0.4s;
    }
    .module-config-text p a{
      color:var(--primary-color);
    }
    ol {
      counter-reset: custom-counter;
      list-style: none;
      padding-left: 0;
      margin-top: 0;
    }
    ol li {
      counter-increment: custom-counter;
      position: relative;
      padding-left: 5rem;
      margin-top: 0;
    }
    ol li::before {
      content: counter(custom-counter) ".";
      color: var(--primary-color);
      font-weight: 600;
      position: absolute;
      left: 0;
      border-radius: 50%;
      height: 30px;
      width: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--cta-primary-color);
      z-index: 0;
    }
    .container-fluid {
      max-width: 1270px;
      margin: 0 auto;
      padding:0 28px;
    }
    .pt-lg-1 {
      padding-top: 130px !important;
    }
    .pb-lg-1 {
      padding-bottom: 130px !important;
    }
    .bg-grey {
      background-color: var(--bg-secondary-color);
    }
    .bg-none {
      background: none;
    }
    .border-none {
      border: none;
    }
    table{
      width: 100%;
      margin-bottom: 20px;
    }
    table caption{
      margin-top: 20px;
    }
    table thead{
      background-color: var(--primary-color);
      color: var(--white-color);
    }
    table td{
      border: 1px solid var(--list-hover-bg);
    }
    table th,table td{
      padding: 10px 15px;
    }
    .rad-highlight{
      color:var(--primary-color);
    }
    .invisible {
      position: absolute;
      left: -9999999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
      visibility: visible !important;
      background-color: transparent;
    }
    @media all and (max-width:991.98px){
    
      h1{
        margin-bottom:20px;
      }
      .pt-lg-1 {
        padding-top: 60px !important;
      }
      .pb-lg-1 {
        padding-bottom: 60px !important;
      }
    }
    @media all and (max-width:768px){
    p {
    font-size: 1.6rem !important;
    line-height: 2.4rem !important;
    }
    .container-fluid{
    padding: 0 12px;
    }
      table{
        width:768px;
      }
      .table-wrapper{
        overflow-x:auto;
      }
      h1{
        font-size:3.8rem;
        line-height:4.6rem;
      }
      h2{
        font-size:2.8rem;
        line-height:4.2rem;
        margin-bottom:20px;
      }
      .intro{
        font-size:2.4rem;
        line-height:3.6rem;
      }
      .pt-lg-1 {
        padding-top: 30px !important;
      }
      .pb-lg-1 {
        padding-bottom: 30px !important;
      }
    }
    .pt-0 {
      padding-top: 0 !important;
    }
    .pt-10 {
      padding-top: 1rem;
    }
    .pt-20 {
      padding-top: 2rem;
    }
    .pt-30 {
      padding-top: 3rem;
    }
    .pt-40 {
      padding-top: 4rem;
    }
    .pt-50 {
      padding-top: 5rem;
    }
    .pt-60 {
      padding-top: 6rem;
    }
    .pt-70 {
      padding-top: 7rem;
    }
    .pt-80 {
      padding-top: 8rem;
    }
    .pt-90 {
      padding-top: 9rem;
    }
    .pt-100 {
      padding-top: 10rem;
    }
    .pb-0 {
      padding-bottom: 0 !important;
    }
    .pb-10 {
      padding-bottom: 1rem;
    }
    .pb-20 {
      padding-bottom: 2rem;
    }
    .pb-30 {
      padding-bottom: 3rem;
    }
    .pb-40 {
      padding-bottom: 4rem;
    }
    .pb-50 {
      padding-bottom: 5rem;
    }
    .pb-60 {
      padding-bottom: 6rem;
    }
    .pb-70 {
      padding-bottom: 7rem;
    }
    .pb-80 {
      padding-bottom: 8rem;
    }
    .pb-90 {
      padding-bottom: 9rem;
    }
    .pb-100 {
      padding-bottom: 10rem;
    }
    .mt-0 {
      margin-top: 0 !important;
    }
    .mt-10 {
      margin-top: 1rem;
    }
    .mt-20 {
      margin-top: 2rem;
    }
    .mt-30 {
      margin-top: 3rem;
    }
    .mt-40 {
      margin-top: 4rem;
    }
    .mt-50 {
      margin-top: 5rem;
    }
    .mt-60 {
      margin-top: 6rem;
    }
    .mt-70 {
      margin-top: 7rem;
    }
    .mt-80 {
      margin-top: 8rem;
    }
    .mt-90 {
      margin-top: 9rem;
    }
    .mt-100 {
      margin-top: 10rem;
    }
    .mb-0 {
      margin-bottom: 0 !important;
    }
    .mb-10 {
      margin-bottom: 1rem;
    }
    .mb-20 {
      margin-bottom: 2rem;
    }
    .mb-30 {
      margin-bottom: 3rem;
    }
    .mb-40 {
      margin-bottom: 4rem;
    }
    .mb-50 {
      margin-bottom: 5rem;
    }
    .mb-60 {
      margin-bottom: 6rem;
    }
    .mb-70 {
      margin-bottom: 7rem;
    }
    .mb-80 {
      margin-bottom: 8rem;
    }
    .mb-90 {
      margin-bottom: 9rem;
    }
    .mb-100 {
      margin-bottom: 10rem;
    }
    
.modal-content.bg-none.border-none {
    background: transparent;
}