

/* Start:/local/templates/.default/components/bitrix/system.pagenavigation/.default/style.css?17290694312820*/
.bx-pagination {
	margin: 40px 0;
}
.bx-pagination .bx-pagination-container {
	text-align: center;
	position: relative;
}
.bx-pagination .bx-pagination-container ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 5px;

}
.bx-pagination .bx-pagination-container ul li {
	display: inline-block;
}
.bx-pagination .bx-pagination-container ul li span{
	background: #fff;
	padding: 0px;
	display: block;
	height: 32px;
	min-width: 32px;
	line-height: 32px;
	color: var(--color-gray);
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bx-pagination .bx-pagination-container ul li a {
	text-decoration: none;
	display: block;
	border-radius: 16px;
	height: 32px;
	min-width: 32px;
	line-height: 32px;
	color: #444;
}
.bx-pagination .bx-pagination-container ul li a:hover span{
	background: var(--color-white);
	color: var(--color-orange);
}
.bx-pagination .bx-pagination-container ul li.bx-active span{
	background: #f6f6f6;
	color: var(--color-orange);
}

.bx-pagination .bx-pagination-container ul li.bx-pag-prev,
.bx-pagination .bx-pagination-container ul li.bx-pag-next,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a{
	display: flex;
	align-items: center;
	justify-content: center;
}

.bx-pagination .bx-pagination-container ul li.bx-pag-prev{
	margin-right: 15px;
}

.bx-pagination .bx-pagination-container ul li.bx-pag-next{
	margin-left: 15px;
}

.bx-pagination .bx-pagination-container ul li.bx-pag-all a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a span {
	background: none;
	border: 0;
	width: 24px;
	height: 24px;
	line-height: 24px;
	padding: 0px;
	color: #444;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next span{
	background: none;
	border: 0;
	width: 24px;
	height: 24px;
	line-height: 24px;
	padding: 0px;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a:hover span svg path,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a:hover span svg path{
	fill: var(--color-orange);
	stroke: var(--color-orange);
}

/*color schemes*/
.bx-pagination.bx-green  .bx-pagination-container ul li.bx-active span{
	background: #3bc915;
	color: #fff;
}
.bx-pagination.bx-yellow  .bx-pagination-container ul li.bx-active span{
	background: #F9A91D;
	color: #fff;
}
.bx-pagination.bx-red  .bx-pagination-container ul li.bx-active span{
	background: #E22B2B;
	color: #fff;
}
.bx-pagination.bx-blue .bx-pagination-container ul li.bx-active span{
	background: #F6F6F6;
	color: var(--color-orange);
}

/* End */


/* Start:/local/templates/.default/components/bitrix/news.list/news_list/style.css?17295837672340*/
/*news_main*/
.news_main {
    padding-top: 57px;
    padding-bottom: 50px;
    overflow: hidden;
}

.news_main_title {
    color: var(--color-black);
    font-family: var(--second-family);
    font-size: 50px;
    font-weight: 700;
    line-height: 55px; /* 110% */
    margin-bottom: 55px;
}

.news_main_slider .swiper-wrapper {
    height: initial;
}

.news_item {
    max-width: 600px;
    margin: 0 auto 40px;
}

.news_item_img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.news_item_img::before {
    content: '';
    display: block;
    width: 77px;
    height: 77px;
    background: var(--color-white) url(/local/templates/.default/images/arrow_news.svg) no-repeat 32px 24px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    transition: all .3s linear;
    opacity: 0;
}

.news_item:hover .news_item_img::before {
    opacity: 1;
}

.news_item_date {
    color: var(--color-grey);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 29px;
}

.news_item_name {
    color: var(--color-black);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 17px;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.news_item_name a,
.news_item_name a:hover{
    color: var(--color-black);
    text-decoration: none;
}

.news_item_anons {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news_main_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
}

.news_main_btn .btn_slider {
    margin-top: 0;
}

.news-list-page {
    margin-top: var(--section-spacing-lg);
    padding-bottom: var(--section-spacing-xl);
    border-bottom: 2px solid #DFDFDF;
}

@media (max-width: 768px) {

    .news_main {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .news_main_title {
        font-size: 40px;
        line-height: 45px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .news_main_title {
        font-size: 35px;
        line-height: 40px;;
    }

    .news_main_btn {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .news_item {
        margin: 0 auto 40px;
    }
}

/* End */
/* /local/templates/.default/components/bitrix/system.pagenavigation/.default/style.css?17290694312820 */
/* /local/templates/.default/components/bitrix/news.list/news_list/style.css?17295837672340 */
