.image-bullet {
    width: 100%;
    height: auto;
    position: relative;
    --top: 0%;
    --left: 0%;
}

.image-bullet img {
    width: 100%;
    height: 100%;
}

.image-bullet .bullet {
    position: absolute;
    transform: translate(-50%, -50%);
    left: var(--left);
    top: var(--top);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 100%;
    background: #4bbfff;
    border: 2px solid white;
    display: block;
}
.image-bullet .bullet-with_link {
    background: #4b75ff;
    cursor: pointer;
}