.rsis_reap {
    background: #FFFFFF;
    display: flex;
    padding: 80px 70px 40px 70px;
    justify-content: space-between;
    column-gap: 20px;
}

.rsis_reap .reap_header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: 32px;
}

.rsis_reap .reap_header .header_title {
    font-family: Lato;
    font-weight: 600;
    font-size: 42px;
    line-height: 52px;
    color: #151313;
    text-transform: capitalize;
}

.rsis_reap .reap_header .header_block_display_button {
    display: none;
}

.rsis_reap .reap_header .header_line {
    border: 3px solid #BA2025;
    width: 86px;
}

@media only screen and (max-width: 810px) {
    .rsis_reap {
        display: flex;
        flex-direction: column;
        padding: 48px 16px 0px 16px;
    }
    .rsis_reap .reap_header {
        display: flex;
        row-gap: 16px;
    }
    .rsis_reap .reap_header .header_title {
        font-size: 22px;
        line-height: 30px;
    }
}

.rsis_reap .reap_content {
    display: flex;
    column-gap: 24px;
    overflow: auto;
    padding-bottom: 32px;
}

.rsis_reap .reap_content::-webkit-scrollbar {
    height: 8px;
}
.rsis_reap .reap_content::-webkit-scrollbar-track {
    background: #ECECEC;
    border-radius: 100px;
}
.rsis_reap .reap_content::-webkit-scrollbar-thumb {
    background: #737475;
    border-radius: 100px;
}

.rsis_reap .reap_content .reap_content_item {
    display: flex;
    background-position: center;
    background-size: cover;
    height: 280px;
    min-width: 200px;
    max-width: 200px;
    flex: 1;
    cursor: pointer;
}

.rsis_reap .reap_content .reap_content_item .reap_content_item_title {
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    font-family: Lato;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    background: rgba(30, 52, 87, 0.4);
}

.rsis_reap .reap_content .reap_content_item .reap_content_item_title:hover {
    background: rgba(186, 32, 37, 0.7);
    box-shadow: 0px 8px 16px 2px rgba(21, 19, 19, 0.22);
}

@media only screen and (max-width: 810px) {
    .rsis_reap .reap_content {
        padding-inline: 0px;
        padding-block: 24px;
        overflow: auto;
        margin-bottom: 52px;
        column-gap: 16px;
    }
    .rsis_reap .reap_content .reap_content_item {
        height: 240px;
        min-width: 195px;
        width: 195px;
    }
}

