
/* privacy Policy css */
    .choose-box {
      position: relative;
      padding-left: 60px;
    }

    .choose-box::before {
      content: "";
      position: absolute;
      left: 20px;
      top: 0;
      bottom: -30px;
      width: 2px;
      background: rgba(0, 89, 255, 0.4);
    }

    .choose-circle {
      position: absolute;
      left: 10px;
      top: 5px;
      width: 20px;
      height: 20px;
      border: 2px solid var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .choose-circle::after {
      content: "";
      width: 8px;
      height: 8px;
      background: #fff;
      border-radius: 50%;
    }

    .choose-icon {
      font-size: 28px;
      margin: 20px 0;
    }

    .choose-box h5 {
      font-size: 25px;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--primary);
    }

    .choose-box p {
      font-size: 15px;
      color: var(--light);
      margin-bottom: 20px;
    }

    .choose-box.MX-WDTH p {
      max-width: 1200px !important;
    }

    .choose-section .right-col::before {
      content: "";
      position: absolute;
      top: 30%;
      left: 40%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(166, 255, 0, 0.18) 0%, transparent 70%);
      filter: blur(80px);
      z-index: 0;
      pointer-events: none;
    }

    .choose-box {
      position: relative;
      z-index: -1;
    }

    .choose-icon figure {
      height: 70px;
      width: 70px;
      background: linear-gradient(45deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
      clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
      transition: .5s;
    }

    .choose-box:hover figure {
      background: #fff;
      border-color: #006efe;
      outline-color: #006efe;
      transform: rotate(360deg);
    }

    .choose-box:hover figure img {
      filter: invert(1);
    }

    .data-para {
      color: #333;
    }

    .data-para {
      color: #333 !important;
    }

    .cs-dot::after {
      background: #33333391;
    }

.terms-list li::before {
    content: "›";
    color: #006efe;
    font-weight: bold;
    margin-right: 8px;
    font-size: 26px;
}

    .terms-list li {
      margin-bottom: 10px;
      list-style-type: none;
    }

    .dark-bg {
      padding: 80px 0px;
      text-align: justify;
    }

    /* Responsive */

    @media (max-width: 667px) {
        .choose-box {
            padding-left: 40px;
        }
        .terms-list{
            padding-left: 1rem;
        }
    }
    
    @media (max-width: 414px){
        .choose-box h5{
            font-size: 22px;
        }
    }
    
   