.catalog-flex-new{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 32px;
	padding-bottom: 120px;
}
.cat-item-img img{
	/* height: 130px; */
	width: 130px;
	transition: .2s;
}
.cat-item-title{
	font-size: 18px;
	line-height: 25px;
	color: #000;
	transition: color .2s;
}
.category-item a{
	display: flex;
	align-items: center;
	gap: 20px;
}
.category-item a:hover .cat-item-title{
	color: #44c69a;
}
main.page-content {
    min-height: auto !important;
	padding-bottom: 0;
}
.category-item:hover img{
	transform: scale(1.1);
}
.section-main-children{
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
a.section-main-child {
    font-size: 16px;
    line-height: 20px;
    display: flex;
    gap: 10px;
    align-items: self-start;
    font-weight: 400;
    color: #000;
    transition: color .2s;
}
a.section-main-child:before {
    content: "";
    display: block;
    width: 4px;
    min-width: 4px;
    height: 4px;
    min-height: 4px;
    background: #44C69A;
    margin-top: 7px;
}
.section-main-child span {
    position: relative;
}
.section-main-child:hover {
    color: #44c69a;
}
.section-main-child:hover span:before {
    transform: translateZ(0);
    opacity: 0.35;
}
.section-main-child span:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #060607;
    transform: translateY(1.5px);
    opacity: 0;
    transition: transform .3s ease,opacity .3s ease;
}
@media screen and (max-width: 1200px){
	.cat-item-img img{
		/* height: 80px; */
		width: 80px;
	}
	.catalog-flex-new{
		padding-bottom: 80px;
	}
}

@media screen and (max-width: 992px){
	.catalog-flex-new{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 576px){
	.catalog-flex-new{
		grid-template-columns: repeat(1, 1fr);
		margin-bottom: 60px;
	}
	.catalog-flex-new{
		padding-bottom: 64px;
	}
}