.knowledge-domains {
  margin: 50px 0;

  .section-title {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: #222222;
    text-transform: uppercase;
    text-align: center;

    @media screen and (max-width: 1580px) {
      font-size: 25px;
      line-height: 30px;
    }

    @media screen and (max-width: 960px) {
      font-size: 20px;
      line-height: 24px;
    }

    @media screen and (max-width: 669px) {
      font-size: 16px;
      line-height: 19.5px;
    }
  }

  .knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 50px 0;
    position: relative;

    @media screen and (max-width: 991px) {
      display: none;
    }
  }

  .knowledge-carousel {
    display: none;
    margin: 50px 0;

    @media screen and (max-width: 991px) {
      display: block;
      margin: 30px 0;
    }

    .knowledge-item {
      border-radius: 6px;
      margin: 10px 2px;

      .icon {
        width: 48px;
        height: 48px;

        .foreground-img {
          width: 30px;
          height: 30px;
        }
      }
    }

    .slick-dots {
      bottom: -40px !important;
      right: 0;

      li {
        margin: 0;
      }
    }

    .slick-dots li.slick-active button:before {
      font-size: 12px !important;
      color: #6800ff !important;
    }

    .slick-dots li:not(.slick-active) button:before {
      font-size: 12px !important;
      color: #6800ff !important;
      opacity: 15% !important;
    }
  }

  .knowledge-item {
    display: flex;
    align-items: center;
    background-color: #efe8ff;
    border-radius: 30px;
    padding: 10px;

    .icon {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 70px;
      height: 70px;

      .background-knowledge-icon {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
      }

      .foreground-img {
        position: relative;
        z-index: 2;
        /* width: 50px; */
      }
    }

    .name {
      width: 100%;
      text-align: center;

      h3 {
        font-size: 20px;
        line-height: 22px;
        font-weight: 700;
        color: #6800FF;
        text-align: center;
        margin: 0;

        @media screen and (max-width: 1580px) {
          font-size: 18px;
        }

        @media screen and (max-width: 960px) {
          font-size: 17px;
        }

        @media screen and (max-width: 669px) {
          font-size: 16px;
        }
      }
    }
  }
}


.gradients-domain-sections {
  width: 100%;
  position: absolute;
  z-index: -1;

  .gradient-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #6800FF;
    filter: blur(120px);
  }

  .left-purple {
    background-color: #6800FF;
    margin-left: -125px;

    @media screen and (max-width: 991px) {
      width: 130px;
      height: 130px;
      margin-left: -60px;
    }
  }

  .left-bottom-red {
    background-color: #E92651;
    filter: blur(140px);
    margin-top: 80px;

    @media screen and (max-width: 991px){
      margin-top: 180px;
    }
  }

  .right-red {
    background-color: #E92651;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 90px;
    margin-right: -60px;

    @media screen and (max-width: 991px) {
      display: none;
    }
  }

  @media screen and (max-width: 991px) {
    width: auto;
    margin-top: 140px;
  }
}

.gradients-domain-sections-mobile {
  display: none;

  @media screen and (max-width: 991px) {
    display: block;
  }
}