.breadcumb-area-banner {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    object-fit: cover;
}

.breadcumb-wrap-banner {
    background-color: rgba(0, 0, 0, 0.5); /* Черный фон с прозрачностью */
    color: #fff; /* Цвет текста */
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.breadcumb-wrap-banner h2 {
    color: #fff;
    position: relative;
    /*text-transform: capitalize;*/
    padding-bottom: 15px;
    margin-bottom: 57px;
    font-size: 40px;
}

.breadcumb-wrap-banner h2::before, .breadcumb-wrap-banner h2::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 40px;
    height: 1px;
    background: #fff;
    content: "";
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}

.breadcumb-wrap-banner h2::after {
    left: 51%;
    bottom: -2px;
}

.breadcumb-menu-banner {
    background: rgba(0,0,0,.8);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 0px;
}

.breadcumb-menu-banner ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Выравниваем элементы по центру по горизонтали */
    align-items: center;
    margin: 0px 5px;
    color: #C62828;
    padding: 15px 0px;
}

.breadcumb-menu-banner li {
    margin: 0 10px; /* Добавляем отступы между элементами меню */
}

.breadcumb-menu-banner ul li a {
    color: #fff;
}

.breadcumb-menu-banner ul li a:hover {
    color: #C62828;
}

.newsText {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Тень: смещение по горизонтали, смещение по вертикали, размытие, цвет */
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 600;
}
.newsText:hover {

    color: #c62828;
}

.NewText {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    margin-top: 30px;
    margin-bottom: 35px;
}

.sharedWallpaper {
    background-color: #ffffff;
    min-height: 600px;
    padding: 20px 0px;
}

/* Стили для обертки пагинации */
.forPagination {
    padding-top: 10px;
    padding-bottom: 15px;
    display: flex;
    justify-content: center;
}

/* Стили для элемента страницы */
.page-item {
    margin: 5px;
    display: inline-block;
}

/* Стили для ссылки */
.page-link {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    background-color: #f7f7f7;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.page-link:hover {
    background-color: #c62828;
    color: #fff; /* Цвет текста при наведении курсора */
}

/* Стили для активной страницы */
.page-item.active .page-link {
    background-color: #c62828; /* Цвет активной страницы */
    color: #fff; /* Цвет текста на активной странице */
    pointer-events: none;
}


/* //////////////////////////////////////////////////////////////////////////*/

        