.img-banner {
    position: relative;
    height: calc(100dvh - var(--header-height) - 20px);
    background-repeat: no-repeat;
    background-size: cover;
}

.img-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #101f29;
    opacity: 0.75;
}

.img-banner .container {
    height: 100%;
}

.img-banner__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    height: 100%;
    color: var(--white);
    z-index: 10;
}

.img-banner__wrapper .h1 {
    color: var(--white);
}

.img-banner__desc {
    max-width: 680px;
    opacity: 0.7;
    font-size: var(--text-size-18);
}

.img-banner__btns {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.img-banner .breadcrumbs {
    position: absolute;
    bottom: 16px;
}

.img-banner .breadcrumbs__item-link {
    color: var(--white);
    opacity: 0.7;
}

.img-banner .breadcrumbs__item-link:hover {
    color: var(--white);
    opacity: 1;
}

.img-banner .breadcrumbs__item-link.active {
    color: var(--white);
    opacity: 1;
}

.img-banner .breadcrumbs__item-icon {
    color: var(--white)
}

@media (max-width: 1199px) {
    .is-news .img-banner {
        height: 50vh;
    }

    .img-banner__desc {
        font-size: var(--text-size-16);
    }
}