.objects_sections_list {
    display: -webkit-flex;
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.objects_sections_item {
    display: block;
    width: 100px;
    min-width: 100px;
    color: inherit;
}

.objects_sections_item_img {
    position: relative;
    width: 100px;
    height: 0;
    padding-top: 100%;
    background: var(--theme-color-blue-light);
    border-radius: 50%;
    overflow: hidden;
}

.objects_sections_item_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.objects_sections_item_name {
    font-size: 0.8rem;
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
    color: inherit;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.objects_sections_item:hover .objects_sections_item_name {
    color: var(--theme-skit-color);
}