.bnf-title {
    text-align: center;
    margin: 50rem 0 150rem 0;
}

.bnf-vertical {
    width: 1px;
    height: 40rem;
    background-color: var(--main-color);
    margin: 50rem auto;
}

.bnf-title h5 {
    font-size: 55rem;
}

.bnf-title h5 span {
    color: var(--gold-point);
}

.bnf-title p {
    font-size: 22rem;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 30rem;
}

.bnf-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 120rem;
}

.bnf-group {
    width: 100%;
}

.bnf-box-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60rem 40rem;
}
.bnf-box-wrapper.grid1 {
    grid-template-columns: repeat(1, 1fr);
}

.bnf-top {
    width: 100%;
    margin-bottom: 30rem;
}

.bnf-top h6 {
    color: var(--gold-point);
    font-size: 22rem;
    margin-bottom: 20rem;
}

.bnf-top h5 {
    font-size: 50rem;
    display: flex;
    align-items: flex-end;
    gap: 20rem;
}

.bnf-top span {
    color: #bbb;
    font-size: 24rem;
    font-weight: 600;
    letter-spacing: 0;
}

.bnf-top p {
    color: var(--gold-point);
    font-size: 20rem;
    font-weight: 600;
    margin-top: 20rem;
}

.bnf-box-image {
    width: 100%;
    margin-bottom: 20rem;
}

.bnf-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bnf-box h6 {
    font-size: 26rem;
    text-align: center;
}

.bnf-box p {
    color: #888;
    font-size: 17rem;
    line-height: 1.5;
    margin-top: 10px;
}

.bnf-box-wrapper.grid1 h6 {
    text-align: left;
}



/*==================================================*/
@media (max-width: 991px) {
    .bnf-title img {
        width: 400rem;
    }
    
    .bnf-box-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 50rem;
    }

    .bnf-box-image {
        height: 500rem;
    }
}


@media (max-width: 550px) {
    .bnf-title p {
        font-size: 22rem;
    }

    .bnf-top h6 {
        font-size: 26rem;
    }

    .bnf-top p {
        font-size: 24rem;
    }

    .bnf-box h6 {
        font-size: 30rem;
    }

    .bnf-box p {
        font-size: 22rem;
    }
}