

/* Start:/local/templates/.default/components/bitrix/system.pagenavigation/.default/style.css?17440128462839*/
.bx-pagination {
	margin: 10px 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: inline-block;
}
.bx-pagination .bx-pagination-container ul li {
	display: inline-block;
	margin: 0 2px 15px 2px;
}
.bx-pagination .bx-pagination-container ul li span{
    -webkit-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
       -moz-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    	-ms-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    	 -o-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    		transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	background: #fff;
	padding: 0 8px;
	display: block;
	height: 32px;
	width: 32px;
	line-height: 32px;
	color: #444;
	font-size: 14px;
	border-radius: 4px;
	vertical-align: middle;
	-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: 4px; 
	height: 32px;
	min-width: 32px;
	line-height: 32px;
	color: #444;
	vertical-align: middle;
}
.bx-pagination .bx-pagination-container ul li a:hover span{
	background: #DADADA;
}
.bx-pagination .bx-pagination-container ul li.bx-active span{
	background: #81A813;
	color: #fff;
}
.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: #fff;
	/* border: 2px solid #eff0f1; */
	line-height: 28px;
	/* padding: 0 18px; */
	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{
	color: #aab1b4;
	background: #fff;
	/* border: 2px solid #eff0f1; */
	line-height: 28px;
	/* padding: 0 18px; */
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a:hover span {
	background: #fff;
	border-color: #DADADA;
	color: #000;
}

/*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: #0083d1;
	color: #fff;
}

/* End */


/* Start:/local/templates/.default/components/bitrix/news.list/production/style.css?17670100582702*/
/* Стили для страницы "Наше производство" */
.production-section {
    padding: 2rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.production-intro {
    max-width: 1200px;
    margin: 0 auto;
}

.production-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.production-intro-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.production-intro-image:hover img {
    transform: scale(1.02);
}

.production-intro-content h1 {
    color: var(--primary-dark, #1a1a1a);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.production-intro-text {
    color: var(--text-dark, #333);
    line-height: 1.8;
    font-size: 1.125rem;
}

.production-info-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.production-info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.production-info-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .production-info-content {
        flex-direction: row;
    }
    
    .production-info-content:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.production-info-image {
    flex-shrink: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 0.75rem;
}

@media (min-width: 768px) {
    .production-info-image {
        width: 50%;
    }
}

.production-info-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.production-info-image:hover img {
    transform: scale(1.05);
}

.production-info-text {
    flex: 1;
}

.production-info-text h2 {
    color: var(--primary-dark, #1a1a1a);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.production-info-description {
    color: var(--text-dark, #333);
    line-height: 1.7;
    font-size: 1rem;
}

/* Адаптивность */
@media (max-width: 767px) {
    .production-section {
        padding: 1rem 0;
    }
    
    .production-intro {
        margin-bottom: 2rem;
    }
    
    .production-intro-content h1 {
        font-size: 1.75rem;
    }
    
    .production-intro-text {
        font-size: 1rem;
    }
    
    .production-info-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .production-info-text h2 {
        font-size: 1.5rem;
    }
}


/* End */
/* /local/templates/.default/components/bitrix/system.pagenavigation/.default/style.css?17440128462839 */
/* /local/templates/.default/components/bitrix/news.list/production/style.css?17670100582702 */
