.flywheel-leads {
    padding: 80px 0;
    position: relative;
}

.flywheel-leads-heading {
    margin: 0 auto 55px;
    text-align: center;
}

.flywheel-leads-heading .rsg-heading-text-title {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #262626;
    margin: 0 0 22px;
}

.flywheel-leads-heading .rsg-heading-text-description {
    max-width: 790px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.35;
    color: #262626;
}

.flywheel-leads-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center;
}

.flywheel-leads-left {
    max-width: 520px;
}

.flywheel-leads-item {
    margin-bottom: 26px;
}

.flywheel-leads-item-title {
    color: #262626;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 12px;
}

.flywheel-leads-item-text {
    color: #262626;
    font-size: 16px;
    line-height: 1.35;
}

.flywheel-leads-item-text p {
    margin: 0;
}

.flywheel-leads-right {
    display: flex;
    justify-content: center;
    align-items: center;
}


.flywheel-leads-bottom {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}



@media (max-width: 767px) {
.flywheel-leads-left {
    max-width: 100%;
}
}
@media (max-width: 991px) {
.flywheel-leads-left {
    max-width: 100%;
}
	.circle-process, .flywheel-graphic {
    width: auto !important;
    height: auto !important;
}
	.circle-title {
    font-size: 14px !important;
    letter-spacing: 1px !important;
}
	.title-right {
    right: -13px !important;
	}
	.title-left {
    left: -32px !important;
	}
    .flywheel-leads-content {
        grid-template-columns: 100%;
        gap: 45px;
    }

    .flywheel-leads-heading .rsg-heading-text-title {
        font-size: 34px;
    }

    .flywheel-graphic {
        width: 360px;
        height: 360px;
    }

    .flywheel-label {
        font-size: 16px;
    }

    .flywheel-label-right {
        right: -20px;
    }

    .flywheel-label-left {
        left: -28px;
    }
}



/* Css */

.circle-process {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.circle-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Titles */
.circle-title {
  position: absolute;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: showTitle 0.4s ease forwards;
}

.title-top {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.4s;
}

.title-right {
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 1.4s;
}

.title-bottom {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 2.4s;
}

.title-left {
  left: -90px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 3.4s;
}

/* Outer copper circle */
.outer-copper-ring {
  fill: none;
  stroke: #9b623c;
  stroke-width: 7;
  stroke-linecap: round;

  stroke-dasharray: 1068;
  stroke-dashoffset: 1068;

  transform: rotate(-90deg);
  transform-origin: center;

  animation: drawOuterCopper 4s ease forwards;
}

/* Plus markers */
.plus {
  stroke: #9b623c;
  stroke-width: 8;
  stroke-linecap: square;
  opacity: 0;
  animation: showPlus 0.25s ease forwards;
}

.plus-top {
  animation-delay: 0.1s;
}

.plus-right {
  animation-delay: 1.1s;
}

.plus-bottom {
  animation-delay: 2.1s;
}

.plus-left {
  animation-delay: 3.1s;
}

/* Inner black/gray animated circle */
.inner-black-ring {
  fill: none;
  stroke: url(#innerGradient);
  stroke-width: 8;
  stroke-linecap: round;
  marker-end: url(#arrowHead);

  stroke-dasharray: 722;
  stroke-dashoffset: 722;

  transform: rotate(-45deg);
  transform-origin: center;

  animation: drawInnerBlack 3s linear forwards 0.3s;
}

@keyframes drawOuterCopper {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawInnerBlack {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes showPlus {
  to {
    opacity: 1;
  }
}

@keyframes showTitle {
  to {
    opacity: 1;
  }
}

