.index-catalog-cnt {
    margin: 60px 0;
}
.sections-main-h1.title-h1 {
    margin: 0 auto 30px;
    font-size: 36px;
    font-weight: 700;
    text-transform: unset;
}
.section-main {
    /* width: calc((100% - 130px) / 3); */
	width: 100%;
    flex: 0 0 auto;
}
.sections-main {
    /* display: flex; */
    justify-content: normal;
    flex-flow: row wrap;
    /* gap: 50px; */
    gap: 40px 32px;
	    display: grid;
    grid-template-columns: repeat(3, 1fr);
	padding-bottom: 120px;
}
.section-main-img-block {
    display: block;
}
.section-main-img {
    margin-bottom: 10px;
    width: 100%;
    height: auto;
}
.section-main-title {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #0091cc;
    padding: 5px 0;
}
.section-main-child {
    display: block;
    color: #060607;
    font-size: 16px;
    line-height: 1.37;
    padding: 3px 0;
}
.section-main-child span {
    position: relative;
}
.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;
}

.section-main-child:hover span:before {
    transform: translateZ(0);
    opacity: 0.35;
}
@media (max-width: 767.98px) {
    .sections-main {
        flex-flow: column nowrap;
    }
    .section-main {
        width: unset;
    }
    .section-main-children {
        column-count: 2;
        column-gap: 15px;
        list-style: disc;
    }
    .section-main-child {
        display: list-item;
        margin-left: 20px;
        break-inside: avoid;
    }
}
.section-flex-img-title {
    display: flex;
    align-items: center;
    gap: 20px;
	margin-bottom: 20px;
}
.section-flex-img-title img{
	max-width: 130px;
	transition: transform .3s;
}
.main-section-title{
	color: #000;
	font-size: 18px;
	line-height: 25px;
	transition: color .2s;
}
.section-flex-img-title:hover .main-section-title{
	color: #44c69a;
}
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-flex-img-title:hover img{
	transform: scale(1.1);
}
.section-main-child:hover{
	color: #44c69a;
}
@media screen and (max-width: 1200px){
	.section-flex-img-title img{
		max-width: 80px;
	}
	.sections-main {
		padding-bottom: 80px;
	}
	a.section-main-child {
		font-size: 14px;
	}
}
@media screen and (max-width: 992px){
	.sections-main {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 20px;
	}
	.sections-main-h1.title-h1 {
		font-size: 32px;
	}
}
@media screen and (max-width: 768px){
	.index-slider__navigation {
		top: -30px !important;
	}
	.section-main-children {
		column-count: 1;
	}
	.section-flex-img-title img {
		max-width: 120px;
	}
	.section-main-child {
		margin-left: 0;
	}
	.index-slider__info {
		height: 240px !important;
	}
	.sections-main-h1.title-h1 {
		font-size: 24px;
	}
}
@media screen and (max-width: 576px){
	.section-flex-img-title {
		flex-direction: column;
		align-items: flex-start;
	}
	.sections-main {
		padding-bottom: 64px;
	}
}
@media screen and (max-width: 480px){
	.sections-main {
		grid-template-columns: repeat(1, 1fr);
	}
}