.navbar{
    top: 50px;
}

.navbar.sticky{
    top: 0;
}

.limited_bf_header{
    display: flex;
    align-items: center;
}

.limited_bf_header_left{
    width: 50%;
    padding: 10px 20px;
    background-color: #4550c2;
    display: flex;
    justify-content: end;
    color: #FFFFFF;
    font-family: 'Gilroy Medium';
    position: relative;
}

.limited_bf_header_left a{
    color: #FFFFFF;
    font-family: 'Gilroy Medium';
}

.limited_bf_header_left a:hover{
    text-decoration: underline;
}

.limited_bf_header_left:after{
    content: '';
    position: absolute;
    top: 0;
    right: -25px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 45px solid transparent;
    border-left: 25px solid #4550c2;
}

.limited_bf_header_right{
    width: 50%;
    padding: 10px 15px;
    background-color: #212121;
    display: flex;
    justify-content: start;
    color: #FFFFFF;
    padding-left: 30px;
}

.limited_bf_header_right div{
    color: #FFFFFF;
    font-family: 'Gilroy Medium';
}

.time span {
    font-family: 'Gilroy-Bold';
    color: #FFFFFF;
    margin-right: 4px;
}

@media only screen and (max-width: 768px){
    .limited_bf_header{
        flex-direction: column;
    }

    .limited_bf_header_left,
    .limited_bf_header_right{
        width: 100%;
        justify-content: center;
        padding: 8px 10px;
    }

    .limited_bf_header_left:after{ 
        content: none;
    }
}


@media only screen and (max-width: 449px){
    .limited_bf_header_left{
        font-size: 13px;
    }

    .limited_bf_header_right{
        font-size: 13px;
    }
}
