    .iq-features {
      background: #263452;
      padding: 60px 0;
      overflow: hidden;
    }

    .holderCircle {
      width: 550px;
      height: 550px;
      position: relative;
      margin: auto;
      border-radius: 50%;
      border: 1px dashed white;
    }

    .holderCircle::before {
      content: '';
      display: block;
      position: absolute;
      width: 30px;
      top: 47%;
      left: 47%;
      background: white;
      height: 30px;
      border-radius: 50%;
      border: 1px dashed white;
    }

    .dotCircle {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      transform: rotate(0deg);
    }

    .itemDot {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: transparent;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      line-height: 60px;
      color: #333;
      position: absolute;
      cursor: pointer;
      transition: 0.3s;
    }

    .itemDot.active {
      /* background: white; */
      /* color: #fff; */
      width: 130px;
      height: 130px;
    }

    .itemDot i {
      font-size: 20px;
    }

    .forActive {
      display: none;
    }

    .contentCircle {
      position: relative;
      padding: 30px;
    }

    .CirItem {
      display: none;
      animation: fadeIn 0.5s ease-in-out;
    }

    .CirItem.active {
      display: block;
    }

    .title-box {
      padding: 20px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    }

    .title-box h2 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .title-box p {
      font-size: 15px;
      color: #555;
    }


    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @media (min-width: 768px) {
      .row {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
      }

      .col-lg-6 {
        width: 50%;
        padding: 20px;
      }
    }

    @media (max-width: 767px) {
      .col-lg-6 {
        width: 100%;
      }

      .holderCircle {
        margin-bottom: 40px;
      }
    }