

:root{
	--color-yellow: #FED526;
	--color-dark: #111F2A;
	--height-menu: 94px;
}
@media (max-width: 991px){
	:root{
		--height-menu: 90px;
	}
}
@media (max-width: 575px){
	:root{
		--height-menu: 60px;
	}
}
body{
	font-family: 'TT Commons';
}
header {
    background-color: var(--color-yellow);
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--height-menu);
    z-index: 99;
}
main {
    position: relative;
}
img, svg{
	max-width: 100%;
}
a:hover {
    color: var(--color-yellow);
}
.relative{
	position: relative;
}
.form-control{
	box-shadow: none !important;
	outline: none !important;
	border-color: inherit !important;
}
.logo {
	max-width: 263px;
}

.btn {
    font-size: 15px;
    line-height: 117%;
    /* padding: 14px 31px; */
	padding: 14px 25px;
    border-radius: 31px;
    border: none;
    text-transform: uppercase;
    box-shadow: none !important;
    font-weight: 600;
}
.btn svg {
    margin-left: 21px;
    position: relative;
    bottom: 1px;
}
.btn:active{
	color: inherit;
	background-color: inherit;
	
}
.btn:focus {
    
    transform: translateY(1px);
}
.btn-dark{
	background-color: var(--color-dark);
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.btn-white{
	border: 1px solid white;
	color: white !important;
	background-color: transparent;
	overflow: hidden;
	position: relative;
}
.btn-white:hover {
    background-color: rgb(255 255 255 / 25%);
}
.btn-primary {
    background-color: var(--color-yellow);
    color: var(--color-dark);
    border-color: var(--color-yellow);
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.btn-primary::before,
.btn-dark::before,
.btn-white::before {
    content: '';
    position: absolute;
    background-color: white;
    left: -100%;
    top: 0;
    width: 60px;
    height: 100%;
    transform: skewX(60deg);
    z-index: -1;
	transition: .7s all cubic-bezier(.785, .135, .15, .86);
	opacity: 0.7;
}
.btn-primary:hover,
.btn-primary:focus{
	background-color: var(--color-yellow);
    color: var(--color-dark);
	border-color: var(--color-yellow);
}
.btn-primary:hover::before,
.btn-dark:hover::before,
.btn-white:hover::before{
	left: calc(100% * 2);
}
.fullheight {
    min-height: 100vh;
    height: 500px;
}
main .fullheight:first-child{
	min-height: calc(100vh - var(--height-menu));
}

.btn-language {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    background: transparent;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
    cursor: pointer;
    text-transform: uppercase;
    margin-right: 30px;
}
.btn-language svg{
	margin-left: 6px;
}
.dropdown-item.active, .dropdown-item:active{
	background-color: var(--color-yellow);
	color: black;
}
.mobile-bar {
    width: 40px;
    height: 22px;
    position: relative;
}
.mobile-bar span{
	width: 100%;
	height: 2px;
	position: absolute;
	background-color: var(--color-dark);
}
body .bvi-body[data-bvi-theme=black] .mobile-bar span {
	background-color: #fff !important;
}
.mobile-bar span:nth-child(1){
	top: 0;
}
.mobile-bar span:nth-child(2){
	top: calc(50% - 1px);
}
.mobile-bar span:nth-child(3){
	top: calc(100% - 2px);
}
@media (min-width: 1200px){
	.small-container {
		max-width: calc(1038px + var(--bs-gutter-x, 0.75rem)*2) !important;
	}
	
}

@media (max-width: 991px){
	.logo {
		max-width: 220px;
	}
	
	main .fullheight:first-child{
		min-height: calc(100vh - 90px);
	}
	.btn{
		font-size: 18px;
	}
	
}
.btn-primary.disabled, .btn-primary:disabled {
    background-color: var(--color-yellow);
    color: #000;
    opacity: 0.3;
}
@media (max-width: 575px){
	section .container,
	footer .container	{
		padding: 0 40px;
	}
    .blog_breadcrumb section .container,
    section.section-article .container {
        padding: 0 15px;
    }
	header .container{
		padding: 0 20px;
	}
	.logo {
		max-width: 140px;
	}
	
	main .fullheight:first-child{
		min-height: calc(100vh - 60px);
	}
	.btn{
		font-size: 14px;
	}
	.mobile-bar {
		width: 30px;
		height: 18px;
		position: relative;
	}
	.btn-language{
		margin-right: 24px;
		font-size: 18px;
	}
}

#form-language .dropdown-menu {
    min-width: 52px;
}

/* main menu start */

header .main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}
header .parent-level {
    padding: 0;
    margin: 0;
    list-style: none;
}
header .level-1-children {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: rgb(255 255 255);
    top: var(--height-menu);
    padding: 35px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
}
header .level-1.opened .level-1-children{
	opacity: 1;
	visibility: visible;
	
}
header .parent-level {
    display: flex;
    align-items: center;
    justify-content: center;
}
header .level-1-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    color: var(--color-dark);
    margin: 0 10px;
    height: var(--height-menu);
    display: flex;
    align-items: center;
}
header .level-1.has-children .level-1-link::after {
    content: '';
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.00011 4.47656L10.1251 0.351562L11.3034 1.5299L6.00011 6.83323L0.696777 1.5299L1.87511 0.351562L6.00011 4.47656Z' fill='%23111F2A'/%3E%3C/svg%3E%0A");
    display: block;
    width: 11px;
    height: 7px;
    bottom: -2px;
    margin-left: 10px;
	transition-duration: 0.2s;
	background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
header .level-1.has-children:hover .level-1-link::after{
	transform: rotate(-180deg);
}
header .level-2 {
    position: relative;
    width: 290px;
	transition-duration: 0.2s;
}
header .level-2-link {
    padding: 0px 10px;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #353535;
    text-decoration: none;
    display: flex;
    align-items: center;
	max-width: 180px;
}
header .level-2.has-children .level-2-link::after {
    content: '';
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.00011 4.47656L10.1251 0.351562L11.3034 1.5299L6.00011 6.83323L0.696777 1.5299L1.87511 0.351562L6.00011 4.47656Z' fill='%23353535'/%3E%3C/svg%3E%0A");
    display: block;
    width: 11px;
    height: 7px;
    bottom: -2px;
    margin-left: 14px;
	transition-duration: 0.2s;
	transform: rotate(-90deg);
	background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
header .level-2.has-children:hover .level-2-link::after{
	transform: rotate(-90deg) translateY(10px);
	 background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.00011 4.47656L10.1251 0.351562L11.3034 1.5299L6.00011 6.83323L0.696777 1.5299L1.87511 0.351562L6.00011 4.47656Z' fill='%23111F2A'/%3E%3C/svg%3E%0A");
}
header .level-2:hover .level-2-link{
	color: var(--color-dark);
	font-weight: 500;
}
header .level-2:not(:last-child){
	margin-bottom: 10px;
}
header .level-2-children {
    position: absolute;
    left: 100%;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
    top: 3px;
}
header .level-2.has-children.opened .level-2-children{
	opacity: 1;
	visibility: visible;
}
header .level-3-link{
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #353535;
	margin-bottom: 5px;
	display: block;
	text-decoration: none;
}
header .level-3-link:hover{
	color: var(--color-dark);
	font-weight: 500;
}
header .level-3 {
    width: 460px;
}
#menu-mobile {
    background-color: var(--color-yellow);
    width: 100%;
    max-width: 650px;
}
#menu-mobile .btn-close {
    background-image: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.49995 7.43792L16.7187 0.219166L18.7808 2.28125L11.562 9.5L18.7808 16.7188L16.7187 18.7808L9.49995 11.5621L2.2812 18.7808L0.219116 16.7188L7.43787 9.5L0.219116 2.28125L2.2812 0.219166L9.49995 7.43792Z' fill='%23111F2A'/%3E%3C/svg%3E%0A");
    opacity: 1;
    position: absolute;
    right: 42px;
    top: 49px;
    width: 19px;
    height: 19px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 0;
}
[data-bvi-theme="black"] #menu-mobile .btn-close {
    padding: 15px;
}
#menu-mobile .offcanvas-body {
    padding: 15px 111px 10px 87px;
}
#menu-mobile .svg-icon {
    position: absolute;
    right: 42px;
	bottom: 40px;
	width: 80px;
}
#menu-mobile .parent-level {
    padding: 0;
    margin: 0;
    list-style: none;
}
#menu-mobile .level-1 {
    margin: 20px 0;
}
#menu-mobile .level-1-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 28px;
    line-height: 32px;
    color: var(--color-dark);
    display: flex;
    align-items: center;
}

#menu-mobile .level-1.has-children .level-1-link::after {
    content: '';
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 7.16034L17.0125 0.147835L19.0157 2.151L10 11.1667L0.984375 2.151L2.98754 0.147835L10 7.16034Z' fill='%23111F2A'/%3E%3C/svg%3E%0A");
    display: block;
    width: 18px;
    height: 11px;
    bottom: -2px;
    margin-left: 17px;
	transition-duration: 0.2s;
	transform: rotate(-90deg);
	background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
#menu-mobile .level-1.has-children.opened .level-1-link::after,
#menu-mobile .level-2.has-children.opened .level-2-link::after{
	transform: rotate(0deg);
}

#menu-mobile .level-1-children, #menu-mobile .level-2-children{
	display: none;
	list-style: none;
	padding-left: 25px;
}
#menu-mobile .level-1-children {
    padding-top: 10px;
    border-bottom: 1px solid #353535;
    padding-bottom: 15px;
}
#menu-mobile .level-2-children {
    border-bottom: 1px solid #353535;
    padding-bottom: 16px;
    margin-bottom: 10px;
}
#menu-mobile .level-2-link {
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    text-decoration: none;
    color: #353535;
    padding: 7px 0 7px 0;
    display: flex;
    align-items: center;
}
#menu-mobile .level-2.has-children .level-2-link::after {
    content: '';
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 7.16034L17.0125 0.147835L19.0157 2.151L10 11.1667L0.984375 2.151L2.98754 0.147835L10 7.16034Z' fill='%23111F2A'/%3E%3C/svg%3E%0A");
    display: block;
    width: 10px;
    height: 6px;
    bottom: -2px;
    margin-left: 9px;
    transition-duration: 0.2s;
    transform: rotate(-90deg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
#menu-mobile .level-3-link {
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    color: #353535;
    text-decoration: none;
    display: block;
    margin: 15px 0;
}
@media (max-width: 575px){
	#menu-mobile .btn-close {
		width: 11px;
		height: 11px;
		right: 27px;
		top: 42px;
	}
	#menu-mobile .svg-icon {
		width: 60px;
		right: 27px;
		bottom: 30px;
	}
	#menu-mobile .offcanvas-body {
		padding: 43px 43px 41px 78px;
	}
	#menu-mobile .level-1-children, #menu-mobile .level-2-children {
		padding-left: 15px;
	}
	#menu-mobile .level-1-link {
		font-size: 20px;
		line-height: 23px;
	}
	#menu-mobile .level-2-link {
		font-weight: 400;
		font-size: 16px;
		line-height: 19px;
	}
	#menu-mobile .level-3-link {
		font-weight: 400;
		font-size: 16px;
		line-height: 19px;
	}
	#menu-mobile .level-1.has-children .level-1-link::after {
		width: 10px;
		height: 6px;
	}
	#menu-mobile .level-1 {
		margin: 15px 0;
	}
	#menu-mobile .level-3-link {
		margin: 10px 0;
	}
	#menu-mobile .level-2-children {
		padding-bottom: 11px;
	}
	#menu-mobile .level-2.has-children .level-2-link::after {
		width: 7px;
	}
}
/* main menu end */

/* category start */
.breadcrumb {
    padding: 30px 0;
    margin: 0;
}
.breadcrumb a {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #353535;
    text-decoration: none;
    display: inline-flex;
	transition-duration: 0.2s;
}
.breadcrumb a:hover{
	color: var(--color-yellow);
}
.breadcrumb li:not(:last-child)::after{
	content: '/';
	margin: 0 5px;
	
}


.category-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 40px;
}
@media (max-width: 991px){
	.breadcrumb {
		padding: 20px 0;
	}
	.breadcrumb a {
		font-size: 15px;
		line-height: 120%;
	}
	.category-title{
		margin-bottom: 20px;
		font-size: 32px;
		line-height: 37px;
	}
}

@media (max-width: 575px){
	.breadcrumb a {
		font-size: 14px;
		line-height: 120%;
	}
	.category-title{
		font-size: 22px;
		line-height: 25px;
	}
}
/* category end */


.section-white{
	padding: 100px 0 63px 0;
}
.section-white+.section-white{
	padding-top: 63px;
}
.heading-title{
	font-weight: 500;
	font-size: 40px;
	line-height: 46px;
	color: var(--color-dark);
	margin-bottom: 80px;
}
.heading-title+.relative{
	margin-top: -40px;
}
.heading-title.heading-title-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.heading-title.heading-title-button .btn{
	margin-left: 30px;
}
@media (max-width: 991px){
	.section-white{
		padding: 80px 0 69px 0;
	}
	.section-white+.section-white{
		padding-top: 69px;
	}
	.heading-title{
		font-size: 32px;
		line-height: 37px;
		margin-bottom: 50px;
	}
}

@media (max-width: 575px){
	.section-white{
		padding: 60px 0 40px 0;
	}
	.section-white+.section-white{
		padding-top: 40px;
	}
	.heading-title{
		font-size: 22px;
		line-height: 25px;
		margin-bottom: 36px;
	}
}


.product-card-name {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--color-dark);
	margin: 5px 0 0 0;
}
.product-card-name a{
	color: inherit;
	text-decoration: none;
}
.product-card-model {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #B5B5B5;
    margin: 20px 0 0 0;
}
.product-card .product-images{
	overflow: hidden;
	position: relative;
}

.product-card .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 0 18px;
	
}
@media (min-width: 992px){
	.product-card .swiper-pagination {
		transform: translateY(20px);
		transition: .3s all cubic-bezier(.785, .135, .15, .86) !important;
	}
	.product-card .product-images:hover .swiper-pagination{
		transform: translateY(0px);
	}
	
	.product-card .product-images:hover .product-composition-block{
		left: -350px;
	}
	.product-card .product-images:hover .product-properties-block{
		right: 10px;
	}
}

.product-card .swiper-pagination .swiper-pagination-bullet {
    background: white;
    width: 100%;
    border-radius: 0;
	opacity: 1;
	height: 2px;
}
.product-card .swiper-pagination .swiper-pagination-bullet{
	margin-left: 0;
}
.product-card .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
    margin-right: 5px;
    
}
.product-card .swiper-pagination .swiper-pagination-bullet-active{
	background: var(--color-yellow);
}
.swiper-products+.swiper-button-next, .swiper-products+.swiper-button-next+.swiper-button-prev {
    margin: 0;
    padding: 0;
	color: #000;
	top: calc(50% - 50px);
}
.swiper-products+.swiper-button-next::after, .swiper-products+.swiper-button-next+.swiper-button-prev::after {
    font-size: 30px;
}
.swiper-products+.swiper-button-next {
   
    right: -40px;
}
.swiper-products+.swiper-button-next+.swiper-button-prev{
	left: -40px;
}

.product-card .product-composition-block {
    position: absolute;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
    left: 23px;
    bottom: 39px;
    padding: 10px 8px;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #111F2A;
	transition: .3s all cubic-bezier(.785, .135, .15, .86);
}
.product-card .product-properties-block {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: -350px;
	width: 36px;
	transition: .3s all cubic-bezier(.785, .135, .15, .86);
}
.product-card .product-properties-block img{
	display: block;
}
.product-card .product-properties-block .product-property{
	display: block;
	
}
.product-card .product-properties-block .product-property:not(:last-child){
	margin-bottom: 5px;
}
@media (max-width: 991px){
	.product-card-name{
		font-size: 20px;
		line-height: 23px;
	}
	.product-card-model{
		font-size: 14px;
		line-height: 17px;

	}
	.heading-title + .relative {
		margin-top: 50px;
	}
	.product-card .product-composition-block {
		left: 18px;
		bottom: 42px;
		font-size: 12px;
		line-height: 14px;
	}
	.product-card .product-properties-block {
		top: 20px;
		width: 26px;
		right: 10px;
	}
	
}

@media (max-width: 575px){
	.product-card-name{
		font-size: 16px;
		line-height: 18px;
	}
	.product-card-model{
		font-size: 10px;
		line-height: 12px;
		margin: 10px 0 0 0;
	}
	.product-card .swiper-pagination{
		padding: 0 11px;
		bottom: 14px !important;
	}
	.product-card .swiper-pagination .swiper-pagination-bullet:not(:last-child){
		margin-right: 4px;
	}
	.heading-title + .relative {
		margin-top: 30px;
	}
	.swiper-products+.swiper-button-next, .swiper-products+.swiper-button-next+.swiper-button-prev {
		top: calc(50% - 40px);
	}
	.swiper-products+.swiper-button-next::after, .swiper-products+.swiper-button-next+.swiper-button-prev::after {
		font-size: 20px;
	}
	.swiper-products+.swiper-button-next {
		right: -30px;
	}
	.swiper-products+.swiper-button-next+.swiper-button-prev{
		left: -30px;
	}
	.product-card .product-composition-block {
		left: 11px;
		bottom: 26px;
		font-size: 10px;
		line-height: 12px;
		padding: 8px;
	}
	.product-card .product-properties-block {
		top: 10px;
		width: 14px;
	}
	
}



.yellow-line {
    background-color: var(--color-yellow);
    padding: 34px 0;
}
.yellow-line svg{
	width: 220px;
}


.footer-bottom{
	background-color: #111F2A;
	color: white;
	padding-top: 71px;
}
.footer-bottom hr {
    margin: 35px 0;
    background-color: var(--color-yellow);
    opacity: 1;
    height: 2px;
}
.footer-bottom hr+.row{
	padding-bottom: 35px;
}
.copyright {
    font-size: 20px;
    line-height: 23px;
    max-width: 307px;
    font-weight: 500;
}
.copyright p{
	margin-bottom: 10px;
}
.copyright p:last-child{
	margin-bottom: 0;
}
.footer-links-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 20px;
}
.footer-links-item:not(:last-child){
	margin-bottom: 10px;
}
.footer-links-item{
	font-weight: 500;
    font-size: 20px;
    line-height: 23px;
	color: #FFFFFF;
    text-decoration: none;
}
.footer-links-item a {
    
    color: #FFFFFF;
    text-decoration: none;
}
.footer-links-item a:hover{
	color: var(--color-yellow);
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: end;
}
.footer-social{
	
}
.footer-social a {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: white;
    text-decoration: none;
}
.footer-social a:hover{
	color: var(--color-yellow);
}
.footer-social:not(:last-child)::after{
	content: '|';
	margin: 0 10px;
}
/* .footer-social:last-child::before{
	content: '|';
	margin: 0 10px;
} */
.footer-downloads {
    margin-bottom: 51px;
}

.footer-downloads .btn svg{
	margin-left: 0;
	margin-right: 10px;
}
.footer-downloads>div:not(:last-child){
	margin-bottom: 15px;
}

.search-icon{
	cursor: pointer;
}
.search-icon:hover{
	opacity: 0.7;
}
.search-panel {
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 !important;
    height: 100%;
    top: -100%;
    transition-duration: 0.2s;
    z-index: 1;
    background-color: white;
    display: flex;
    align-items: center;
}
.search-panel .input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 100px;
}
#btn-close-search {
    margin-left: 30px;
    cursor: pointer;
}
#btn-close-search:hover path{
	fill: var(--color-yellow);
}
#search-input {
    width: calc(100% - 240px);
    border: none;
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid #B5B5B5;
    font-size: 20px;
    line-height: 23px;
    padding: 9px 0;
    border-radius: 0;
}
.ise{
	margin-right: 30px;
}
.search-panel.show {
    top: 0;
    
}
.filter-heading {
    background-color: var(--color-yellow);
    margin: 0 0 50px 0;
    padding: 15px 20px;
    align-items: center;
}
.filter-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: #111F2A;
    margin-left: 9px;
}
.reset_category {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: underline;
    color: #353535 !important;
    margin: 0 0 0 38px;
}
.filter-heading-double {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    margin: 42px 0 32px 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #E4E4E4;
}
.filter-heading-double .filter-title{
	margin: 0;
}
.filter-heading-double svg {
    display: none;
}

@media (max-width: 991px){
	.search-panel .input{
		padding-left: 0;
		width: 100% !important;
	}
	.footer-download{
		margin-bottom: 91px;
	}
	.copyright {
		font-size: 16px;
		line-height: 18px;
	}
	.footer-links-item {
		font-size: 16px;
		line-height: 18px;
	}
}

@media (max-width: 575px){
	.footer-downloads {
		margin-bottom: 40px;
	}
	.footer-links {
		margin-bottom: 40px;
	}
	.footer-bottom{
		padding-top: 40px;
	}
	.footer-socials {
		justify-content: start;
	}
	.ise {
		margin-right: 11px;
	}
	#btn-close-search {
		margin-left: 14px;
	}
	.search-panel .btn {
		padding: 10px 20px;
	}
	#search-input {
		width: calc(100% - 151px);
		border: none;
		outline: none;
		box-shadow: none;
		border-bottom: 1px solid #B5B5B5;
		font-size: 14px;
		line-height: 16px;
		padding: 4px 0;
		margin-right: 20px;
	}
}
@media (min-width: 992px){
	.search-panel .btn{
		opacity: 0.7;
	}
	.search-panel .btn:hover{
		opacity: 1;
	}
}


#scroll-top {
    width: 45px;
    height: 45px;
    background-color: var(--color-yellow);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    margin-bottom: 40px;
    z-index: 999;
    transition-duration: 0.2s;
    cursor: pointer;
    left: 0;
    bottom: -160px;
    opacity: 0;
    visibility: hidden;
}
#scroll-top path{
	transition-duration: 0.2s;
}
#scroll-top:hover{
	background-color: var(--color-dark);
}
#scroll-top:hover path{
	fill: white;
}

#scroll-top.visible {
    opacity: 1;
	visibility: visible;
	bottom: 0px;
}

.pagination {
    margin: 30px 0;
    justify-content: center;
}
.pagination li {
    border: 1px solid #B5B5B5;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 0.2s;
    margin: 0 2px;
}
.pagination li a {
    display: block;
    text-decoration: none;
    color: #353535;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination li.active, .pagination li:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}

.category-link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
    padding: 20px 10px;
    border-radius: 4px;
}
.category-link:hover{
	border-color: var(--color-yellow);
	color: var(--color-yellow);
}

.banner-block-item {
    text-decoration: none;
    display: block;
}

.banner-block-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: black;
    text-decoration: none;
    margin: 22px 0 0 0;
	transition-duration: 0.2s;
}
a.banner-block-item:hover .banner-block-title {
    color: var(--color-yellow);
}

.section-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section-image::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(0,0,0,0.49343487394957986) 100%);
    width: 100%;
    height: 100%;
    z-index: 0;
}
.section-image + .section-breadcrumbs a{
	color: #fff;
}

.section-image + .section-breadcrumbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	color: #fff;
}
.section-image .heading-title {
    position: relative;
    font-weight: 600;
    font-size: 64px;
    line-height: 74px;
    text-transform: uppercase;
    color: #FFFFFF;
	margin-bottom: 93px;
}
.section-breadcrumbs + .fullbanner {
    margin-top: 40px;
}
.information-page .content ol li li{
	font-size: 24px;
	line-height: 29px;
}
.information-page .heading-title{
	margin-bottom: 30px;
}
.information-page .content ol{
	padding: 0;
}
.information-page .content ol li{
	padding-left: 50px;
}
.information-page .content>ol>li{
	font-size: 36px;
	line-height: 43px;
}
ol {
  list-style: none;
  counter-reset: li;
}
ol li:before {
    counter-increment: li;
    content: counters(li,".") ". ";
    position: absolute;
    left: 0;
}
ol li {
    margin-top: 30px;
    position: relative;
}
.normal-text a {
    display: flex;
    font-weight: 500;
    font-size: 32px;
    line-height: 37px;
    color: #111F2A;
    text-decoration: none;
    padding: 26px 0;
    border-bottom: 1px solid #E4E4E4;
    align-items: center;
    justify-content: space-between;
	transition-duration: 0.2s;
}
.normal-text a::after {
    content: '';
    width: 43px;
    height: 43px;
    background-image: url("data:image/svg+xml,%3Csvg width='43' height='43' viewBox='0 0 43 43' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M43 42V0L1 0L1 1.61538L41.3846 1.61538V42H43Z' fill='%23FED526'/%3E%3Cpath d='M1.69922 41.2984L41.5992 1.39844' stroke='%23FED526' stroke-width='2'/%3E%3C/svg%3E%0A");
    position: relative;
    display: block;
	transition-duration: 0.2s;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.normal-text a:hover{
	color: var(--color-yellow);
}
.normal-text a:hover::after{
	transform: rotate(45deg);
	
}
.normal-text p{
	margin-bottom: 0;
}
@media (max-width: 991px){
	.banner-block-title{
		font-size: 18px;
		line-height: 30px;
		margin-top: 22px;
	}
	.section-image .heading-title {
		margin-bottom: 110px;
		font-size: 40px;
		line-height: 46px;
	}
	.information-page .content>ol>li{
		font-size: 30px;
		line-height: 36px;
	}
	.information-page .content ol li li{
		font-size: 16px;
		line-height: 19px;
	}
	.information-page .content ol li{
		padding-left: 31px;
	}
	.normal-text a{
		padding: 31px 0 25px 0;
		font-size: 22px;
		line-height: 25px;	
	}
	.normal-text a::after{
		width: 32px;
		height: 32px;
	}
}

@media (max-width: 575px){
	.banner-block-title{
		font-size: 12px;
		line-height: 14px;
		margin-top: 10px;
	}
	.section-image .heading-title {
		margin-bottom: 75px;
		font-size: 32px;
		line-height: 32px;
	}
	.information-page .content>ol>li{
		font-size: 24px;
		line-height: 29px;
	}
	.information-page .content ol li li{
		font-size: 12px;
		line-height: 14px;
	}
	.normal-text a{
		padding: 21px 0 20px 0;
		font-size: 18px;
		line-height: 21px;
	}
	.normal-text a::after{
		width: 26px;
		height: 26px;
	}
}

[data-src] {
    cursor: zoom-in;
}

[class*=ymaps-2][class*="-ground-pane"] {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(100%);
}
[class*="controls__control_toolbar"] {
    display: none !important;
}
[class*="copyright__wrap"],[class*="gototech"]{
	display: none !important;
}


/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  position: fixed;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(0 0 0 / 8%);
	cursor: grab;
}
/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: #555;
  width: 8px;
  height: 8px;
}

.site_links {
	margin: -40px 0 0 0;
}
.site_links a {
	text-decoration: none;
    color: #fff;
    border-bottom: 1px solid #878787;
}
.site_links a:hover {
	border-bottom: none;
}
@media (max-width: 767px) {
	.site_links {
		margin: 30px 0 0;
	}
}

.special_version img {
	max-width: 150px;
}
@media (max-width: 450px) {
	.special_version_header img {
		max-width: 100px;
	}
}
@media (max-width: 420px) {
	.special_version_header {
		display: none;
	}
}

#menu-mobile .special_version {
    position: absolute;
    left: 42px;
    bottom: 35px;
}

.blog_item_action {
    color: #787878;
}
.blog_label {
    border: 1px solid #ebebed;
    background: #ebebed;
    color: #000;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1;
    padding: 8px 16px;
    text-decoration: none;
    transition: .2s;
    will-change: transform;
    z-index: 1;
    margin: 0 10px;
}
.blog_label a {
    color: #000;
    text-decoration: none;
}
.blog_label a:hover {
    color: #444444;
}
.section-article .heading-title {
    font-size: 34px;
    line-height: normal;
    margin: 30px 0 30px;
}
.section-article .rating .fa-star,
.section-article .rating .fa-star-o {
    color: #FED526;
}
.section-article .rating .fa-stack {
    width: 1em;
}
.section-article a {
    color: #0a001f;
    border-bottom: 1px solid #d9d9d9;
    text-decoration: none;
}
.section-article a:hover {
    border-bottom: 1px solid #000;
}
.mw-900 {
    max-width: 900px;
    margin: 0 auto;
}
.review {
    background: #fffbff;
    padding: 15px 20px;
    border-radius: 15px;
}
.section-article .article-short,
.section-article .article-short:hover {
    border-bottom: none;
}

.section-article h2,
.section-article h3,
.section-article h4 {
    margin: 1.4em 0 0.9em;
}
.section-article ul {
    margin: 20px 0 20px 20px;
    padding: 0;
}
.section-article ul li {
    margin-top: 13px;
    position: relative;
    padding-left: 5px;
}
.desc {
    margin: 80px 0 0;
    font-size: 0.95em;
}
.desc h2 {
    font-size: 18px;
    margin: 20px 0 10px;
}
.metki-attributes {
    position: absolute;
    z-index: 9;
    right: 15px;
    top: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.metki-attributes div {
    padding: 6px 11px 4px;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}
.Распродажа {
    background: #ff2626
}
.Акция {
    background: #ff2626
}
.Под_заказ {
    background: #ff853c
}
.Новинка {
    background: #fedb46;
    color: #000;
}
/* Cookie Consent Modal Styles */
#cookie-consent-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  font-family: sans-serif;
}

.cookie-consent-container {
  background: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #eee;
  box-sizing: border-box;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-consent-text {
  flex: 1;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  min-width: 300px;
}

.cookie-consent-link {
  color: #000;
  text-decoration: underline;
  margin-left: 5px;
}

.cookie-consent-link:hover {
  text-decoration: none;
}

.cookie-consent-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn-reject,
.cookie-btn-accept {
  min-width: 120px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-consent-container {
    padding: 15px;
  }
}