.breadcrumbs{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.breadcrumbs li{
	position: relative;
	margin-right: 7px;
	padding-right: 7px;
}
.breadcrumbs li:last-child{
	padding-right: 0;
	margin-right: 0;
}
.breadcrumbs li:before{
position: absolute;
top:0;
right:0;
content:'\203A';
}
.breadcrumbs li:last-child:before{
	display: none;
}
.cat_page{
	display: flex;
	justify-content: space-between;
}
.cat_page_left{
width: calc(100% - 350px);
}
.cat_page_right{
width: 330px;
}
.catalog-categories{
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.catalog_category_item{
	width: 48%;
	padding: 20px;
	margin-bottom: 10px;
	text-align: center;
	background: #f3f3f3;
    border: 1px solid #d2d2d2;
}
.catalog-category-name{
	font-size: 25px;
}
.catalog_category_item_image{
	margin-top: 12px;
	width: 100%;
	height: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cat_page_right{

}
.tabs_nav{
	display: flex;
	justify-content: space-between;
}
.tabs_nav_item{
	width: 50%;
	border:1px solid #000;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 26px;
}
.tabs_nav_item.active a{
	color: #7b68ee;
}
.tabs_content{
	border:1px solid #000;
	padding: 20px 10px;
}
.catalog-menu,
.catalog-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.catalog-menu-item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.catalog-menu-item-inner a {
    text-decoration: none;
    color: #333;
    flex-grow: 1;
}

.catalog-menu-item-inner a:hover {
    color: #0066cc;
}

/* Кнопка раскрытия */
.catalog-menu-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #666;
    transition: transform 0.3s ease;
    user-select: none;
}

.catalog-menu-toggle:hover {
    color: #0066cc;
}

.catalog-menu-toggle.open {
    transform: rotate(45deg);
}

/* Подменю */
.catalog-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 20px;
}

.catalog-submenu.open {
    max-height: 2000px;
}

/* Текущая категория — выделена */
.catalog-menu-item.current > .catalog-menu-item-inner a {
    color: #0066cc;
    font-weight: 600;
}

/* Родители текущей — просто подсвечены, но не жирные */
.catalog-menu-item.current-ancestor > .catalog-menu-item-inner a {
    color: #0066cc;
}

/* Автораскрытие для родителей текущей категории */
.catalog-menu-item.current-ancestor > .catalog-submenu,
.catalog-menu-item.current > .catalog-submenu {
    max-height: 2000px;
}

.catalog-menu-item.current-ancestor > .catalog-menu-item-inner .catalog-menu-toggle,
.catalog-menu-item.current > .catalog-menu-item-inner .catalog-menu-toggle {
    transform: rotate(45deg);
}
.catalog-items{
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.catalog_item{
	width: 100%;
	margin-bottom: 20px;
	padding: 20px;
	text-align: center;
	background: #f3f3f3;
    border: 1px solid #d2d2d2;
    display: flex;
    justify-content: space-between;
}
.catalog_item_left{
	width: 25%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.catalog-item-image{
	width: 100%;
	height: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.catalog_item_right{
	width: calc(75% - 20px);
}
.catalog-item-title{
	font-size: 30px;
	text-align: left;
}
.catalog_item_right_desc{
	margin-top: 20px;
	font-size: 16px;
	text-align: left;
}
.catalog_item_right_btn{
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 0.3s;
	width: max-content;
	height: 40px;
	color: #fff;
    background: #7b68ee;
    border: 1px solid #7b68ee;
    padding: 0 20px;
}
.catalog_item_right_btn:hover{
	color: #7b68ee;
    background: #fff;
}
.popup_form_title{
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 20px;
}
.popup_form_content1{
    margin: 40px auto 0;
    width: auto;
    max-width: 450px;
}
.lang{
margin-left: 20px;
color:#fff;
}
.navbar-section.is-sticky .lang{
    color: #505050;
}
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-current {
    cursor: pointer;
    padding: 5px;
}

.lang-current img {
    width: 24px;
    height: auto;
    display: block;
}

.lang-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lang-dropdown:hover .lang-list {
    opacity: 1;
    visibility: visible;
}

.lang-list li a {
    display: block;
    padding: 5px 10px;
}

.lang-list li a img {
    width: 24px;
    height: auto;
}

.lang-list li a:hover {
    background: #f5f5f5;
}
@media (max-width: 991px){
.cat_page {
    flex-wrap: wrap;
}
.cat_page_left {
    width: 100%;
}
.cat_page_right {
    width: 100%;
    margin-top: 40px;
}
}
@media (max-width: 720px){
.catalog_category_item {
    width: 100%;
}
.techvio-responsive-nav .logo img{
	max-width: 100px;
}
}
.partner-list {
    justify-content: center;
}
.partner-list .partner-item{
	margin-bottom: 20px;
}
.partner-list .partner-item a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	min-height: 80px;
	width: 100%;
	margin-bottom: 0;
}
.partner-list .partner-item a img{
    max-height: 50px;
    max-width: 150px;
}