.content-animation__graphic {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.content-animation__graphic--bg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 55%;
    transform: translate(-65%, -50%) rotate(25deg);
    z-index: 1;
}

.content-animation__graphic--bg svg {
    fill: rgba(118, 149, 164, 0.17);
}

.content-animation__graphic .graphic-item {
    position: absolute;
    top: 58%;
    right: 18%;
    width: 124%;
    aspect-ratio: 1;
    transform: translateY(-50%);
    z-index: 10;
}
@media (min-width: 992px) {
    .content-animation__graphic .graphic-item {
        right: 28%;
    }
}
@media (min-width: 1200px) {
    .content-animation__graphic .graphic-item {
        right: 23%;
    }
}
@media (min-width: 1400px) {
    .content-animation__graphic .graphic-item {
        right: 21%;
    }
}
.content-animation__graphic .graphic-item .circle {
    position: relative;
    border-radius: 50%;
    width: 100%;
    height: 100%;

    animation: circlePath 30s linear infinite;
    animation-delay: var(--animation-delay);
}
.content-animation__graphic .graphic-item .circle .bullet {
    position: absolute;
    top: 100%;
    right: 50%;
    height: 3rem;
    width: 3rem;
    transform: translate(-50%,-50%);
    transform-origin: 0 0;

    animation: bulletRotate 30s linear infinite;
    animation-delay: var(--animation-delay);
}

.content-animation__graphic .graphic-item .circle .bullet--dot {
    height: 100%;
    width: 100%;
    background-color: var(--bz-secondary);
    border-radius: 50%;
    transition: all 0.15s ease-in-out;
}
.content-animation__graphic .graphic-item .circle .bullet--text {
    position: absolute;
    top: 50%;
    left: 50%;

    height: 3rem;
    width: 3rem;
    overflow: hidden;

    background-color: var(--bz-secondary);
    border-radius: 100px;
    transform: translate(-50%, -50%);
    transition: width 0.15s linear;


    animation: bulletOpen 30s linear infinite;
    animation-delay: var(--animation-delay);
}
.content-animation__graphic .graphic-item .circle .bullet--text span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;

    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    text-align: center;

    padding: 0.5em 1em;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;


    animation: bulletText 30s linear infinite;
    animation-delay: var(--animation-delay);
}

.content-animation__graphic .content-animation__bg--circle {
    position: absolute;
    top: 58%;
    right: 21%;
    width: 124%;
    aspect-ratio: 1;
    transform: translateY(-50%);
}
.content-animation__graphic .content-animation__bg--circle .circle {
    position: relative;
    border-radius: 50%;
    width: 100%;
    height: 100%;

    border: 1px solid transparent;
}

.content-animation__graphic .content-animation__bg--circle-1 {
    z-index: 5;
}
.content-animation__graphic .content-animation__bg--circle-1 .circle {
    margin-top: -15px;
    margin-left: -5px;
    border-color: var(--bz-primary);
    rotate: -70deg;
    animation: circleBg1 40s linear infinite;
}
.content-animation__graphic .content-animation__bg--circle-1 .circle:before {
    content: '';
    display: block;
    position: absolute;
    right: 0px;
    top: 50%;
    height: 8px;
    aspect-ratio: 1;
    background-color: var(--bz-primary);
    border-radius: 50%;
    transform: translateX(150%) translateY(260%);
}
.content-animation__graphic .content-animation__bg--circle-1 .circle:after {
    content: '';
    display: block;
    position: absolute;
    right: 0px;
    top: 50%;
    height: 8px;
    aspect-ratio: 1;
    background-color: var(--bz-primary);
    border-radius: 50%;
    transform: translateX(-50%);
}

.content-animation__graphic .content-animation__bg--circle-2 {
    top: 54%;
    right: 22%;
    z-index: 3;
}
.content-animation__graphic .content-animation__bg--circle-2 .circle {
    margin-top: -5px;
    border: 1px dashed var(--bz-body-color);
    animation: circleBg2 450s linear infinite;
}

.content-animation__graphic .content-animation__bg--circle-3 {
    z-index: 1;
}
.content-animation__graphic .content-animation__bg--circle-3 .circle {
    border-color: var(--bz-tertiary);
}

@keyframes circlePath {
    0% {
        rotate: 0;
    }
    15% { 
        rotate: -80deg;
    }
    83% {
        rotate: -140deg;
    }
    86% {
        rotate: -210deg;
    }
    100% {
        rotate: -360deg;
    }
}

@keyframes bulletRotate {
    0% {
        rotate: 0;
        scale: 0.15;
    }
    8% { 
        scale: 0.2;
    }
    13% {
        scale: 0.95;
    }
    14% {
        scale: 1.35;
    }
    15% { 
        rotate: 80deg;
        scale: 1;
    }
    83% {
        rotate: 140deg;
        scale: 1;
    }
    84% {
        scale: 0.15;
    }
    86% {
        rotate: 170deg;
    }
    100% {
        rotate: 360deg;
        scale: 0.05;
    }
}

@keyframes bulletOpen {
    0%, 15% {
        height: 3rem;
        width: 3rem;
    }
    16%, 82% {
        width: 100vw;
        max-width: 15rem;
    }
    83%, 100% {
        height: 3rem;
        width: 3rem;
    }
}

@keyframes bulletText {
    0%, 15% {
        opacity: 0;
    }
    16%, 82% {
        opacity: 1;
    }
    83%, 100% {
        opacity: 0;
    }
}




@keyframes circleBg1 {
    0% {
        rotate: -70deg;
    }
    80% {
        rotate: 50deg;
    }
    98% {
        rotate: 280deg;
    }
    100% {
        rotate: 290deg;
    }
}

@keyframes circleBg2 {
    0% {
        rotate: 0deg;
    }
    50% {
        rotate: -180deg;
    }
    100% {
        rotate: -360deg;
    }
}