.path-slider {
    display: block;
    position: relative;
    margin: 100px auto;
    width: 500px;
    height: 500px;
    /* transform: translateY(-40%); */
    background: url("img/main-img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#path-overlap {
    display: none;
    margin: 125px -125px;
    left: 50%;
    top: 0px;
    width: 250px;
    padding: 10px;
    height: 250px;
    position: absolute;
    background: #eee;
    border-radius: 50%;
}

#path-overlap img {
    display: none;
}

path {
    stroke-width: 1px;
    stroke: none;
    fill: none;
}

.icon__path {
    fill: #ffffff;
}

.path-slider__path {
    stroke: rgba(85, 126, 200, 1);
}

.path-slider__item {
    position: absolute;
    left: -50px;
    top: -50px;
    color: #ffffff;
    cursor: pointer;
    transform-origin: 50% 50%;
    text-decoration: none;
    outline: none;
}

.path-slider__item:hover .item__circle,
.path-slider__item:focus .item__circle {
    background-color: #eee;
    border: solid 1px #ccc;
}

.item__circle {
    display: inline-block;
    width: 100px;
    height: 100px;
    background-color: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    text-align: center;
    transition: 0.5s;
}

.item__title {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-variant: small-caps;
    background: #fff;
    opacity: 0.8;
    width: 150px;
    padding: 3px 5px;
    transition: 0.5s;
    color: #333;
    font-size: 12px;
    text-align: center;
    margin-bottom: 15px;
}

.item__icon {
    width: 90px;
    height: 90px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}


/* 
.path-slider__current-item .item__circle {
  background-color: #4DA169;
  transform: scale(1.5);
} */

.path-slider__current-item .item__title {
    font-size: 14px;
    opacity: 1;
    color: #f00;
    font-weight: 700;
    transform: translate(-50%, -20px);
}

@media (max-width: 767px) {
    .path-slider {
        margin: 50px auto;
        width: 280px;
        height: 280px;
    }
    .item__title {
        width: 100px;
    }
    .item__circle {
        width: 50px;
        height: 50px;
    }
    .item__icon {
        width: 45px;
        height: 45px;
    }
}