.pr-section {
    height: 95vh;
    /* background: url('/img/banner/pulses-beans-svg.svg'); */
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #50000b;
    margin: 100px auto;
    overflow: hidden;
}

.pr-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(img/banner/pulses-beans-svg.svg) no-repeat center / cover;
    opacity: 1;
    z-index: 0;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    z-index: 0;
    width: 1116px;
    left: -148px;
}

.pr-section .tabs-container {
    position: relative;
    z-index: 2;
    /* background: #fff; */
    border-radius: 12px;
    padding: 20px;
    max-width: 900px;
    width: 100%;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
}

.pr-section .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #cfaa61;
    /* underline line */
}

.pr-section .tabs button {
    padding: 10px 35px;
    margin: 0 5px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    background: transparent;
    color: #ffffff;
    position: relative;
}

/* first tab golden by default */
/* .pr-section .tabs button:first-child {
            background: goldenrod;
            color: #fff;
        } */
/* active tab styling */

.pr-section .tabs button.active {
    background: #cfaa61 !important;
    color: #fff;
}

.pr-section .tab-content {
    display: none;
    text-align: left;
}

.pr-section .tab-content.active {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 70px;
}

.pr-section .tab-content img {
    width: 375px;
    border-radius: 8px;
}

.pr-section .tab-text {
    max-width: 485px;
}

.inner_content1 {
    position: relative;
    z-index: 99;
}

.tab-text h2 {
    color: #fff;
}

.tab-text p {
    color: #fff;
}

.inner_content1 h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    padding: 20px;
}

@media screen and (max-width:767px) {
    .pr-section {
        height: 110vh;
    }

    .pr-section .tab-content.active {
        display: block;
        text-align: center;
    }

    .pr-section .tab-content img {
        width: 290px;
    }

    .pr-section .tab-text {
        max-width: 100%;
        padding: 10px 30px;
    }

    .pr-section .tabs button {
        font-size: 14px;
        padding: 5px 35px;
    }
}