.rezka-cat-root-h1{
    color: #0B1324;
    font-weight: bold;
    font-size: 40px;
    margin: 0 0 45px 0;
}
.rezka-cat-root-cats-h1{
    font-weight: 600;
    font-size: 22px;
    color: #000;
    margin-bottom: 35px;
}
.rezka-cat-root-cats-w,
.rezka-cat-root-cats-untype{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 50px;
}
.rezka-cat-root-cats-item{
    position: relative;
    height: 150px;
    display: flex;
    border: 1px solid #E5E5E5;
    align-items: center;
    text-decoration: none;
    transition: .3s all ease-in-out;
}
.rezka-cat-root-cats-item:hover{
    border: 1px solid #FF1D25;
}
.rezka-cat-root-cats-item-img{
    display: flex;
    align-items: center;
    padding: 15px;
    justify-content: center;
    flex-shrink: 0;
}
.rezka-cat-root-cats-item-name{
    padding: 25px;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    flex-grow: 1;
}
.rezka-cat-root-cats-item::before{
    content: "";
    position: absolute;
    border: 15px solid transparent; 
    border-top: 15px solid #fff; 
    border-right: 15px solid #fff;
    right: -1px;
    top: -1px;
    
}
.rezka-cat-root-cats-item::after{
    content: "";
    position: absolute;
    width: 41px;
    height: 1px;
    background: #E5E5E5;
    transform: rotate(45deg);
    right: -7px;
    top: 14px;
}
.rezka-cat-root-cats-item-arrow{
    position: absolute;
    top: -1px;
    right: -1px;
    width: 35px;
    height: 35px;
    background: #FF1D25 url(../image/root_cat_arrow.png) no-repeat center;
    z-index: 1;
    opacity: 0;
    transition: .3s all ease-in-out;
}
.rezka-cat-root-cats-item:hover::after{
    display: none;
}
.rezka-cat-root-cats-item:hover .rezka-cat-root-cats-item-arrow{
    opacity: 1;
}
@media (max-width: 1200px){
    .rezka-cat-root-h1{
        font-size: 36px;
    }
}
@media (max-width: 992px){
    .rezka-cat-root-h1 {
        font-size: 32px;
    }
    .rezka-cat-root-cats-h1 {
        font-size: 20px;
    }
    .rezka-cat-root-cats-w, 
    .rezka-cat-root-cats-untype{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px){
    .rezka-cat-root-cats-w, .rezka-cat-root-cats-untype {
        grid-template-columns: repeat(1, 1fr);
    }
    .rezka-cat-root-h1 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .rezka-cat-root-cats-item-name {
        padding: 15px;
        font-size: 14px;
        line-height: 18px;
    }
}
@media (max-width: 576px){
    .rezka-cat-root-h1 {
        font-size: 26px;
    }
    .rezka-cat-root-cats-h1 {
        font-size: 18px;
    }
    .rezka-cat-root-cats-item-img{
        width: 90px;
        height: 90px;
    }
    .rezka-cat-root-cats-item {
        height: 95px;
    }
}