/*----------------------------------------*/
/*  NEW COMPONENT: Client Section Fix
/*  Центрирование логотипов клиентов по вертикали и горизонтали
/*----------------------------------------*/

/* Обеспечиваем одинаковую высоту для всех слайдов и центрирование */
.client-section-one .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

/* Центрирование article */
.client-section-one .swiper-slide article.pbmit-client-style-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 120px;
    padding: 30px 15px;
}

/* Центрирование контейнера клиента */
.pbmit-client-style-1 .pbmit-client-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 100px;
}

/* Центрирование обертки изображения */
.pbmit-client-style-1 .pbmit-featured-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

/* Центрирование изображений */
.pbmit-client-style-1 .pbmit-featured-wrapper img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 80px;
    height: auto;
    width: auto;
    object-fit: contain;
    object-position: center;
}


/*----------------------------------------*/
/*  NEW COMPONENT: Color Override
/*  Переопределение цвета #973115 на тёмно-синий #130947
/*----------------------------------------*/

/* Переопределение CSS переменных */
:root {
    --pbmit-global-color: #4f87fb !important;
    --pbmit-link-color-hover: #4f87fb !important;
}

/* Переопределение конкретных использований цвета */
.pbmit-ihbox-style-7 .pbmit-ihbox-icon-wrapper {
    background-color: #4f87fb !important;
}

body .pbmit-bg-color-global {
    background-color: #4f87fb !important;
}

/* Дополнительные переопределения для всех возможных использований */
* {
    /* Переопределение через селекторы с высокой специфичностью */
}

/* Переопределение для элементов с inline стилями (требует JavaScript) */

.pbmit-heading-subheading .pbmit-subtitle {
    color: var(--pbmit-global-color);
    font-weight: 500;
}

/*----------------------------------------*/
/*  NEW COMPONENT: Counter Section Three
/*  Стили для секции счетчиков с градиентным фоном
/*----------------------------------------*/

.counter-section-three {
    background-image: url(https://dentiq-demo.pbminfotech.com/html-demo/images/homepage-3/bg/bg-03.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.counter-section-three::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.counter-section-three .container {
    position: relative;
    z-index: 1;
}

.counter-section-three .pbminfotech-ele-fid-style-2 {
    position: relative;
}

.counter-section-three .pbminfotech-ele-fid-style-2:after {
    content: '';
    height: 100%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.22);
    position: absolute;
    top: 0;
    right: 0;
}

/* Переопределяем правило из style.css, чтобы показать полоску у первого элемента */
.counter-section-three .pbminfotech-ele-fid-style-2:first-child:after {
    display: block;
}

.counter-section-three .pbminfotech-ele-fid-style-2:last-child:after {
    display: none;
}

/* Стили для текста счетчиков - белый цвет */
.counter-section-three .pbmit-fid-inner,
.counter-section-three .pbmit-fid-title {
    color: var(--pbmit-white-color) !important;
}

.counter-section-three .pbmit-fid-sub {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Адаптивность */
@media (max-width: 991px) {
    .counter-section-three .pbminfotech-ele-fid-style-2:after {
        display: none;
    }
    
    .counter-section-three .pbminfotech-ele-fid-style-2 {
        margin-bottom: 30px;
    }
    
    .counter-section-three .pbminfotech-ele-fid-style-2:last-child {
        margin-bottom: 0;
    }
}


/*----------------------------------------*/
/*  Counter Section Two Styles
/*  Стили для секции счетчиков с круговыми диаграммами
/*----------------------------------------*/

.counter-section-two {
    padding-top: 60px;
    padding-bottom: 60px;
}

.counter-section-two .row {
    align-items: center;
}

/* Адаптивность */
@media (max-width: 991px) {
    .counter-section-two {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .counter-section-two .pbmit-heading-subheading {
        margin-bottom: 30px;
    }
}


/*----------------------------------------*/
/*  CTA Section Styles
/*  Стили для секции призыва к действию
/*----------------------------------------*/

.about-us-section-two {
    background-image: url(https://dentiq-demo.pbminfotech.com/html-demo/images/homepage-2/bg/bg-01.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 100px;
    padding-bottom: 90px;
}

.about-us-section-two::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.about-us-section-two .container {
    position: relative;
    z-index: 1;
}

.about-us-section-two .row {
    align-items: center;
}

.about-us-section-two .about-us-two-btn {
    text-align: right;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .about-us-section-two {
        padding-top: 80px;
        padding-bottom: 70px;
    }
}

@media (max-width: 991px) {
    .about-us-section-two .pbmit-ihbox-headingicon {
        flex-direction: column;
    }
    
    .about-us-section-two .about-us-two-btn {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .about-us-section-two {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .about-us-section-two .about-us-two-btn {
        text-align: center;
        margin-top: 35px;
        margin-bottom: 21.73913043px;
    }
}


.pbmit-dentiq-icon-chair:before {
    content: "\f129";
    color: var(--pbmit-global-color);
}
.pbmit-ihbox-style-3 {
    background-color: #4f87fb;
}
.appoinment-one-img::before {
    background-image: url('https://zaykov.pro/netcat_files/3/453/394A8504.jpg');
    background-size: cover;
    background-position: 80%;
    background-repeat: no-repeat;
}
.pbmit-btn-outline-global:hover, .pbmit-btn-outline-global:focus {
    background-color: var(--pbmit-global-color);
    border-color: var(--pbmit-global-color);
    color: #ffffff;
}

/*----------------------------------------*/
/*  NEW COMPONENT: Footer Color Fix
/*  Замена темно-синего цвета на светло-синий (#4f87fb) в футере
/*  Кнопка остается без изменений
/*----------------------------------------*/

/* Иконки социальных сетей */
footer .pbmit-social-links a {
    background-color: #4f87fb !important;
}

footer .pbmit-social-links a:hover {
    color: var(--pbmit-blackish-color);
    background-color: var(--pbmit-white-color);
}

/* Подчеркивание заголовков виджетов */
.site-footer .widget-title:after {
    background-color: #4f87fb !important;
}

/* Иконки контактов (адрес, телефон, email) */
.pbmit-contact-widget-lines .pbmit-contact-widget-line:before {
    background-color: #4f87fb !important;
}

/* Ссылки телефона и email в футере */
.site-footer .pbmit-contact-widget-line a,
.site-footer .pbmit-contact-widget-phone a,
.site-footer .pbmit-contact-widget-email a {
    color: #4f87fb !important;
}

.site-footer .pbmit-contact-widget-line a:hover,
.site-footer .pbmit-contact-widget-phone a:hover,
.site-footer .pbmit-contact-widget-email a:hover {
    color: #3d6fd9 !important;
    text-decoration: underline;
}

/* Ссылки при наведении */
.site-footer .widget ul a:hover {
    color: #4f87fb !important;
}

/* Даты в списке постов */
.site-footer .pbmit-rpw-date a {
    color: #4f87fb !important;
}

/* Значения времени работы */
.site-footer .pbmit-timelist-wrapper ul li .pbmit-timelist-li-value {
    color: #4f87fb !important;
}

/* Ссылки в копирайте при наведении */
.pbmit-footer-copyright-text-area a:hover {
    color: #4f87fb !important;
}

/* Кнопка остается без изменений - использует var(--pbmit-global-color) */
.pbmit-footer-boxes-2 button {
    background-color: var(--pbmit-global-color) !important;
}


/*----------------------------------------*/
/*  NEW COMPONENT: Header Overlay
/*  Стили для полупрозрачного header, накладывающегося на слайдер
/*----------------------------------------*/

/* Header - относительное позиционирование для absolute overlay */
.site-header.header-style-1 {
    position: relative;
}

/* Header overlay - ABSOLUTE относительно header/свайпера, наезжает на слайды */
.site-header .pbmit-header-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 2 !important;
    width: 100% !important;
}

/* Pre-header - static, отдельно сверху внутри overlay */
.site-header .pbmit-header-overlay .pre-header {
    position: static !important;
}

/* Site-header-menu - absolute относительно overlay, наезжает на слайды */
.site-header .pbmit-header-overlay .site-header-menu {
    position: absolute !important;
    top: 55px !important; /* Высота pre-header */
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

/* Когда site-header-menu становится sticky, он ВЫХОДИТ из overlay и становится fixed */
/* Это правило должно перекрыть absolute позиционирование */
.site-header .pbmit-header-overlay .site-header-menu.sticky-header,
.site-header-menu.sticky-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 999 !important;
}

/* Полупрозрачный фон для header menu (обычное состояние) */
.header-style-1 .site-header-menu {
    background-color: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

/* Непрозрачный фон для sticky header */
.header-style-1 .site-header-menu.sticky-header {
    background-color: rgba(255, 255, 255, 1) !important;
}

/* Скрытие pre-header при sticky */
.sticky-header .pre-header {
    display: none !important;
}

/* Плавная анимация для sticky header без дёрганий */
.site-header-menu {
    transition: all 200ms ease;
}

/* Sticky header - фиксированное позиционирование при прокрутке */
.sticky-header {
    position: fixed !important;
    top: 0px !important;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 1) !important;
    z-index: 999;
    margin: 0;
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0;
    opacity: 1;
    visibility: visible;
    -ms-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -op-animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -ms-animation-duration: 300ms;
    -moz-animation-duration: 300ms;
    -op-animation-duration: 300ms;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}


/* Адаптивность для экранов 1200px и ниже */
@media (max-width: 1200px) {
    /* Отключаем sticky header при ширине <= 1200px */
    .site-header-menu.sticky-header {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: auto !important;
        z-index: auto !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
    }
    
    /* Скрываем pre-header начиная с 1200px */
    .site-header .pbmit-header-overlay .pre-header {
        display: none !important;
    }
    
    /* Меняем позиционирование overlay на relative */
    .site-header .pbmit-header-overlay {
        position: relative !important;
    }
    
    /* Убираем отступ сверху для site-header-menu, т.к. pre-header скрыт */
    .site-header .pbmit-header-overlay .site-header-menu {
        position: relative !important;
        top: 0 !important;
    }
    
    /* Улучшаем фон header menu для лучшей читаемости */
    .header-style-1 .site-header-menu {
        background-color: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }
    
    /* Отключаем sticky поведение для всех элементов */
    .sticky-header {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: auto !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
    }
}

/* Адаптивность для планшетов (max-width: 991px) */
@media (max-width: 991px) {
    .header-style-1 .site-header-menu {
        background-color: rgba(255, 255, 255, 1) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* Адаптивность для мобильных устройств (max-width: 767px) */
@media (max-width: 767px) {
    .site-header .pbmit-header-overlay .site-header-menu {
        padding: 10px 0;
    }
    
    /* Улучшаем читаемость на мобильных */
    .header-style-1 .site-header-menu {
        background-color: rgba(255, 255, 255, 1) !important;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}


.site-header-menu.sticky-header .pbmit-btn-outline {
    border: 1px solid var(--pbmit-global-color);
    color: var(--pbmit-global-color);   
}
.pbmit-btn-outline {
    border: 1px solid #130947;
    color: #130947;
}

.site-header-menu.sticky-header .pbmit-btn-outline:hover,
.pbmit-btn-outline:hover {
    border: 1px solid var(--pbmit-global-color);
    color: var(--pbmit-white-color);
}

@media (max-width: 768px) {
    .site-header .site-branding img {
        max-height: 25px !important;
    }
    .site-header .site-title a {
        line-height: unset;
        height: unset;
    }
    
}

/*----------------------------------------*/
/*  NEW COMPONENT: Mobile Menu Fix
/*  Исправления для мобильного меню бургера
/*----------------------------------------*/

@media(max-width:1199px) {
	/* Предотвращение горизонтальной прокрутки */
	body {
		overflow-x: hidden !important;
	}
	.page-wrapper {
		overflow-x: hidden;
	}
	
    /** Main menu resoposive **/
	.pbmit-menu-wrap {
		background-color: #222;
		position: fixed;
		top: 0;
		right: -400px;
		z-index: 1000;
		width: 300px;
		max-width: 300px;
		height: 100vh;
		padding: 90px 0;
		display: block;
		visibility: hidden;
		transition: all 600ms ease;
		-moz-transition: all 600ms ease;
		-webkit-transition: all 600ms ease;
		-ms-transition: all 600ms ease;
		-o-transition: all 600ms ease;
		opacity: 0;
		overflow-x: hidden;
		pointer-events: none;
	}
	.active .pbmit-menu-wrap{
		right: 0px;
		visibility: visible;
		opacity: 1;
		overflow-y: auto;
		overflow-x: hidden;
		pointer-events: auto;
		-webkit-transition-delay: 300ms;
		-moz-transition-delay: 300ms;
		-ms-transition-delay: 300ms;
		-o-transition-delay: 300ms;
		transition-delay: 300ms;
	}
	.pbmit-mobile-menu-bg {
		position: fixed;
		right: 0;
		top: 0;
		width: 0%;
		height: 100vh;
		display: block;
		z-index: 99;
		background: inherit;
		visibility: hidden;
		-webkit-transform: translateX(101%);
		-ms-transform: translateX(101%);
		transform: translateX(101%);
		transition: all 900ms ease;
		-moz-transition: all 900ms ease;
		-webkit-transition: all 900ms ease;
		-ms-transition: all 900ms ease;
		-o-transition: all 900ms ease;
		-webkit-transition-delay: 300ms;
		-moz-transition-delay: 300ms;
		-ms-transition-delay: 300ms;
		-o-transition-delay: 300ms;
		transition-delay: 300ms;
		overflow: hidden;
	}
	.active .pbmit-mobile-menu-bg {
		opacity: 1;
		width: 100%;
		visibility: visible;
		transition: all 900ms ease;
		-moz-transition: all 900ms ease;
		-webkit-transition: all 900ms ease;
		-ms-transition: all 900ms ease;
		-o-transition: all 900ms ease;
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
	}
}


.pbmit-ihbox-style-5  .pbmit-ihbox-icon-wrapper:before {
	background-color: #4f87fb;
}
.pbmit-ihbox-style-5 .pbmit-ihbox-icon-wrapper img {
    object-fit: cover;
}

/*----------------------------------------*/
/*  NEW COMPONENT: Service Section Three
/*  Стили для секции услуг с изображением слева
/*----------------------------------------*/

/* Базовые стили секции */
.service-section-three {
    background-image: url(../../assets/images/homepage-3/bg/pattern-1.png);
    background-position: center center;
    background-repeat: repeat;
}

/* Стили для изображения слева */
.service-section-three > .container > .row {
    display: flex;
    align-items: flex-end;
}

.service-three-img {
    text-align: left;
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.service-three-img img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
}

/* Стили для карточек услуг (pbmit-service-style-3) */
.pbmit-service-style-3 {
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background-color: var(--pbmit-white-color);
    margin-bottom: 30px;
}

/* Анимация для всех элементов */
.pbmit-service-style-3,
.pbmit-service-style-3 .pbminfotech-box-content:before,
.pbmit-service-style-3 .pbmit-service-icon-wrapper {
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.pbmit-service-style-3 .pbminfotech-box-content {
    position: relative;
}

.pbmit-service-style-3 .pbminfotech-box-content-inner {
    padding: 40px 0px 30px;
}

.pbmit-service-style-3 .pbmit-service-icon-wrapper i {
    color: var(--pbmit-global-color);
    z-index: 1;
    position: relative;
}

.pbmit-service-style-3 .pbmit-service-title {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    margin: 0px;
    z-index: 1;
}

.pbmit-service-style-3 .pbmit-service-title a {
    color: var(--pbmit-blackish-color);
    text-decoration: none;
    -webkit-transition: color 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: color 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: color 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.pbmit-service-style-3 .pbmit-service-icon-wrapper {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 20px;
    text-align: center;
}

/* Псевдоэлемент :after - белый фон (нижний слой) */
.pbmit-service-style-3 .pbminfotech-box-content:after {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--pbmit-white-color);
    z-index: -2;
}

/* Псевдоэлемент :before - цветной фон при наведении (верхний слой) */
.pbmit-service-style-3 .pbminfotech-box-content:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: visible;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
}

/* Эффект при наведении - раскрытие цветного фона сверху вниз */
.pbmit-service-style-3:hover .pbminfotech-box-content:before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
    background-color: var(--pbmit-global-color);
}

/* Изменение цвета текста при наведении */
.pbmit-service-style-3:hover {
    color: var(--pbmit-white-color);
}

.pbmit-service-style-3:hover .pbmit-service-title a,
.pbmit-service-style-3:hover .pbmit-service-icon-wrapper i,
.pbmit-service-style-3:hover .pbmit-service-icon-wrapper i::before {
    color: var(--pbmit-white-color);
    transition-delay: .1s;
}

/* Стили для кнопки */
.service-section-three .pbmit-btn {
    margin-bottom: 40px;
    display: inline-block;
    background-color: var(--pbmit-global-color);
}

.service-section-three .pbmit-btn:hover {
    background-color: var(--pbmit-blackish-color);
}

/* Адаптивные стили */
@media (max-width: 1199px) {
    .service-section-three .pbmit-btn {
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .service-section-three {
        padding-top: 100px;
    }
    
    .service-section-three > .container > .row {
        display: block;
        align-items: normal;
    }
    
    .service-three-img {
        text-align: center;
        margin-bottom: 50px;
        display: block;
        height: auto;
    }
    
    .service-section-three .pbmit-btn {
        margin-bottom: 40px;
    }
    
    .pbmit-service-style-3 {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .service-section-three {
        padding-top: 60px;
    }
    
    .service-three-img {
        margin-bottom: 40px;
    }
    
    .pbmit-service-style-3 .pbminfotech-box-content-inner {
        padding: 30px 15px 25px;
    }
    
    .pbmit-service-style-3 .pbmit-service-icon-wrapper {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 15px;
    }
    
    .pbmit-service-style-3 .pbmit-service-title {
        font-size: 15px;
        line-height: 18px;
    }
}


/*----------------------------------------*/
/*  NEW COMPONENT: Slider One (pbmit-slider-one)
/*  Стили для слайдера из макета example-template
/*----------------------------------------*/

/* Анимации трансформации элементов слайдера */
.pbmit-slider-area .transform-bottom{
	opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms ease;
}
.swiper-slide-active .transform-bottom{
	opacity: 1;
    transform: translateY(0);
}
.pbmit-slider-area .transform-right{
	opacity: 0;
    transition: all 1000ms ease;
    transform: translateX(200px);
}
.swiper-slide-active .transform-right{
	opacity: 1;
    transform: translateX(0);
}
.pbmit-slider-area .transform-left{
	opacity: 0;
    transition: all 1000ms ease;
    transform: translateX(-200px);
}   
.swiper-slide-active .transform-left {
	opacity: 1;
	transform: translateX(0);
}

/* Кнопки навигации слайдера */
.pbmit-slider-area .swiper-button-next, 
.pbmit-slider-area .swiper-button-prev{
	width: 60px;
	height: 60px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	margin-top: 0;
	top: 50%;
}

.pbmit-slider-area .swiper-button-prev{
	left: 30px;
	transform: translateY(-50%) rotate(180deg); /* Центрирование + поворот влево */
}

.pbmit-slider-area .swiper-button-next{
	right: 30px;
	transform: translateY(-50%); /* Центрирование, стрелка вправо */
}

/* Исправление направления стрелок: prev влево, next вправо */
.pbmit-slider-area .swiper-button-prev:after {
	content: '\e814' !important; /* Иконка стрелки */
	font-family: "pbminfotech-base-icons" !important;
	font-weight: 600;
	font-size: 20px;
	color: #4f87fb;
	transition: all 0.3s ease;
}

.pbmit-slider-area .swiper-button-next:after {
	content: '\e814' !important; /* Иконка стрелки */
	font-family: "pbminfotech-base-icons" !important;
	font-weight: 600;
	font-size: 20px;
	color: #4f87fb;
	transition: all 0.3s ease;
}

.pbmit-slider-area .swiper-button-next:hover {
	background-color: #4f87fb;
	box-shadow: 0 4px 15px rgba(79, 135, 251, 0.4);
	transform: translateY(-50%) scale(1.1);
}

.pbmit-slider-area .swiper-button-prev:hover {
	background-color: #4f87fb;
	box-shadow: 0 4px 15px rgba(79, 135, 251, 0.4);
	transform: translateY(-50%) rotate(180deg) scale(1.1);
}

.pbmit-slider-area .swiper-button-next:hover:after, 
.pbmit-slider-area .swiper-button-prev:hover:after{
	color: var(--pbmit-white-color);
	transform: scale(1.2);
}

/* Slider One - основной стиль */
.pbmit-slider-one .swiper-wrapper{
	display: flex;
	align-items: stretch;
}
.pbmit-slider-one .swiper-slide{
	height: auto;
	display: flex;
	align-items: stretch;
}
.pbmit-slider-one .pbmit-slider-item{
	padding: 280px 0 240px 0; /* Увеличена высота слайдов */
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	min-height: 800px; /* Увеличена минимальная высота */
}

/* Фоновое изображение слайдера */
.pbmit-slider-area .pbmit-slider-bg{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	width: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* Затемнение для фона слайдера (по умолчанию прозрачное) */
.pbmit-slider-area .pbmit-slider-bg::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: transparent;
	transition: background 0.3s ease;
	z-index: 0;
}

/* Стили для light-slide - затемнение и белый текст */
.pbmit-slider-one .light-slide .pbmit-slider-bg::after{
	background: rgba(0, 0, 0, 0.5);
}

.pbmit-slider-one .light-slide .pbmit-slider-item{
	position: relative;
}

.pbmit-slider-one .light-slide .pbmit-slider-content{
	position: relative;
	z-index: 1;
}

.pbmit-slider-one .light-slide .pbmit-slider-content .pbmit-title{
	color: var(--pbmit-white-color) !important;
}

.pbmit-slider-one .light-slide .pbmit-slider-content .pbmit-title .pbmit-global-color{
	color: #4f87fb !important;
}

.pbmit-slider-one .light-slide .pbmit-slider-content .pbmit-sub-title{
	color: #4f87fb !important;
}


/* Контент слайдера */
.pbmit-slider-one .pbmit-slider-content,
.pbmit-slider-two .pbmit-slider-content{
	overflow: hidden;
}

/* Подзаголовок слайдера */
.pbmit-slider-area .pbmit-slider-content .pbmit-sub-title{
	font-family: 'Mulish', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #4f87fb;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

/* Заголовок слайдера */
.pbmit-slider-area .pbmit-slider-content .pbmit-title{
	font-family: 'Mulish', sans-serif;
	font-size: 55px;
	line-height: 60px;
	font-weight: 800;
	letter-spacing: -1px;
	color: #130947;
}
.pbmit-slider-one .pbmit-slider-content .pbmit-title,
.pbmit-slider-three .pbmit-slider-content .pbmit-title{
	margin-bottom: 50px;
}
.pbmit-slider-area .pbmit-slider-content .pbmit-title .pbmit-global-color{
	color: #4f87fb;
}

/* Подчеркивание текста в заголовке */
.pbmit-slider-one .pbmit-title .text-underline{
	position: relative;
	text-decoration: underline;
	text-decoration-color: #4f87fb;
	text-decoration-thickness: 5px;
	text-underline-offset: 3px;
}

/* Кнопки слайдера */
.pbmit-slider-area .pbmit-button {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Кнопка слайдера - голубой цвет */
.pbmit-slider-area .pbmit-button .pbmit-btn{
	background-color: #4f87fb !important;
	color: var(--pbmit-white-color) !important;
}

.pbmit-slider-area .pbmit-button .pbmit-btn:hover,
.pbmit-slider-area .pbmit-button .pbmit-btn:focus{
	background-color: #3d6fd9 !important;
	color: var(--pbmit-white-color) !important;
}

/* Адаптивность для экранов 1200px и ниже */
@media(max-width: 1200px) {
	.pbmit-slider-area .pbmit-slider-content .pbmit-sub-title{
		font-size: 13px;
		line-height: 17px;
		letter-spacing: 1.5px;
	}
	.pbmit-slider-area .pbmit-slider-content .pbmit-title{
		font-size: 42px;
		line-height: 48px;
	}
	.pbmit-slider-one .pbmit-slider-item{
		padding: 200px 0 180px 0;
		min-height: 600px;
	}
	.pbmit-slider-one .pbmit-title .text-underline{
		text-decoration-thickness: 4px;
	}
	.pbmit-slider-one .pbmit-slider-content .pbmit-title,
	.pbmit-slider-three .pbmit-slider-content .pbmit-title{
		margin-bottom: 45px;
	}
	.pbmit-slider-area .pbmit-button .pbmit-btn{
		font-size: 13px;
		line-height: 21px;
		padding: 13px 30px;
	}
	.pbmit-slider-area .swiper-button-next, 
	.pbmit-slider-area .swiper-button-prev{
		width: 52px;
		height: 52px;
	}
	.pbmit-slider-area .swiper-button-prev{
		left: 25px;
	}
	.pbmit-slider-area .swiper-button-next{
		right: 25px;
	}
	.pbmit-slider-area .swiper-button-next:after, 
	.pbmit-slider-area .swiper-button-prev:after{
		font-size: 18px;
	}
}

/* Адаптивность для планшетов (max-width: 991px) */
@media(max-width: 991px) {
	.pbmit-slider-area .pbmit-slider-content .pbmit-sub-title{
		font-size: 12px;
		line-height: 16px;
		letter-spacing: 1.5px;
	}
	.pbmit-slider-area .pbmit-slider-content .pbmit-title{
		font-size: 40px;
		line-height: 46px;
	}
	.pbmit-slider-one .pbmit-slider-item{
		padding: 120px 0 100px 0;
		min-height: 450px;
	}
	.pbmit-slider-one .pbmit-title .text-underline{
		text-decoration-thickness: 4px;
	}
	.pbmit-slider-one .pbmit-slider-content .pbmit-title,
	.pbmit-slider-three .pbmit-slider-content .pbmit-title{
		margin-bottom: 40px;
	}
	.pbmit-slider-area .pbmit-button .pbmit-btn{
		font-size: 12px;
		line-height: 20px;
		padding: 12px 28px;
	}
	.pbmit-slider-area .swiper-button-next, 
	.pbmit-slider-area .swiper-button-prev{
		width: 50px;
		height: 50px;
	}
	.pbmit-slider-area .swiper-button-prev{
		left: 20px;
	}
	.pbmit-slider-area .swiper-button-next{
		right: 20px;
	}
	.pbmit-slider-area .swiper-button-next:after, 
	.pbmit-slider-area .swiper-button-prev:after{
		font-size: 18px;
	}
}

/* Адаптивность для мобильных устройств (max-width: 767px) */
@media(max-width: 767px) {
	.pbmit-slider-area .pbmit-slider-content .pbmit-sub-title{
		font-size: 10px;
		line-height: 14px;
		letter-spacing: 1px;
		margin-bottom: 10px;
	}
	.pbmit-slider-area .pbmit-slider-content .pbmit-title{
		font-size: 28px;
		line-height: 34px;
		letter-spacing: -0.5px;
	}
	.pbmit-slider-one .pbmit-slider-item{
		padding: 100px 0 80px 0;
		min-height: 400px;
	}
	.pbmit-slider-one .pbmit-title .text-underline{
		text-decoration-thickness: 3px;
		text-underline-offset: 2px;
	}
	.pbmit-slider-one .pbmit-slider-content .pbmit-title,
	.pbmit-slider-three .pbmit-slider-content .pbmit-title{
		margin-bottom: 30px;
	}
	.pbmit-slider-one .pbmit-slider-content .col-md-6 {
		width: 100%;
		max-width: 100%;
	}

	.pbmit-slider-area .pbmit-button .pbmit-btn{
		font-size: 11px;
		line-height: 18px;
		padding: 10px 24px;
		width: auto;
	}
	.pbmit-slider-area .swiper-button-next, 
	.pbmit-slider-area .swiper-button-prev{
		width: 44px;
		height: 44px;
	}
	.pbmit-slider-area .swiper-button-prev{
		left: 15px;
	}
	.pbmit-slider-area .swiper-button-next{
		right: 15px;
	}
	.pbmit-slider-area .swiper-button-next:after, 
	.pbmit-slider-area .swiper-button-prev:after{
		font-size: 16px;
	}
}

/* Адаптивность для очень маленьких экранов (max-width: 480px) */
@media(max-width: 480px) {
	.pbmit-slider-area .pbmit-slider-content .pbmit-sub-title{
		font-size: 9px;
		line-height: 13px;
		letter-spacing: 0.5px;
	}
	.pbmit-slider-area .pbmit-slider-content .pbmit-title{
		font-size: 24px;
		line-height: 30px;
		letter-spacing: -0.5px;
	}
	.pbmit-slider-one .pbmit-slider-item{
		padding: 80px 0 60px 0;
		min-height: 350px;
	}
	.pbmit-slider-one .pbmit-slider-content .pbmit-title,
	.pbmit-slider-three .pbmit-slider-content .pbmit-title{
		margin-bottom: 25px;
	}
	.pbmit-slider-area .pbmit-button .pbmit-btn{
		font-size: 10px;
		line-height: 16px;
		padding: 8px 20px;
	}
	.pbmit-slider-area .swiper-button-next, 
	.pbmit-slider-area .swiper-button-prev{
		width: 40px;
		height: 40px;
	}
	.pbmit-slider-area .swiper-button-prev{
		left: 10px;
	}
	.pbmit-slider-area .swiper-button-next{
		right: 10px;
	}
	.pbmit-slider-area .swiper-button-next:after, 
	.pbmit-slider-area .swiper-button-prev:after{
		font-size: 14px;
	}
}


/* Slider Text Button Styles */
.pbmit-slider-area .pbmit-button {
    display: flex;
    align-items: center;
}
.pbmit-slider-area .pbmit-button .pbmit-text-btn{
	display: flex;
	align-items: center;
}
.pbmit-slider-area .pbmit-button .pbmit-text-btn .icon-box{
	border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
	background-color: var(--pbmit-white-color);
}
.pbmit-slider-area .pbmit-button .pbmit-text-btn .icon-box i{
	color: var(--pbmit-global-color);
	font-size: 20px;
}
.pbmit-slider-area .pbmit-button .pbmit-text-btn .pbmit-text a,
.pbmit-slider-three .pbmit-button .pbmit-text-btn .pbmit-text{
	font-size: 13px;
	line-height: 23px;
	font-weight: 900;
	text-transform: uppercase;
	margin-left: 15px;
	color: rgb(19, 9, 71);
}

/* Responsive Styles */
@media (max-width: 991px) {
	.pbmit-slider-area .pbmit-button .pbmit-text-btn .icon-box{
		width: 40px;
   	 	height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.pbmit-slider-area .pbmit-button .pbmit-text-btn .icon-box i{
		font-size: 16px;
	}
	.pbmit-slider-area .pbmit-button .pbmit-text-btn .pbmit-text a{
		font-size: 10px;
	}
}

@media (max-width: 767px) {
	.pbmit-slider-area .pbmit-button .pbmit-text-btn{
		display: none;
	}
}

.light-slide .pbmit-button .pbmit-text-btn .pbmit-text a {
    color: var(--pbmit-white-color);
}

/*----------------------------------------*/
/*  NEW COMPONENT: Tab Style Fix
/*  Исправления для табов - размещение в одну строку на десктопе
/*  Синие цвета вместо теплых
/*----------------------------------------*/

/* Обеспечиваем, что табы помещаются в одну строку на десктопе */
.pbmit-tab-style-1 .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    border-bottom: 1px solid #e5e8ef;
    margin-bottom: 30px;
}

/* Синие цвета для активных табов */
.pbmit-tab-style-1 .nav-item .nav-link.active,
.pbmit-tab-style-1 .nav-item a.active {
    border-bottom: 2px solid #4f87fb !important;
}

.pbmit-tab-style-1 .nav-item .nav-link.active .icon_mn_nav svg path,
.pbmit-tab-style-1 .nav-item a.active .icon_mn_nav svg path {
    fill: #4f87fb !important;
}

.pbmit-tab-style-1 .nav-item .nav-link.active span,
.pbmit-tab-style-1 .nav-item a.active span {
    color: #4f87fb !important;
    font-weight: 700;
}

/* Цвета для неактивных табов */
.pbmit-tab-style-1 .nav-item .nav-link:not(.active),
.pbmit-tab-style-1 .nav-item a:not(.active) {
    color: #6d7a8c;
}

.pbmit-tab-style-1 .nav-item .nav-link:not(.active) .icon_mn_nav svg path,
.pbmit-tab-style-1 .nav-item a:not(.active) .icon_mn_nav svg path {
    fill: #6d7a8c !important;
}

.pbmit-tab-style-1 .nav-item .nav-link:not(.active) span,
.pbmit-tab-style-1 .nav-item a:not(.active) span {
    color: #6d7a8c;
}

/* Hover эффект для табов */
.pbmit-tab-style-1 .nav-item .nav-link:hover:not(.active) .icon_mn_nav svg path,
.pbmit-tab-style-1 .nav-item a:hover:not(.active) .icon_mn_nav svg path {
    fill: #4f87fb !important;
    transition: fill 0.3s ease;
}

.pbmit-tab-style-1 .nav-item .nav-link:hover:not(.active) span,
.pbmit-tab-style-1 .nav-item a:hover:not(.active) span {
    color: #4f87fb;
    transition: color 0.3s ease;
}

.pbmit-tab-style-1 .nav-item {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
}

.pbmit-tab-style-1 .nav-item .nav-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    white-space: nowrap;
    text-align: center;
    font-size: clamp(10px, 1.2vw, 13px);
    line-height: 1.4;
    gap: 8px;
}

.pbmit-tab-style-1 .nav-item .nav-link .icon_mn_nav {
    margin-right: 0;
    margin-bottom: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pbmit-tab-style-1 .nav-item .nav-link .icon_mn_nav svg {
    width: 18px;
    height: 18px;
    display: block;
}

.pbmit-tab-style-1 .nav-item .nav-link span {
    margin-left: 0;
    display: inline-block;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Адаптивность для средних экранов - уменьшаем шрифт если не влезает */
@media (max-width: 1400px) {
    .pbmit-tab-style-1 .nav-item .nav-link {
        font-size: 11px;
        padding: 14px 6px;
        gap: 6px;
    }
    
    .pbmit-tab-style-1 .nav-item .nav-link .icon_mn_nav svg {
        width: 16px;
        height: 16px;
    }
}

/* Адаптивность для планшетов */
@media (max-width: 991px) {
    .pbmit-tab-style-1 .nav-tabs {
        flex-wrap: wrap;
    }
    
    .pbmit-tab-style-1 .nav-item {
        flex: 0 0 50%;
        min-width: 50%;
    }
    
    .pbmit-tab-style-1 .nav-item .nav-link {
        font-size: 11px;
        padding: 12px 6px;
        gap: 6px;
    }
    
    .pbmit-tab-style-1 .nav-item .nav-link .icon_mn_nav svg {
        width: 16px;
        height: 16px;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 767px) {
    .pbmit-tab-style-1 .nav-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .pbmit-tab-style-1 .nav-item .nav-link {
        font-size: 10px;
        padding: 10px 5px;
        gap: 5px;
    }
    
    .pbmit-tab-style-1 .nav-item .nav-link .icon_mn_nav svg {
        width: 14px;
        height: 14px;
    }
}


