.catalog-main-content {
    padding-bottom: 60px;
}

.catalog-main-content .catalogSection:not(:last-child) {
    margin-bottom: 30px;
}

.catalog-main-content .catalogSection > .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px 0;
    margin: 0 -15px;
}

.catalog-main-content .catalogSection > .row > .col {
    min-width: 0;
    padding: 0 15px;
}

.catalog-main-content .catalogSection > .row > .col5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
}

.catalog-main-content .catalogSection > .row > .col7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
}

.catalog-main-content .catalogSection:nth-child(even) > .row > .col:last-child {
    order: -1;
}

.catalog-main-content .catalogSectionImg {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #f6f6f7;
    text-decoration: none;
}

.catalog-main-content .catalogSectionImg img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .25s ease;
}

.catalog-main-content .catalogSectionImg:hover img {
    transform: scale(1.03);
}

.catalog-main-content .catalogSectionInfo {
    padding: 0 40px;
}

.catalog-main-content .catalogSectionTitle {
    margin: 0 0 18px;
    color: var(--gray1-color, #2d2f33);
    font-size: 34px;
    font-weight: 300;
    line-height: 1.18;
}

.catalog-main-content .catalogSectionTitle a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #dddcda;
    transition: border-color .2s ease, color .2s ease;
}

.catalog-main-content .catalogSectionTitle a:hover {
    color: var(--red-color, #b6262c);
    border-color: currentColor;
}

.catalog-main-content .catalogSectionDesc {
    margin-bottom: 20px;
    color: var(--gray2-color, #606060);
    font-size: 16px;
    line-height: 1.45;
}

.catalog-main-content .catalogSectionInfo .more {
    display: inline-block;
    padding: 9px 35px;
    border: 1px solid #da9094;
    border-radius: 57px;
    color: #b6262c !important;
    font-size: 16px !important;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.catalog-main-content .catalogSectionInfo .more:hover {
    border-color: var(--red-color, #b6262c);
    background: var(--red-color, #b6262c);
    color: #fff !important;
}

@media screen and (max-width: 991px) {
    .catalog-main-content .catalogSectionInfo {
        padding: 0;
    }

    .catalog-main-content .catalogSection > .row > .colmd6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .catalog-main-content .catalogSectionTitle {
        font-size: 24px;
        line-height: 1.25;
    }
}

@media screen and (max-width: 767px) {
    .catalog-main-content .catalogSection:nth-child(even) > .row > .col:last-child {
        order: 0;
    }

    .catalog-main-content .catalogSection > .row {
        margin: 0;
    }

    .catalog-main-content .catalogSection > .row > .col,
    .catalog-main-content .catalogSection > .row > .colsm12 {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0;
    }

    .catalog-main-content .catalogSectionImg {
        margin-bottom: 20px;
    }
}
