.equipment_title {
    font-family: ceb;
    font-size: 0.5rem;
    color: #1C1C1C;
    text-align: center;
    margin-bottom: 0.3rem;
    margin-top: 0.8rem;
}

.img_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding-bottom: 1.26rem;
}

.img_box {
    width: calc((100% - 0.7rem)/3);
    height: 3rem;
    background-position: center;
    position: relative;
    cursor: pointer;
    
}
.img_box::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background-image: url('../img/equipment/icon.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 0;
    height: 0;
    transition: 0.3s;
}
.img_box::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(0, 0, 0,0.5);
    opacity: 0;
    transition: 0.3s;
}

.img_box:hover::before{
    width: 0.4rem;
    height: 0.4rem;
}
.img_box:hover::after{
    opacity: 1;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after{
    border-width: 0.02rem !important;
    border-color: var(--c2) !important;
}