#achiviements-section #achiviements-carousel.swiper {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}

#achiviements-section #achiviements-carousel.swiper .swiper-button-prev:after,
#achiviements-section #achiviements-carousel.swiper .swiper-button-next:after {
    color: #fff;
}
#achiviements-section #achiviements-carousel.swiper .swiper-button-prev:hover:after,
#achiviements-section #achiviements-carousel.swiper .swiper-button-next:hover:after {
    color: var(--color-m);
}

#achiviements-section #achiviements-carousel.swiper .swiper-wrapper {
    width: 100%;
    height: auto;
    position: relative;
}

#achiviements-section #achiviements-carousel.swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: auto;
    position: relative;
}

#achiviements-section #achiviements-carousel.swiper .swiper-wrapper .achiviement-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 15px;
    padding: 30px;
    position: relative;
    cursor: pointer;
}

#achiviements-section #achiviements-carousel.swiper .swiper-wrapper .achiviement-item,
#achiviements-section #achiviements-carousel.swiper .swiper-wrapper .achiviement-item * {
    color: #fff;
}

#achiviements-section #achiviements-carousel.swiper .swiper-wrapper .achiviement-item:before {
    content: '';
    width: auto;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 43px;
    bottom: auto;
    left: 0;
    right: 60%;
}

#achiviements-section #achiviements-carousel.swiper .swiper-wrapper .achiviement-item:after {
    content: '';
    width: auto;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 43px;
    bottom: auto;
    left: 60%;
    right: 0;
}

#achiviements-section #achiviements-carousel.swiper .swiper-wrapper .achiviement-item .achiviement-item-point {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 27px;
    height: 27px;
    border: 2px solid #fff;
    border-radius: 100%;
}

#achiviements-section #achiviements-carousel.swiper .swiper-wrapper .achiviement-item .achiviement-item-point:after {
    content: '';
    position: absolute;
    width: auto;
    height: auto;
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    border: 2px solid #fff;
    border-radius: 100%;
}

#achiviements-section #achiviements-carousel.swiper .swiper-wrapper .achiviement-item.achiviement-item-completed,
#achiviements-section #achiviements-carousel.swiper .swiper-wrapper .achiviement-item.achiviement-item-completed * {
    color: var(--color-m);
}

#achiviements-section #achiviements-carousel.swiper .swiper-wrapper .achiviement-item.achiviement-item-completed:before {
    background-color: var(--color-m);
}

#achiviements-section #achiviements-carousel.swiper .swiper-wrapper .achiviement-item.achiviement-item-completed:after {
    background-color: var(--color-m);
}

#achiviements-section #achiviements-carousel.swiper .swiper-wrapper .achiviement-item.achiviement-item-completed .achiviement-item-point {
    border-color: var(--color-m);
}

#achiviements-section #achiviements-carousel.swiper .swiper-wrapper .achiviement-item.achiviement-item-completed .achiviement-item-point:after {
    border-color: var(--color-m);
}