.BFbaner {
    height: 180px;
    width: 80%;
    border-radius: 20px;
    background: linear-gradient(180deg, #7E5F00 -100%, #FFC105 200%);
    flex-shrink: 0;
    flex-grow: 0;
    padding: 15px 40px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;
}
.BFbanerAcc {
    color: var(--background);
}

.BFbanerLeft {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.BFbanerBadge {
    color: #FFC000;
    text-shadow: var(--defaultBoxShadow);
    font-size: 14px;
}

.BFbanerTilte {
    font-size: 42px;
}

.BFbanerButton {
    width: 150px;
    background-color: #FFC000;
}

@media (max-width: 1300px) {
    .BFbaner{
        margin-top: 0 !important;
        margin-bottom: -20px !important;
    }
    .BFbanerButton{
        width: 100px;
    }
}