.navigation-bar__block {
    display: flex;
    gap: 16px;
}

.navigation-bar__item {
    display: flex;
    gap: 20px;
}

.navigation-bar__item-title {
    flex-basis: fit-content;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}


.navigation-bar__item-title::after {
    content: '';
    display: none;
    background: #CBDB00;
    height: 4px;
    width: 100%;
    border-radius: 50px;
    position: absolute;
    bottom: -17px;
    transition: all 0.3s ease;

}

.navigation-bar__item-title.active::after {
    display: block;
    transition: all 0.3s ease;

}




@media screen and (min-width: 1024px) {

    .navigation-bar__block {
        align-items: center;
        justify-content: space-between;
        margin-top: 10px;
        margin-bottom: 40px;
        background: white;
        border-radius: 15px;
        padding: 20px;
    }

    .navigation-bar__item {
        flex-wrap: wrap;
        margin-bottom: 14px;
    }

    .navigation-bar__group::after {
        content: '';
        display: block;
        background: rgba(203, 219, 0, 0.4);
        height: 2px;
        width: 100%;
        border-radius: 50px;
    }

    body .navigation-bar .navigation-bar__heading {
        font-size: 40px;
    }

    .navigation-bar {
        margin-top: 10px;
        margin-bottom: 0 !important;
        position: fixed;
        width: 100%;
        z-index: 11;
        top: 140px;
    }

    body .wp-block-cover.providers-cover {
        margin-top: 220px;
    }

    .fixed-body .navigation-bar {
        top: 70px
    }
}

@media screen and (min-width: 1440px) {
    .navigation-bar {
        top: 140px;
    }

    body .wp-block-cover.providers-cover {
        margin-top: 250px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1439.98px) {
    body .navigation-bar {
        top: 100px;
    }

    body .wp-block-cover.providers-cover {
        margin-top: 200px;
    }
}

@media screen and (max-width: 1023.98px) {
    .navigation-bar__block {
        flex-direction: column;
        background: #ECF0F4;
        border-radius: 16px;
        padding: 20px 15px;
    }

    .navigation-bar__item {
        flex-wrap: wrap;
        margin-bottom: 5px;
    }

    body .navigation-bar .navigation-bar__heading {
        font-size: 28px;
    }

    .navigation-bar__item-title {
        font-size: 17px;
    }

    .navigation-bar__item-title::after {
        height: 2px;
        bottom: -5px;
    }

    .navigation-bar__item {
        row-gap: 14px;
    }
    .navigation-bar{
        margin-top: 140px;
    }
}
