.complect{
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
}
.c-top{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}
.c-grid{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.c-g-row{
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
}
.c-g-r-item{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 2.917vw 1.25vw 1.25vw 1.25vw;
    border-radius: 0.833vw;
    background-color: var(--white);
    width: calc((100% - (16px * 5))/6);
    cursor: pointer;
    position: relative;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.c-g-r-item:hover{
    background-color: var(--light-green);
}
.c-g-r-i-title{
    width: 80%;
    position: absolute;
    top: 1.25vw;
    left: 1.25vw;
}
.c-g-r-i-img {
    width: 100%;
}
.psevdo-class-m{
    display: none;
}
@media (min-width: 180px) and (max-width: 768px){
    .complect{
        gap: 24px;
        padding: 0px 0px 48px 0px;
    }
    .c-top{
        gap: 16px;
        padding-right: 16px;
        padding-left: 16px;
    }
    .c-grid{
        overflow-x: auto;        
        -ms-overflow-style: none;
        scrollbar-width: none;
        white-space: nowrap;
        padding-left: 16px;
    }    
    .c-grid::-webkit-scrollbar {
        width: 0;
        height: 0;
    }
    .c-t-text{
        font-size: 12px;
    }
    .c-t-text br{
        display: none;
    }
    .c-g-r-item{
        width: calc((100% - 16px)/2);
        padding: 56px 24px 24px 24px;
        border-radius: 16px;
    }   
    .c-g-r-i-title{
        width: 50%;
        position: absolute;
        top: 20px;
        left: 20px;
    }
    .c-g-r-i-img {
        width: calc((100vw - 64px - 96px) / 2);
    }
    .psevdo-class-m{
        width: 16px;
        display: block;
    }

}
@media (min-width: 580px) and (max-width: 768px){
    .c-g-r-i-img {
        width: calc((100vw - 64px - 96px) / 4);
    }    
}
@media (min-width: 769px) and (max-width: 1024px){
    .c-g-r-item{
        width: calc((100% - (16px * 2))/3);
    }
    .c-g-row{
        flex-wrap: wrap;
    }
    .c-g-r-i-title{
        font-size: 1.5vw;
    }
}
