@charset "UTF-8";
.top-index-slider {
	position: relative;
	width: 100%;
	margin: 0 auto;
	max-width: 1920px;
	padding-bottom: 40px!important;/*0204*/
}
.top-index-slider .swiper-wrapper{
	    z-index: 1;
    box-sizing: content-box;
    width: 100%;
    height: 100%;
    transition-property: -webkit-transform,transform,-webkit-transform;
    display: flex;
    position: relative;
}
.top-index-slider .swiper-slide {
	   flex-shrink: 0;
    width: 100%;
    height: 100%;
    transition-property: -webkit-transform,transform,-webkit-transform;
    position: relative;
}
.top-index-slider .container {}
.top-index-slider a {
	text-decoration: none!important;
	transition: none!important;
	color: inherit!important;
}
.top-index-slider .image {}
.top-index-slider a.newV img {
	width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.top-index-slider .text {
	flex: 1 0 auto;
	width: 100%;
	padding: 96px 0;
	min-height: 500px;
	font-family: var(--fontg);
	color: #30365B;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	text-align: center;
	gap: 4px 0;
}
.top-index-slider .text.white {
	color: var(--white);
}
.top-index-slider .size1 {
	font-weight: bold;
	font-size: 36px;
	line-height: 36px;
	letter-spacing: -0.03em;
}
.top-index-slider .size2 {
	font-weight: bold;
	font-size: 24px;
	line-height: 36px;
	letter-spacing: -0.02em;
}
.top-index-slider .size3 {
	font-weight: normal;
	font-size: 18px;
	line-height: 20px;
	letter-spacing: -0.01em;
	opacity: 0.8;
	margin: 2px 0;
}
.top-index-slider .btn {
	margin-top: 20px;
	text-shadow: 0px 0.5px 0px rgba(0, 0, 0, 0.35);
	min-width: 286px;
	height: 60px;
	border-radius: 30px;
	font-weight: bold;
	font-size: 18px;
}
.top-index-slider .btn svg {
	filter: drop-shadow(0px 0.5px 0px rgba(0, 0, 0, 0.35));
}
.top-index-slider-pagination {
    justify-content: center;
    width: 100%;
    height: 5px;
    margin-top: 8px;
    display: flex;
    gap: 0 16px;
}
.top-index-slider-pagination .swiper-pagination-bullet {
	flex: 0 0 auto;
	position: relative;
	width: 10px!important;/*6px 0204*/
	height: 10px!important;/*6px 0204*/
	border-radius: 50%;
	background: var(--grey400)!important;
	margin: 0!important;
	transition-property: margin, background;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	opacity: 1!important;
}

@media (pointer:fine) {
	.top-index-slider-pagination .swiper-pagination-bullet:hover {background: var(--orange)!important;}
}
.top-index-slider-pagination .swiper-pagination-bullet svg {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -12px;
	fill: none;
	pointer-events: none;
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	background: none;
	opacity: 0;
}
.top-index-slider-pagination .swiper-pagination-bullet svg path {
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 76;
	stroke-dashoffset: -76;
	stroke: var(--orange);
	stroke-width: 2px;
	transition: stroke-dashoffset 0.2s linear;
	transition-delay: 0.2s;
}
.top-index-slider-pagination .swiper-pagination-bullet-active {
	background: var(--orange)!important;
/*	margin: 0 3px!important;*//*0204*/
}
.top-index-slider-pagination .swiper-pagination-bullet-active svg {
	opacity: 0;/*1 0204*/
}
.top-index-slider-pagination .swiper-pagination-bullet-active svg path {
	stroke-dashoffset: 0;
	transition-duration: 5s;
	transition-delay: 0s;
}
.index-categories {
	display: grid;
	grid-auto-rows: 1fr;
	margin: 9px -17px -22px -17px;
	grid-template-columns: repeat(3, 1fr);
}
.index-categories .link {
	text-align: center;
	font: bold 15px/16px var(--fontg);
	letter-spacing: -0.02em;
	color: var(--blue);
	padding: 17px 10px 22px 10px;
	text-decoration: none;
	transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.index-categories .pic {
	margin: 0 auto 6px auto;
	width: 52px;
	height: 52px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}
.index-categories .pic svg {
	flex: 0 0 auto;
	width: 100%;
	height: 100%;
	fill: var(--grey900);
	transition: fill 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.index-categories .plus {
	width: 52px;
	height: 52px;
	margin: -8px auto 9px auto;
	border: 1px dashed var(--sec-dark);
	border-radius: 50%;
	position: relative;
	transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.index-categories .plus:before, .index-categories .plus:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 2px;
	border-radius: 1px;
	background: var(--sec-dark);
	transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.index-categories .plus:before {
	transform: translate3d(-50%, -50%, 0);
}
.index-categories .plus:after {
	transform: translate3d(-50%, -50%, 0) rotate(-90deg);
}

@media (pointer:fine) {
.index-categories a.link:hover {
	color: var(--hover);
}
.index-categories a.link:hover svg {
	fill: var(--hover);
}
.index-categories a.link:hover .plus {
	border-color: var(--hover);
}
.index-categories a.link:hover .plus:before, .index-categories a.link:hover .plus:after {
	background-color: var(--hover);
}
}
.index-recommend {
	pointer-events: none;
	margin: 38px 0 -200px 0;
	padding: 0 0 200px 0;
	overflow: hidden;
}
.index-recommend .container {
	pointer-events: all;
}
.index-recommend .content-title {
	margin-bottom: 24px;
}
.recommend-slider {
	overflow: visible!important;
	width: auto!important;
	margin: 0 -6px!important;
	position: relative;
}
.recommend-slider .main-slider-arrow {
	top: 86px;
}
.recommend-slider-prev {
	left: 6px;
}
.recommend-slider-next {
	right: 6px;
}
.recommend-slider .swiper-slide {
	height: auto!important;
	display: flex;
	flex-direction: column;
	width: 198px;
}
.item-recommend {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	padding: 6px 6px 16px 6px;
	text-align: center;
}

@media (pointer:fine) {
.item-recommend:hover {
	background: var(--white);
	box-shadow: 0px 0px 1px rgba(12, 26, 75, 0.15), 0px 25px 45px rgba(20, 37, 63, 0.08);
}
}
.item-recommend .photo {
	display: block;
}
.item-recommend .photo img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-position: center;
}
.item-recommend.view-item .photo {
	margin: 0 -6px 6px -6px;
	height: 178px;
	padding: 17px;
}
.item-recommend.view-series .photo {
	margin: 0 0 24px 0;
	height: 160px;
}
.item-recommend.view-item .photo img {
	object-fit: contain;
}
.item-recommend.view-series .photo img {
	object-fit: cover;
}
.item-recommend a {
	color: inherit;
}

@media (pointer:fine) {
.item-recommend a:hover {
	color: var(--blue);
}
}
.item-recommend .colors {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 300;
	font-size: 14px;
	line-height: 15px;
	letter-spacing: -0.01em;
	gap: 8px;
	margin: -16px 0 0 0;
	position: relative;
	top: -8px;
}
.item-recommend .colors a {
	color: var(--blue);
}

@media (pointer:fine) {
.item-recommend .colors a:hover {
	color: var(--orange);
}
}
.item-recommend .colors .color {
	flex: 0 0 auto;
	cursor: pointer;
	user-select: none;
	width: 16px;
	height: 16px;
	border-style: solid;
	border-width: 1px;
	border-color: transparent;
	border-radius: 50%;
	transition: box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: calc(100% + 2px) auto;
}
.item-recommend .colors .color.active {
	box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--grey500);
}
.item-recommend .category {
	font-weight: normal;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: -0.01em;
	margin: 0 0 8px 0;
	color: var(--grey500);
}
.item-recommend .name {
	font-weight: 300;
	font-size: 15px;
	line-height: 20px;
	color: var(--grey900);
	letter-spacing: 0.01em;
	margin-top: auto;
	margin-bottom: auto;
}
.item-recommend .price {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 20px;
	font: 600 16px/24px var(--fontg);
	letter-spacing: 0.015em;
	color: var(--grey900);
	margin: 12px 0 0 0;
}
.item-recommend .price > * {
	flex: 0 0 auto;
}
.item-recommend .price .red {
	color: #BD081C;
}
.item-recommend .price del {
	text-decoration: line-through;
	font-weight: normal;
	font-size: 14px;
	color: var(--grey500);
}
.item-recommend .price .status {
	margin-right: -13px;
}
.item-recommend .link-to-fav, .item-recommend .cover-action {
	margin: 10px;
}
.item-recommend .link-to-fav {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 0;
	right: 0;
}

@media (pointer:fine) {
.item-recommend:not(:hover) .link-to-fav:not(.active) {
	opacity: 0;
}
}
.index-news {
	margin: 50px 0 0 0;
}
.index-news .content-title {
	margin-bottom: 34px;
}
.index-news .grid {
	display: flex;
	flex-direction: column;
	gap: 50px 0;
}
.index-news .el {
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
	color: var(--grey800);
	display: flex;
	align-items: center;
	gap: 0 24px;
}
.index-news .el a {
	color: inherit;
}

@media (pointer:fine) {
.index-news .el a:hover {
	color: var(--blue);
}
}
.index-news .el .date {
	flex: 0 0 auto;
	margin: 0 0 0 -17px;
	width: 59px;
	height: 44px;
	text-align: center;
	color: var(--white);
	background: url(../img/index-news-flag.svg) no-repeat 100% 50%;
	background-size: contain;
	padding: 0 10px 0 0;
	font: bold 16px/44px var(--fontg);
	letter-spacing: -0.02em;
	align-self: flex-start;
}
.index-about {
	background: var(--grey900) url(../img/index-about/mobile.png) no-repeat 50% 50%;
	background-size: cover;
	margin: 48px 0 0 0;
	text-align: center;
	color: var(--grey200);
	font-weight: normal;
	font-size: 14px;
	line-height: 30px;
	letter-spacing: -0.01em;
	padding: 73px 0 77px 0;
	position: relative;
}
.index-about:before, .index-about:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	pointer-events: none;
}
.index-about:before {
	background: rgba(26, 77, 163, 0.6);
	mix-blend-mode: multiply;
}
.index-about:after {
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}
.index-about > * {
	position: relative;
	z-index: 2;
}
.index-about p {
	margin: 0 0 15px 0;
}
.index-about .accent {
	font-weight: 600;
}
.index-about .head {
	font: 600 16px/30px var(--fontg);
	color: var(--white);
	letter-spacing: 0.01em;
	margin: 0 0 48px 0;
}
.index-about .logo {
	width: 40px;
	height: 40px;
	margin: 0 auto 30px auto;
	background: url(../img/only_logo.png) no-repeat 50% 50%;
	background-size: contain;
}
.index-about .big {
	font-weight: 900;
	font-size: 32px;
	text-transform: uppercase;
	margin: 0 0 19px 0;
	letter-spacing: 0.05em;
}
.index-about .big:after {
	content: '';
	display: block;
	margin: 20px auto 0 auto;
	width: 50px;
	height: 2px;
	border-radius: 1px;
	background: var(--yellow);
}
.index-about .for-link {
	margin: 48px 0 0 0;
}
.index-about .btn {
	min-width: 341px;
}
.index-about h1.accent{
    font-family: 'Inter';
      color: var(--grey800);
      letter-spacing: -0.015em;
      margin-bottom: 35px;
  }
@media only screen and (max-width: 767px) {
	.index-about h1.accent{color: var(--grey200);
        font-size: 14px;
        margin-bottom: 15px;
        letter-spacing: -0.14px;}
.index-about .btn {
	color: #253859;
	background: var(--grad-yellow);
	background-color: #FFB800;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 120% 100%;
	box-shadow: 0px 8px 26px rgba(255, 196, 0, 0.25), 0px 0.5px 1px rgba(0, 0, 0, 0.15), inset 0px -0.5px 0px rgba(186, 143, 0, 0.5);
}
.index-about .btn svg {
	fill: #253859;
}
 @media (pointer:fine) {
 .index-about .btn:hover {
 background-position: 100% 100%;
 color: #253859;
}
}
}
.index-stat {
	background-image: url(../img/index-stat/top-mobile.png), url(../img/index-stat/bottom-mobile.png);
	background-repeat: no-repeat;
	background-position: 0 0, 100% 100%;
	background-size: auto 178px, auto 190px;
	position: relative;
	padding: 91px 0;
	font: 600 18px/28px var(--fontg);
	color: var(--deep-blue);
}
.index-stat:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(235, 247, 255, 0.8);
	-webkit-backdrop-filter: blur(11.5px);
	backdrop-filter: blur(11.5px);
}
.index-stat > * {
	position: relative;
}
.index-stat ul {
	display: flex;
	flex-direction: column;
	gap: 60px 0;
	margin: 0;
	padding: 0 36px;
}

@media only screen and (max-width: 767px) {
.index-stat ul br {
	display: none;
}
}
.index-stat li {
	display: flex;
	align-items: center;
	gap: 0 30px;
	margin: 0;
	padding: 0;
}
.index-stat li:before {
	display: none;
}
.index-stat .pic {
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.index-stat .pic img {
	flex: 0 0 auto;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.index-clients {
	overflow: hidden;
	margin: 67px 0 -100px 0;
	padding: 0 0 100px 0;
	pointer-events: none;
}
.index-clients .container {
	pointer-events: all;
}
.index-clients .content-title {
	display: none;
}
.clients-slider {
	width: auto!important;
	margin: 0 -16px!important;
	overflow: visible!important;
	position: relative;
}
.clients-slider .swiper-wrapper {
	align-items: center;
}
.clients-slider .swiper-slide {
	width: auto;
	height: auto!important;
	padding: 0 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.clients-slider .swiper-slide > * {
	flex: 0 0 auto;
}
.clients-slider .swiper-slide > *:not(img) {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.clients-slider img {
	flex: 0 0 auto;
	width: auto;
	height: auto;
	max-height: 35px;
}
.clients-slider-prev {
	left: 32px;
}
.clients-slider-next {
	right: 0;
}
.index-brands {
	pointer-events: none;
	margin: 76px 0 -50px 0;
	padding: 0 0 50px 0;
	font-weight: 300;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
	letter-spacing: -0.01em;
	color: var(--grey800);
	overflow: hidden;
}
.index-brands .container {
	pointer-events: all;
}
.index-brands .top {
	font: 600 15px/24px var(--fontg);
	color: var(--darker);
	margin: 0 0 30px 0;
}
.index-brands .big {
	font: 900 24px/28px var(--fontg);
	letter-spacing: -0.01em;
	color: var(--grey800);
	margin: 0 0 18px 0;
}
.index-brands .text:after {
	content: ' ';
	clear: both;
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
	font-size: 0;
}
.index-brands .text img {
	border-radius: 12px;
	width: auto;
	height: auto;
	max-width: 100%;
	display: block;
	margin: 0 auto 36px auto;
}
.index-brands p {
	margin: 0 0 30px 0;
}
.brands-slider {
	overflow: visible!important;
	width: auto!important;
	position: relative;
	margin: 20px -15px 0 -15px!important;
}
.brands-slider .swiper-wrapper {
	align-items: center;
}
.brands-slider .swiper-slide {
	width: auto;
	height: auto!important;
	padding: 0 15px;
}
.brands-slider-prev {
	left: 0;
}
.brands-slider-next {
	right: 0;
}
.brands-slider .swiper-slide, .brands-slider .swiper-slide > *:not(img) {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.brands-slider .swiper-slide > *:not(img) {
	flex: 1 0 auto;
}
.brands-slider img {
	flex: 0 0 auto;
	width: auto;
	height: auto;
	max-height: 35px;
	filter: grayscale(100%);
	opacity: 0.2;
	transition-property: filter, opacity;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer:fine) {
.brands-slider a:hover img {
	filter: grayscale(0%);
	opacity: 1;
}
}
.index-why {
	background: #F2F7FF;
	margin: 54px 0 -60px 0;
	padding: 16px 0 60px 0;
	text-align: center;
	letter-spacing: -0.02em;
	font-weight: 600;
	font-size: 14px;
	line-height: 30px;
	color: var(--grey800);
}
.index-why .top {
	display: none;
	font: 900 24px/40px var(--fontg);
	color: var(--grey700);
}
.index-why ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin: 0;
	padding: 0;
	font: 500 12px/20px var(--fontg);
	color: #8C9DBB;
	letter-spacing: -0.01em;
	gap: 1px;
}
.index-why li:before {
	display: none;
}
.index-why li {
	margin: 0;
	padding: 31px 10px;
	background: var(--white);
}

@media only screen and (max-width: 767px) {
.index-why li:nth-child(9) {
	display: none;
}
}
.index-why .pic {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0 auto 8px auto;
}
.index-why .pic img {
	flex: 0 0 auto;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.index-why .big {
	color: #4D6285;
	font-weight: bold;
	font-size: 15px;
	line-height: 28px;
	margin: 0 0 11px 0;
}
.index-why .big:after {
	content: '';
	display: block;
	margin: 5px auto 0 auto;
	width: 18px;
	height: 1.5px;
	border-radius: 0.75px;
	background: var(--yellow);
}
.index-why .text {
	margin: 34px 0 0 0;
}
.index-why .for-link {
	margin: 30px 0 0 0;
}
.index-why .for-link .btn {
	min-width: 341px;
}

/*mobile end*/

/*tablet start*/

@media only screen and (min-width: 768px) {
.top-index-slider .image img {
	width: 100%;
	height: 100%;
}
.top-index-slider .container {
	padding-left: 52px;
	padding-right: 52px;
}
.top-index-slider .text {
	padding: 70px 0 60px 0;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	text-align: center;
	gap: 12px 0;
}
.top-index-slider .text:not(.center) {
	text-align: left;
	align-items: flex-start;
}
.top-index-slider .size3 {
	margin: 20px 0 0 0;
}
.top-index-slider .btn {
	margin-top: auto;
	min-width: 180px;
}
.top-index-slider-pagination {
	/*bottom: -30px!important; 0204*/
}
.index-categories {
	margin: 43px -32px 63px -32px;
}
.index-categories .link {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: normal;
	padding: 32px 10px;
}
.index-categories .pic {
	width: 78px;
	height: 78px;
	margin: 0 auto 46px auto;
}
.index-categories .pic:after, .index-categories .plus > * {
	content: '';
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
	width: 25px;
	height: 2px;
	border-radius: 1px;
	background: var(--grey400);transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
	@media (pointer:fine){
		.index-categories a:hover .pic:after, .index-categories a:hover .plus > * {
			background: var(--yellow);
		}
}
.index-categories .plus {
	width: 74px;
	height: 74px;
	margin: 2px auto 48px auto;
}
.index-categories .plus > * {
	bottom: -32px;
}
.index-recommend {
	margin-top: 50px;
}
.index-recommend .content-title {
	margin-bottom: 36px;
}
.recommend-slider {
	margin: 0!important;
}
.recommend-slider .main-slider-arrow {
	top: 119px;
}
.recommend-slider-prev {
	left: -12px;
}
.recommend-slider-next {
	right: -12px;
}
.recommend-slider .swiper-slide {
	width: 33.333333%;
}
.item-recommend {
	padding: 4px 4px 19px 4px;
}
.item-recommend .photo img {
	border-radius: 5px;
}
.item-recommend.view-item .photo {
	margin: 0 -4px 4px -4px;
	height: 221px;
	padding: 23px;
}
.item-recommend.view-series .photo {
	margin: 0 0 32px 0;
	height: 231px;
}
.item-recommend .colors {
	gap: 10px;
	margin: -32px 0 16px 0;
}
.item-recommend .category {
	font-size: 13px;
	line-height: 22px;
	margin: 0;}
@media (pointer:fine){
	.item-recommend .category a:hover{
		color: var(--hover-dark);
	}
}
.item-recommend.view-item .category {
	margin-bottom: 13px;
}
.item-recommend.view-series .category {
	margin-bottom: 2px;
}
.item-recommend .name {
	line-height: 22px;
	font-size: 14px;
	letter-spacing: normal;
}
.item-recommend.view-series .name {
	font-weight: 500;
}
.item-recommend .price {
	font-size: 18px;
}
.item-recommend.view-item .price {
	margin-top: 20px;
}
.item-recommend.view-series .price {
	margin-top: 16px;
}
.item-recommend.view-item .link-to-fav, .item-recommend.view-item .cover-action {
	margin: 20px;
}
.item-recommend.view-series .link-to-fav, .item-recommend.view-series .cover-action {
	margin: 20px;
}
.index-news {
	margin-top: 50px;
}
.index-news .content-title {
	margin-bottom: 40px;
}
.index-news .grid {
	gap: 50px 30px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.index-news .el {
	flex-direction: column;
	align-items: stretch;
	gap: 15px 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 25px;
	letter-spacing: -0.01em;
	color: var(--grey700);
}
.index-news .el .date {
	margin: 0;
	border-radius: 3px 0 0 3px;
	width: 63px;
}
.index-about {
	margin-top: 50px;
	background: none;
	font-size: 15px;
	line-height: 28px;
	color: var(--grey800);
	letter-spacing: -0.02em;
	padding: 0;
}
.index-about:before, .index-about:after {
	display: none;
}
.index-about p {
	margin-bottom: 21px;
}
.index-about .accent {
	margin-left: auto;
	margin-right: auto;
	max-width: 760px;
	font-size: 16px;
	line-height: 32px;
}
.index-about .accent2 {
	font-weight: 600;
}
.index-about .head {
	font-size: 18px;
	letter-spacing: 0.03em;
	margin-bottom: 50px;
	background: var(--grey900) url(../img/index-about/desktop.webp) no-repeat 50% 50%;
	background-size: cover;
}
.index-about .head .container {
	max-width: 420px;
	background: rgba(17, 38, 73, 0.65);
	-webkit-backdrop-filter: blur(12.5px);
	backdrop-filter: blur(12.5px);
	padding-top: 41px;
	padding-bottom: 42px;
}
.index-about .logo {
	margin-bottom: 17px;
}
.index-about .big {
	margin-bottom: 10px;
}
.index-about .big:after {
	width: 45px;
	margin-top: 14px;
}
.index-about .for-link {
	margin-top: 41px;
}
.index-about .btn {
	min-width: 310px;
	color: var(--white);
	background: linear-gradient(180deg, #FF7A00 6.47%, #F35C00 93.33%);
	background-color: #FF7A00;
	background-position: 50% 0;
	background-repeat: repeat-x;
	box-shadow: 0px 12px 25px rgba(255, 127, 48, 0.25), 0px 0.5px 1px rgba(0, 0, 0, 0.25), inset 0px -0.5px 0px rgba(0, 0, 0, 0.45);
	height: 56px;
	border-radius: 28px;
	text-shadow: 0px 0.5px 0px rgba(0, 0, 0, 0.45);
}
.index-about .btn svg {
	fill: var(--white);
	filter: drop-shadow(0px 0.5px 0px rgba(0, 0, 0, 0.45));
}
@media (pointer:fine) {
.index-about .btn:hover {
 background-position: 50% 20px;
 color: var(--white);
}
}
.index-stat {
	margin-top: 50px;
	padding-top: 55px;
	padding-bottom: 55px;
	line-height: 24px;
	color: #4D6285;
	background-image: url(../img/index-stat/top-desktop.png), url(../img/index-stat/bottom-desktop.png);
	background-size: auto 129px, auto 144px;
}
.index-stat:before {
	background: rgba(247, 250, 252, 0.9);
	-webkit-backdrop-filter: blur(7.5px);
	backdrop-filter: blur(7.5px);
}
.index-stat ul {
	flex-direction: row;
	align-items: center;
	gap: 10px 30px;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0;
	overflow: hidden;
	height: 50px;
}
.index-stat li {
	gap: 0 15px;
	flex: 0 0 auto;
}
.index-stat .pic {
	width: 50px;
	height: 50px;
}
.index-clients {
	margin-top: 60px;
}
.index-clients .content-title {
	display: block;
	margin-bottom: 40px;
}
.clients-slider {
	margin: -10px -10px!important;
	overflow: hidden!important;
}
.clients-slider .swiper-wrapper {
	min-height: 70px;
}
.clients-slider .swiper-slide {
	padding: 0 25px!important;
}
.clients-slider img {
	max-height: 50px;
}
.clients-slider-prev {
	left: 0;
}
.clients-slider-next {
	right: 0;
}
.index-brands {
	margin-top: 70px;
	font-size: 14px;
	line-height: 28px;
	text-align: left;
}
.index-brands .top {
	border-left: 3px solid var(--yellow);
	padding: 2.5px 0 2.5px 30px;
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 40px;
}
.index-brands .big {
	line-height: 40px;
	margin-bottom: 15px;
	color: var(--grey700);
}
.index-brands .text img {
	float: left;
	width: 340px;
	margin: 6px 30px 12px 0;
	border-radius: 8px;
}
.index-brands p {
	margin-bottom: 12px;
}
.index-brands .accent {
	font-weight: 600;
	font-size: 15px;
	letter-spacing: -0.03em;
}
.index-brands .accent:not(:first-child) {
	margin-top: 22px;
}
.brands-slider {
	margin: 40px -10px -10px -10px!important;
	overflow: hidden!important;
}
.brands-slider .swiper-wrapper {
	min-height: 70px;
}
.brands-slider .swiper-slide {
	padding: 0 24px;
}
.brands-slider-prev {
	left: 0;
}
.brands-slider-next {
	right: 0;
}
.brands-slider img {
	max-height: 55px;
}
.index-why {
	background: none;
	margin: 60px 0 0 0;
	padding: 0;
	font-weight: 500;
	font-size: 15px;
	line-height: 33px;
	color: var(--grey700);
}
.index-why .top {
	display: block;
	margin: 0 0 30px 0;
}
.index-why .top:after {
	content: '';
	width: 60px;
	height: 3px;
	border-radius: 1.5px;
	display: block;
	margin: 25px auto 0 auto;
	background: var(--yellow);
}
.index-why ul {
	margin: 0 auto;
	max-width: 960px;
	background: #E4ECF7;
	grid-template-columns: repeat(3, 1fr);
	font-size: 15px;
	line-height: 24px;
	letter-spacing: normal;
	grid-auto-rows: 1fr;
}
.index-why li {
	padding: 44px 23px 43px 23px;
}
.index-why .pic {
	width: 55px;
	height: 55px;
	margin-bottom: 15px;
}
.index-why .big {
	font-size: 20px;
	margin-bottom: 16px;
}
.index-why .big:after {
	width: 23px;
	height: 2px;
	border-radius: 1px;
	margin-top: 8px;
}
.index-why .text {
	margin-top: 30px;
}
.index-why .for-link {
	margin: 30px 0 0 0;
}
.index-why .for-link .btn {
	min-width: 250px;
	height: 56px;
	border-radius: 28px;
	text-shadow: 0px 0.5px 0px rgba(0, 0, 0, 0.45);
}
.index-why .for-link .btn svg {
	filter: drop-shadow(0px 0.5px 0px rgba(0, 0, 0, 0.45));
}
}

/*tablet end*/

/*tablet-big start*/

@media only screen and (min-width: 1024px) {
.top-index-slider .size1 {
	font-size: 45px;
	line-height: 45px;
	letter-spacing: -0.02em;
}
.top-index-slider .size2 {
	font-size: 30px;
	line-height: 30px;
}
.top-index-slider .size3 {
	letter-spacing: -0.02em;
}
.index-categories {
	grid-template-columns: repeat(4, 1fr);
}
.recommend-slider .swiper-slide {
	width: 25%;
}
}

/*tablet-big end*/

/*desktop start*/

@media only screen and (min-width: 1280px) {
.top-index-slider .image img {
	width: 100%;
	height: 100%;
}
.top-index-slider .container {
	padding-left: 40px;
	padding-right: 40px;
	max-width: 1514px;
}
.top-index-slider .text {
	padding-top: 85px;
	padding-bottom: 70px;
	min-height: 400px;
	gap: 13px 0;
}
.top-index-slider .size1 {
	font-size: 50px;
}
.top-index-slider .size2 {
	font-size: 32px;
}
.top-index-slider .size3 {
	font-size: 21px;
	margin-top: 25px;
}
.index-categories {
	margin: 42px 0 -58px 0;/*62px 0 -58px 0; 0204*/
	grid-template-columns: repeat(6, 1fr);
}
.index-categories .link {
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	letter-spacing: -0.01em;
	padding: 41px 20px;
}
.index-categories .pic {
	margin-bottom: 58px;
}
.index-categories .pic:after {
	bottom: -34px;
}
.index-categories .plus {
	width: 67px;
	height: 67px;
	margin-top: 0;
	margin-bottom: 67px;
}
.index-categories .plus > * {
	bottom: -45px;
}
.index-recommend {
	margin-top: 120px;
}
.index-recommend .content-title {
	margin-bottom: 50px;
}
.recommend-slider .swiper-slide {
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.recommend-slider .swiper-slide:not(.swiper-slide-visible) {
	opacity: 0;
	pointer-events: none;
}
.recommend-slider .main-slider-arrow {
	top: 210px;
}
.recommend-slider-prev {
	left: -35px;
}
.recommend-slider-next {
	right: -35px;
}
.recommend-slider .swiper-slide {
	width: 20%;
}
.item-recommend {
	padding: 5px 25px 32px 25px;
}
.item-recommend.view-item .photo,
.item-recommend.view-series .photo {
	margin: 0 -20px 32px -20px;
	height: 230px;
}
.item-recommend .colors {
	gap: 10px;
}
.item-recommend .category {
	font-size: 14px;
}
.item-recommend.view-item .category {
	margin-bottom: 12px;
}
.item-recommend.view-series .category {
	margin-bottom: 12px;
}
.item-recommend.view-item .name {
	font-size: 15px;
	letter-spacing: 0.01em;
}
.item-recommend.view-series .name {
	font-size: 16px;
	font-weight: normal;
}
.item-recommend .price .status {
	width: 8px;
	height: 8px;
	margin-right: -10px;
}
.item-recommend.view-item .price {
	margin-top: 18px;
}
.item-recommend.view-series .price {
	margin-top: 22px;
}
.item-recommend.view-item .link-to-fav, .item-recommend.view-item .cover-action {
	margin: 25px;
}
.item-recommend.view-series .link-to-fav, .item-recommend.view-series .cover-action {
	margin: 10px;
}
.index-news {
	margin-top: 90px;
}
.index-news .content-title {
	margin-bottom: 44px;
}
.index-news .grid {
	margin: 0 0 0 33px;
	align-items: flex-start;
}
.index-news .el {
	flex-direction: row;
	align-items: flex-start;
	gap: 0 30px;
	font-size: 18px;
	font-weight: 600;
	font-family: var(--fontg);
	letter-spacing: normal;
}
.index-news .el .date {
	font-size: 20px;
}
.index-news .el .date + * {
	align-self: center;
}
.index-about {
	margin-top: 100px;
	font-size: 18px;
	line-height: 35px;
	letter-spacing: -0.015em;
}
.index-about p {
	margin-bottom: 35px;
}
.index-about .accent {
	max-width: none;
	font-size: 18px;
	line-height: inherit;
}
.index-about .accent2 {
	font-weight: inherit;
}
.index-about .head {
	font-size: 23px;
	line-height: 35px;
	letter-spacing: 0.02em;
	margin-bottom: 80px;
}
.index-about .head .container {
	max-width: 700px;
	padding-top: 68px;
	padding-bottom: 67px;
}
.index-about .logo {
	margin-bottom: 20px;
}
.index-about .big {
	margin-bottom: 14px;
}
.index-about .big:after {
	width: 50px;
	height: 3px;
	border-radius: 1.5px;
	margin-top: 17px;
}
.index-about .body .container {
	max-width: 1580px;
}
.index-about .for-link {
	margin-top: 50px;
}
.index-about .btn {
	min-width: 388px;
	height: 60px;
	border-radius: 5px;
	font-size: 18px;
}
.index-stat {
	margin-top: 80px;
	padding-top: 70px;
	padding-bottom: 70px;
	font-size: 20px;
	line-height: 28px;
}
.index-stat ul {
	margin: 0 auto;
	max-width: 1640px;
	height: 60px;
}
.index-stat li {
	gap: 0 30px;
}
.index-stat .pic {
	width: 60px;
	height: 60px;
}
.index-clients {
	margin-top: 100px;
}
.index-clients .content-title {
	margin-bottom: 60px;
}
.clients-slider {
	margin: 0 -20px!important;
	overflow: hidden!important;
}
.clients-slider .swiper-wrapper {
	min-height: 70px;
}
.clients-slider .swiper-slide {
	padding: 0 38px;
}
.clients-slider img {
	max-height: 70px;
}
.index-brands {
	margin-top: 92px;
	font-size: 18px;
	line-height: 35px;
}
.index-brands .top {
	padding-top: 0;
	padding-bottom: 0;
	font-size: 18px;
	margin-bottom: 52px;
}
.index-brands .big {
	font-size: 36px;
	margin-bottom: 21px;
}
.index-brands .text img {
	width: 420px;
	margin: 6px 50px 25px 0;
	border-radius: 0;
}
.index-brands p {
	margin-bottom: 25px;
}
.index-brands .accent {
	font-size: inherit;
	letter-spacing: inherit;
}
.brands-slider {
	margin: 0 -20px!important;
}
.brands-slider .swiper-slide {
	padding: 0 23px;
}
.brands-slider img {
	max-height: 70px;
}
.index-why {
	margin-top: 110px;
	font-size: 18px;
	line-height: 35px;
	letter-spacing: -0.02em;
}
.index-why .top {
	font-size: 36px;
	margin-bottom: 40px;
}
.index-why .top:after {
	margin-top: 35px;
}
.index-why ul {
	max-width: 1052px;
	letter-spacing: normal;
}
.index-why li {
	padding: 49px 25px;
}
.index-why .pic {
	width: 60px;
	height: 60px;
	margin-bottom: 25px;
}
.index-why .big {
	font-size: 22px;
	margin-bottom: 14px;
}
.index-why .big:after {
	width: 25px;
	background: rgba(166, 183, 212, 0.5);
	margin-top: 11px;
}
.index-why .text {
	margin: 50px auto 0 auto;
	max-width: 1050px;
}
.index-why .for-link {
	margin-top: 40px;
}
.index-why .for-link .btn {
	min-width: 316px;
	height: 60px;
	border-radius: 5px;
	font-size: 18px;
}
}

/*desktop end*/

/*desktop-big start*/

@media only screen and (min-width: 1680px) {
.recommend-slider .swiper-slide {
	width: 16.666666%;
}
.index-news .grid {
	gap: 50px 106px;
}
}


/*new*/
.swiper-slide.newV {padding: 22.8475% 0 0; }
@media print, screen and (min-width: 1200px) {
	.swiper-slide.newV {padding: 23.4% 0 0;}
	
	.swiper-slide.newV:after {
		content: "";
		border-radius: 12px;
		width: 100%;
		height: 100%;
		transition: background-color .2s cubic-bezier(.17,.67,.83,.67);
		position: absolute;
		top: 0;
		left: 0
	}
	.swiper-slide.newV:hover:after{background-color: rgba(0,0,0,.1);}
}
.big-slider .main-slider-arrow {top: 210px;}
.big-slider-prev {left: 35px; display: block; top:48%;}
.big-slider-next {right: 35px; display: block;top:48%;}
@media only screen and (max-width: 1023px) {
	.top-index-slider-pagination {gap:0 8px;}
	.big-slider-prev, .big-slider-next{display: none;}
	.swiper-pagination.top-index-slider-pagination{bottom: 0!important; padding-bottom: 16px;}
	.swiper-slide.newV{padding: 50.1475% 0 0;}
	.top-index-slider-pagination .swiper-pagination-bullet{width: 5px!important; height: 5px!important;}
}

/*13.05.24 start*/
.index-blocks {
		margin-top: 75px;
		padding-bottom: 50px;
		margin-bottom: -40px;
		overflow: hidden;
}
.index-blocks > .container {
		display: flex;
		flex-direction: column;
		gap: 50px;
}
.index-blocks > .container > * {
		flex: 0 0 auto;
		width: 100%;
}
.index-blocks .swiper {
		overflow: visible !important;
}
.index-blocks .swiper-slide {
		height: auto !important;
		display: flex !important;
		flex-direction: column;
}
.index-categories-new .load-more {
		margin-bottom: 56px;
		position: relative;
}
.index-categories-new .load-more .plus {
		margin: 0;
		width: 65px;
		height: 65px;
		border-radius: 50%;
		border-color: var(--sec-dark);
}
.index-categories-new .load-more .plus:before, .index-categories-new .load-more .plus:after {
		background-color: var(--sec-dark);
		width: 20px;
}
.index-categories-new .load-more .text {
		position: absolute;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		top: 100%;
		left: 0;
		right: 0;
		padding: 16px 0 0 0;
		height: 56px;
		font: inherit;
}
.index-categories-new .link, .index-categories-new .load-more {
		font-family: var(--fontg);
}
.index-categories-new .link {
		flex: 1 0 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-decoration: none;
		text-align: center;
		transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (pointer:fine) {
		.index-categories-new .link:hover {
				color: var(--darker);
		}
}
.index-categories-new .pic, .index-categories-new .load-more {
		border-radius: 5px;
		background: #F4F8FD;
}
.index-categories-new .pic {
		width: 100%;
		flex: 0 0 auto;
		display: block;
		transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.index-categories-new .pic + * {
		margin: auto;
		max-width: 100%;
}
@media (pointer:fine) {
		.index-categories-new .link:hover .pic {
				background-color: rgba(158, 172, 197, 0.5);
		}
		.index-categories-new .load-more:hover .plus {
				border-color: var(--blue);
		}
		.index-categories-new .load-more:hover .plus:before, .index-categories-new .load-more:hover .plus:after {
				background-color: var(--blue);
		}
}
.index-categories-new .pic img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
		mix-blend-mode: multiply;
}
.index-offers-slider .swiper-slide {
		width: auto;
}
.index-offers-slider .swiper-wrapper {
		justify-content: space-between;
}
.index-offers-slider .swiper-slide:not(:last-child) {
		padding-right: 10px;
}
.index-offers .link {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		font-weight: 600;
		line-height: 1.333333;
		font-family: var(--fontg);
		letter-spacing: -0.01em;
		background-repeat: no-repeat;
		background-position: 50% 50%;
		background-size: cover;
		color: var(--grey700);
		position: relative;
}
@media (pointer:fine) {
		.index-offers .link:after {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				bottom: 0;
				right: 0;
				border-radius: inherit;
				background: #000;
				opacity: 0;
				transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
		}
		.index-offers .link:hover:after {
				opacity: 0.15;
		}
}
.index-offers .link .big {
		display: block;
		font-weight: 900;
		line-height: 1.071428em;
}
@media only screen and (max-width: 767px) {
		.index-categories-new .swiper-wrapper {
				display: flex;
				flex-wrap: wrap;
				gap: 25px 0;
				justify-content: space-between;
		}
		.index-categories-new .swiper-slide {
				flex: 0 0 auto;
				width: calc((100% - 24px) / 3);
		}
		.index-categories-new .swiper-slide:nth-last-child(2):nth-child(3n - 1), .index-categories-new .swiper-slide:nth-last-child(3):nth-child(3n - 2) {
				width: calc((100% - 12px) / 2);
		}
		.index-categories-new .swiper-slide:nth-last-child(2):nth-child(3n - 2) {
				width: 100%;
		}
		.index-categories-new .link, .index-categories-new .load-more {
				font-size: 12px;
				line-height: 14px;
				letter-spacing: -0.01em;
				font-weight: 600;
		}
		.index-categories-new .link {
				min-height: 105px;
		}
		.index-categories-new .pic, .index-categories-new .load-more {
				height: 80px;
		}
		.index-categories-new .pic {
				margin-bottom: 12px;
		}
		.index-categories-new .slide-for-more {
				display: none;
		}
		.index-categories-new .btn {
				width: 100%;
				margin-top: 25px;
				font-family: var(--fonti);
				font-weight: normal;
				color: var(--deep-blue);
				letter-spacing: -0.01em;
				font-size: 16px;
		}
		.index-offers .link {
				font-size: 16px;
				line-height: 1.125;
				width: 21.875em;
				max-width: calc(100vw - 34px);
				height: 12.5em;
				padding: 2.8125em 1.875em;
				display: flex;
				flex-direction: column;
				justify-content: center;
		}
		.index-offers .link.bg-architect {
				background-image: url("../img/index-offers/architect-small.webp");
		}
		.index-offers .link.bg-design {
				background-image: url("../img/index-offers/design-small.webp");
				padding-right: 8em;
		}
		.index-offers .link.bg-design br {
				display: none;
		}
		.index-offers .link.bg-manager {
				background-image: url("../img/index-offers/manager-small.webp");
		}
		.index-offers .link .big {
				font-size: 1.5em;
				line-height: 1.166666;
				margin-bottom: 0.41666666em;
		}
		.index-offers .link .btn {
				display: none;
		}
}
@media only screen and (min-width: 768px) {
		.index-blocks {
				margin-top: 40px;
				padding-bottom: 0;
				margin-bottom: -45px;
		}
		.index-blocks .container {
				flex-direction: column-reverse;
		}
		.index-categories-new .swiper-slide {
				width: auto;
		}
		.index-categories-new .swiper-slide:not(:last-child) {
				padding-right: 20px;
		}
		.index-categories-slider-prev, .index-categories-slider-next {
				top: 60px;
		}
		.index-categories-slider-prev, .index-offers-slider-prev {
				left: -12px;
		}
		.index-categories-slider-next, .index-offers-slider-next {
				right: -12px;
		}
		@media only screen and (min-width: 1280px) {
				.index-categories-slider-prev, .index-offers-slider-prev {
						left: -35px;
				}
				.index-categories-slider-next, .index-offers-slider-next {
						right: -35px;
				}
		}
		@media only screen and (min-width: 1760px) {
				.index-categories-new .swiper:before, .index-categories-new .swiper:after {
						content: '';
						position: absolute;
						top: 0;
						bottom: 0;
						z-index: 3;
						background: var(--white);
						width: 50vw;
				}
				.index-categories-new .swiper:before {
						right: 100%;
				}
				.index-categories-new .swiper:after {
						left: 100%;
				}
				/*
			.index-categories-new .swiper-slide {
						transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
				}
				.index-categories-new .swiper-slide:not(.swiper-slide-visible) {
						opacity: 0;
						pointer-events: none;
				}
			*/
		}
		.index-categories-new .link, .index-categories-new .load-more {
				width: 200px;
				font-size: 15px;
				line-height: 20px;
				text-transform: uppercase;
				letter-spacing: 0.02em;
				font-weight: bold;
		}
		.index-categories-new .pic, .index-categories-new .load-more {
				height: 120px;
		}
		.index-categories-new .pic {
				margin-bottom: 16px;
		}
		.index-categories-new .btn {
				display: none;
		}
		.index-offers .link {
				width: 30em;
				height: 15.555555em;
				font-size: clamp(12px, 1.0227272727vw, 18px);
				padding: 2.777777em 2.222222em;
		}
		.index-offers .link.bg-architect {
				background-image: url("../img/index-offers/architect-big.webp");
		}
		.index-offers .link.bg-design {
				background-image: url("../img/index-offers/design-big.webp");
		}
		.index-offers .link.bg-manager {
				background-image: url("../img/index-offers/manager-big.webp");
		}
		.index-offers .link .big {
				font-size: 1.555555em;
				margin-bottom: 0.428571em;
		}
		.index-offers .link .btn {
				font-size: 0.833333em;
				margin-top: auto;
				height: 2.666666em;
				padding: 0 1.666666em;
				font-weight: bold;
				z-index: 2;
		}
}
/*13.05.24 end*/
@media only screen and (max-width: 768px) {
.index-blocks{margin-top: 10px;}
}