.catalog-outer {
    width: 100%;
    box-sizing: border-box;
    padding-left: 8vw;
    padding-right: 8vw;
    margin: 0 auto;
    display: block;
}

.catalog-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}

.catalog-section .heading_H3 {
    width: 100%;
    font-size: 3.5vw;
    line-height: 3.6vw;
    margin-bottom: 5vh;
    margin-top: 10vh;
    text-align: left;
    color: #431107 !important;
}

.catalog-content {
    display: flex;
    width: 100%;
    gap: 1vw;
    align-items: stretch;
    min-height: auto;
}

.catalog-left {
    flex: 0 0 auto;
    width: 20vw;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.catalog-left .body_large {
    width: 100%;
    text-align: left !important;
    color: #431107;
    font-size: 2vw;
    line-height: 2.6vw;
    margin-bottom: 2vw;
}

.catalog-left .button.button--primary {
    width: 100%;
    height: 8vh;
    margin-top: auto;
    align-self: self-end;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-left .button.button--primary .button_medium {
    font-size: 2vw;
}

#catalog-slider {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    box-sizing: border-box;
    padding-right: 0;
}

.catalog-btn-mobile {
    display: none;
    width: 80%;
    height: 8vh;
    margin-top: 4vw;
    align-items: center;
    justify-content: center;
}

.catalog-btn-mobile .button_medium {
    font-size: 5vw;
}

@media (max-width: 500px) {
    .catalog-outer {
        padding-left: 4vw;
        padding-right: 4vw;
    }

    /* .catalog-section {
        padding: 4vw 4vw;
    } */

    .catalog-section .heading_H3 {
        font-size: 10.8vw;
        text-align: left;
        width: 100%;
    }

    .catalog-content {
        flex-direction: column;
        align-items: stretch;
        min-height: unset;
    }

    .catalog-left {
        width: 100%;
        height: auto;
    }

    .catalog-left .body_large {
        font-size: 4.5vw;
        line-height: 1.3;
        width: 95%;
        text-align: left !important;
    }

    .catalog-btn-desktop {
        display: none !important;
    }

    .catalog-btn-mobile {
        display: flex !important;
        width: 82%;
    }

    #catalog-slider {
        width: 100%;
        padding: 0;
        justify-content: flex-start;
    }
}