

/* Start:/local/templates/atm-tech/components/bitrix/news.list/sertif/style.css?17629296094255*/
/* Основные стили слайдера */
.swiper.cert-slider {
    position: relative;
    padding: 40px 60px 60px;
    margin: 20px 0;
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    align-items: center;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cert-slide {
    width: 280px; /* Уменьшил ширину для пропорций */
    height: 400px; /* Фиксированная высота */
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e3e3e3;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.swiper-slide {
    width: auto !important;
    display: flex;
    justify-content: center;
}

.cert-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.cert-slide:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #d1d1d1;
}

.cert-slide:hover::before {
    opacity: 1;
}

.cert-slide img {
    width: 100%;
    height: 400px; /* Фиксированная высота */
    object-fit: contain; /* Сохраняет пропорции */
    object-position: center;
    transition: transform 0.4s ease;
    background: #f8f9fa;
    display: block;
}

.cert-slide:hover img {
    transform: scale(1.05);
}

/* Пагинация */
.swiper.cert-slider .swiper-pagination {
    position: unset;
    margin: 30px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px; /* Ограничиваем ширину */
    margin-left: auto;
    margin-right: auto;
}

.swiper-pagination-bullet {
    width: 8px; /* Уменьшил размер */
    height: 8px;
    background: #ddd;
    opacity: 0.6;
    margin: 0 4px; /* Уменьшил отступы */
    transition: all 0.3s ease;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    width: 20px; /* Уменьшил активный буллет */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 1;
    transform: scale(1.1);
}

/* Скрываем лишние буллеты если их много */
.swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    opacity: 0.3;
}

/* Навигационные кнопки */
.cert-slider .swiper-button-next,
.cert-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: -25px;
}

.cert-slider .swiper-button-next {
    right: 10px;
}

.cert-slider .swiper-button-prev {
    left: 10px;
}

.cert-slider .swiper-button-next::after,
.cert-slider .swiper-button-prev::after {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.cert-slider .swiper-button-next:hover,
.cert-slider .swiper-button-prev:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.cert-slider .swiper-button-next:hover::after,
.cert-slider .swiper-button-prev:hover::after {
    color: white;
}

/* Адаптивность */
@media (max-width: 768px) {
    .swiper.cert-slider {
        padding: 30px 40px 50px;
    }
    
    .cert-slide {
        width: 250px;
        height: 350px;
    }
    
    .cert-slide img {
        height: 350px;
    }
    
    .cert-slider .swiper-button-next,
    .cert-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .cert-slider .swiper-button-next::after,
    .cert-slider .swiper-button-prev::after {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .swiper.cert-slider {
        padding: 20px 30px 40px;
    }
    
    .cert-slide {
        width: 220px;
        height: 300px;
    }
    
    .cert-slide img {
        height: 300px;
    }
}
/* End */


/* Start:/local/templates/.default/components/bitrix/system.pagenavigation/.default/style.css?15688911033038*/

.catalog-section-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 100px;
}

.catalog-section-pagination__prev {
    margin-right: 20px;
}

@media screen and (max-width: 480px) {
    .catalog-section-pagination__prev {
        margin-right: 15px;
    }
}

.catalog-section-pagination__next {
    margin-left: 20px;
}

@media screen and (max-width: 480px) {
    .catalog-section-pagination__next {
        margin-left: 15px;
    }
}

.catalog-section-pagination__prev, .catalog-section-pagination__next {
    font-size: 37px;
    color: #BFBFBF;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    text-decoration: none;
}

@media screen and (max-width: 480px) {
    .catalog-section-pagination__prev, .catalog-section-pagination__next {
        font-size: 24px;
    }
}

.catalog-section-pagination__prev:hover, .catalog-section-pagination__prev:focus, .catalog-section-pagination__next:hover, .catalog-section-pagination__next:focus {
    color: #8B8B8A;
}

.catalog-section-pagination__item {
    width: 27px;
    height: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    line-height: 165%;
    color: #7C7C7B;
    text-decoration: none;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    margin: 0 2px;
}

.catalog-section-pagination__item:hover, .catalog-section-pagination__item:active, .catalog-section-pagination__item:focus, .catalog-section-pagination__item_active {
    background: #8B8B8A;
    color: white;
}

.icon-arrow-right,
.icon-arrow-left {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #BFBFBF;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.icon-arrow-right::before,
.icon-arrow-left::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    transform: rotate(-45deg);
}

.icon-arrow-left::before {
    left: 2px;
    border-left: 2px solid #BFBFBF;
    border-top: 2px solid #BFBFBF;
}

.icon-arrow-right::before {
    right: 2px;
    border-right: 2px solid #BFBFBF;
    border-bottom: 2px solid #BFBFBF;
}

.icon-arrow-right:hover,
.icon-arrow-left:hover {
    border: 2px solid #8B8B8A;
}
.icon-arrow-left:hover::before {
    border-left: 2px solid #8B8B8A;
    border-top: 2px solid #8B8B8A;
}
.icon-arrow-right:hover::before{
    border-right: 2px solid #8B8B8A;
    border-bottom: 2px solid #8B8B8A;
}
/* End */
/* /local/templates/atm-tech/components/bitrix/news.list/sertif/style.css?17629296094255 */
/* /local/templates/.default/components/bitrix/system.pagenavigation/.default/style.css?15688911033038 */
