#hmctgs{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-top: 120px;
}
#hmctgs .ctg{
    padding: 0 15px;
}
#hmctgs .ctg .cvr{
    position: relative;
}
#hmctgs .ctg .cvrctg{
    position: absolute;
    top: 15px;
    right: 50px;
    height: 144px;
    width: 144px;
    box-shadow: 0px 12px 10px #00000029;
    border: 1px solid #006CB2;
    border-radius: 72px;
    overflow: hidden;
}
#hmctgs .ctg .cvrctg img{
    object-fit: cover;
}
#hmctgs .txt{
    position: absolute;
    top: 50%;
    right: 25%;
    width: calc(75% - 60px);
    transform: translateY(-50%);
    display: flex;
    flex-flow: column;
    align-items: flex-end;
}
#hmctgs .txt h3{
    color: #fff;
    font-size: 26px;
    line-height: 1.16em;
    margin: 0 0 10px 0;
    padding: 0;
    font-weight: 400;
}
#hmctgs .txt > a{
    color:#fff;
    font-size: 15px;
    position: relative;
    display: inline-block;
    padding-right: 36px;
}
#hmctgs .txt > a img{
    position: absolute;
    right: 0;
    top: -5px;
}
#hmctgs .ctg ul{
    padding: 0 0 0 65px;
    margin: -35px 0 0 0;
    list-style: none;
    position: relative;
}
#hmctgs .ctg:nth-child(n+2) ul:before{
    content: '';
    position: absolute;
    left: -1px;
    top: -20%;
    height: 110%;
    width: 1px;
    background: #CFCFCF;
}
#hmctgs .ctg ul li{
    padding: 20px 10px 20px 75px;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 66px;
    box-sizing: border-box;
    margin-bottom: 10px;
}
#hmctgs .ctg ul li a{
    color:#000;
    font-size: 16px;
}
#hmctgs .ctg ul .cvr{
    height: 66px;
    width: 66px;
    position: absolute;
    left: 0;
    top: 0;
}
#hmctgs .ctg ul .cvr img{
    object-fit: cover;
}
@media only screen and (max-width: 1024px) {
    #hmctgs{
        grid-template-columns: repeat(3, 380px);
        overflow-x:auto;
        padding-bottom: 30px;
        scrollbar-color: var(--primary-color) #f1f1f1;
    }
    #hmctgs::-webkit-scrollbar-thumb {
      background: var(--primary-color);
      border-radius: 10px;
    }
    .glbbtus{
        flex-flow: column;
    }
}