@charset "UTF-8";
@import "../fonts/stylesheet.css";
@import "../fonts/icomoon/style.css";
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@100..900&display=swap");
* {
	padding: 0px;
	margin: 0px;
	border: 0px;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

aside,
nav,
footer,
header,
section {
	display: block;
}

html,
body {
	height: 100%;
	min-width: 320px;
}

body {
	line-height: 1;
	font-family: "Exo 2";
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: "Exo 2";
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
	background: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
}

html.lock, body._lock {
	overflow: hidden;
	-ms-touch-action: none;
	    touch-action: none;
}

body {
	background: #fff;
}

._ibg {
	position: relative;
}
._ibg img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	   object-fit: cover;
}

body.ie ._ibg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.ie ._ibg img {
	width: 0;
	height: 0;
	opacity: 0;
	visibility: hidden;
}

.wrapper {
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	overflow: hidden;
}
.wrapper > main {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.wrapper > * {
	min-width: 0;
}

._container {
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 30px;
}
@media (max-width: 480px) {
	._container {
		padding: 0 20px;
	}
}

.title {
	font-weight: 800;
	font-size: 70px;
	letter-spacing: 0.9px;
	line-height: 1.2;
	color: #323334;
	text-transform: uppercase;
}
.title span {
	color: #fe0000;
}
@media (max-width: 1919px) {
	.title {
		font-size: calc(40px + 30 * ((100vw - 320px) / 1600));
	}
}

.text {
	font-size: 16px;
	line-height: 1.22;
	letter-spacing: 0.01em;
	color: #313132;
}
@media (max-width: 1919px) {
	.text {
		font-size: calc(14px + 2 * ((100vw - 320px) / 1600));
	}
}

.btn {
	position: relative;
	cursor: pointer;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #fff;
	text-align: center;
	border: 2px solid #fff;
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	height: 48px;
	border-radius: 100px;
	white-space: nowrap;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	padding: 10px 30px;
}
@media (min-width: 1024px) {
	.btn:hover {
		color: #fe0000;
		border: 2px solid #fe0000;
		-webkit-transition: all 0.5s ease 0s;
		-o-transition: all 0.5s ease 0s;
		transition: all 0.5s ease 0s;
	}
}
@media (max-width: 480px) {
	.btn {
		height: 40px;
		font-size: 13px;
	}
}

.btn_r {
	background: #fe0000;
	border: 2px solid #fe0000;
}
@media (min-width: 1024px) {
	.btn_r:hover {
		background: #353637;
		border: 2px solid #353637;
	}
}

.btn_b {
	border: 2px solid #171717;
	color: #fff;
	background: #171717;
}

.btn_bl {
	border: 2px solid #313132;
	color: #313132;
}

.btn2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0px 78px 0px 0px;
}
.btn2 .btn {
	background: #fe0000;
	border: 2px solid #fe0000;
}
.btn2 .btn::after {
	position: absolute;
	top: 50%;
	left: calc(100% + 16px);
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	font-family: icomoon;
	content: "";
	width: 48px;
	height: 48px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-radius: 50%;
	background: #1d1d1d;
	color: #fff;
	font-size: 26px;
}
@media (max-width: 1024px) {
	.btn2 .btn::after {
		width: 42px;
		height: 42px;
		font-size: 20px;
		left: calc(100% + 12px);
	}
}
@media (max-width: 480px) {
	.btn2 .btn::after {
		width: 40px;
		height: 40px;
	}
}
@media (min-width: 1024px) {
	.btn2 .btn:hover {
		background: #1d1d1d;
		color: #fff;
		border: 2px solid #1d1d1d;
	}
}
.btn2 .btn_bl {
	background: #1d1d1d;
	border: 2px solid #1d1d1d;
	color: #fff;
}
@media (min-width: 1024px) {
	.btn2 .btn_bl:hover {
		background: #fff;
		color: #1d1d1d;
	}
}
@media (max-width: 1024px) {
	.btn2 {
		padding: 0px 52px 0px 0px;
	}
}

.btn_w {
	background: #fff;
	color: #1d1d1d;
}
@media (min-width: 1024px) {
	.btn_w:hover {
		color: #fff;
		background: #1d1d1d;
		border: 2px solid #1d1d1d;
	}
}

.blockhead {
	background: #e8ecef;
}

.header {
	position: relative;
	z-index: 5;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	padding: 40px 0px;
}
.header._active .menu {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	left: calc(100% - 280px);
}
@media (max-width: 1024px) {
	.header._active .menu {
		top: 80px;
		left: 50%;
	}
}
.header._active .header__toggle {
	opacity: 0;
	visibility: hidden;
}
@media (max-width: 1024px) {
	.header._active .header__toggle {
		opacity: 1;
		visibility: visible;
	}
}
@media (max-width: 1024px) {
	.header._active .header__togglebtn {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.header._active .header__togglebtn::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%) rotate(-45deg);
		    -ms-transform: translate(-50%, -50%) rotate(-45deg);
		        transform: translate(-50%, -50%) rotate(-45deg);
	}
	.header._active .header__togglebtn::after {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%) rotate(45deg);
		    -ms-transform: translate(-50%, -50%) rotate(45deg);
		        transform: translate(-50%, -50%) rotate(45deg);
	}
}
@media (max-width: 1024px) {
	.header {
		padding: 30px 0px;
	}
}
@media (max-width: 480px) {
	.header {
		padding: 20px 0px;
	}
}

.header__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.header__wrap {
	position: relative;
	z-index: 1;
	width: 340px;
	padding: 0 0 0 30px;
	background: #fff;
	border-radius: 100px;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 1024px) {
	.header__wrap {
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
}
@media (max-width: 480px) {
	.header__wrap {
		padding: 0px 0px 0px 20px;
	}
}
@media (max-width: 360px) {
	.header__wrap {
		padding: 0px 0px 0px 10px;
	}
}

.header__logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 120px;
	        flex: 0 0 120px;
	width: 120px;
	position: relative;
	z-index: 5;
	margin: 0px 30px 0px 0px;
}
.header__logo img {
	width: 100%;
}
@media (max-width: 480px) {
	.header__logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100px;
		        flex: 0 0 100px;
		width: 100px;
	}
}
@media (max-width: 360px) {
	.header__logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 80px;
		        flex: 0 0 80px;
		width: 80px;
	}
}

.header__menu {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.menu {
	position: absolute;
	top: 0;
	left: 0%;
	height: 100%;
	background: #fff;
	padding: 15px 50px 15px 150px;
	border-radius: 100px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-family: Eurostile-Med;
	font-size: 16px;
	opacity: 0;
	visibility: hidden;
	color: #313132;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.menu a {
	font-family: Eurostile-Med;
	color: #313132;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.menu a:hover {
		color: #fe0000;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
.menu > li {
	text-transform: uppercase;
	white-space: nowrap;
	position: relative;
	z-index: 1;
	margin: 0px 40px 0px 0px;
}
.menu > li._arrow {
	cursor: pointer;
	position: relative;
	margin: 0px 30px 0px 0px;
}
.menu > li._arrow span {
	font-family: Eurostile-Med;
	position: relative;
	padding: 0px 20px 0px 0px;
}
.menu > li._arrow span::before {
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	font-size: 8px;
	font-family: icomoon;
	content: "";
}
@media (max-width: 1024px) {
	.menu > li._arrow span::before {
		top: 50%;
	}
}
@media (max-width: 1024px) {
	.menu > li._arrow {
		margin: 0;
	}
}
.menu > li.icon-14::before, .menu > li.icon-02::before, .menu > li.icon-43::before, .menu > li.icon-52::before, .menu > li.icon-53::before {
	position: absolute;
	top: 17px;
	left: 0;
	display: none;
	font-size: 22px;
	color: #313132;
}
@media (max-width: 1024px) {
	.menu > li.icon-14::before, .menu > li.icon-02::before, .menu > li.icon-43::before, .menu > li.icon-52::before, .menu > li.icon-53::before {
		display: block;
	}
}
@media (min-width: 1024px) {
	.menu > li:hover .sub-menu {
		top: 15px;
		opacity: 1;
		visibility: visible;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.menu > li:hover._arrow {
		color: #fe0000;
	}
	.menu > li:hover._arrow::after {
		-webkit-transform: rotate(-180deg);
		    -ms-transform: rotate(-180deg);
		        transform: rotate(-180deg);
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 1024px) {
	.menu > li {
		padding: 20px 0px 20px 40px;
		width: 390px;
		max-width: 100%;
		margin: 0;
		border-bottom: 1px solid #313132;
	}
	.menu > li._slide {
		padding: 20px 0px 0px 0px;
	}
	.menu > li._slide span {
		color: #fe0000;
		padding: 20px 20px 20px 40px;
	}
	.menu > li._slide::before {
		color: #fe0000;
	}
	.menu > li._slide::after {
		-webkit-transform: rotate(-180deg);
		    -ms-transform: rotate(-180deg);
		        transform: rotate(-180deg);
	}
	.menu > li:last-child {
		border: 0;
	}
}
@media (max-width: 1024px) {
	.menu {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		width: calc(100% + 60px);
		height: auto;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
		border-radius: 0;
		padding: 20px;
		-webkit-box-shadow: 0px 22px 30px -9px rgba(0, 0, 0, 0.3);
		box-shadow: 0px 22px 30px -9px rgba(0, 0, 0, 0.3);
	}
}
@media (max-width: 480px) {
	.menu {
		width: calc(100% + 40px);
	}
}

.sub-menu {
	position: absolute;
	z-index: 1;
	top: 30px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	padding: 30px 30px 10px 30px;
	background: #fff;
}
.sub-menu[hidden] {
	display: block;
}
@media (max-width: 1024px) {
	.sub-menu[hidden] {
		display: none;
	}
}
.sub-menu > li {
	white-space: nowrap;
	padding: 15px 0px;
	position: relative;
	text-transform: none;
	font-size: 18px;
	min-height: 63px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.sub-menu > li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.sub-menu > li a img {
	width: 50px;
	margin: 0px 20px 0px 0px;
}
.sub-menu > li a img._small {
	padding: 0px 10px;
}
@media (max-width: 1024px) {
	.sub-menu > li {
		white-space: wrap;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.sub-menu > li:first-child {
		border-top: 1px solid #d2d1d1;
	}
	.sub-menu > li:last-child {
		border-bottom: 0;
	}
}
.sub-menu > *:not(:last-child) {
	border-bottom: 1px solid #d2d1d1;
}
@media (max-width: 1024px) {
	.sub-menu {
		position: relative;
		top: 0;
		left: 0;
		-webkit-transform: translate(0);
		    -ms-transform: translate(0);
		        transform: translate(0);
		opacity: 1;
		visibility: visible;
		padding: 0;
		margin: 20px 0px 0px 0px;
	}
}

.header__toggle {
	cursor: pointer;
	position: relative;
	height: 100%;
	padding: 0px 120px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 1;
	visibility: visible;
	font-family: Eurostile-Med;
	font-size: 16px;
}
@media (min-width: 1024px) {
	.header__toggle:hover .header__togglebtn {
		-webkit-transform: scale(1.05);
		    -ms-transform: scale(1.05);
		        transform: scale(1.05);
	}
}

.header__togglebtn {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 81px;
	background: #fe0000;
	border-radius: 100px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.header__togglebtn::before {
	content: "";
	position: absolute;
	top: 45%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 31px;
	height: 2px;
	background: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.header__togglebtn::after {
	content: "";
	position: absolute;
	top: 55%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 31px;
	height: 2px;
	background: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1024px) {
	.header__togglebtn {
		pointer-events: none;
	}
}
@media (max-width: 360px) {
	.header__togglebtn {
		width: 86px;
	}
}

.header-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.header-block > *:not(:last-child) {
	margin: 0px 15px 0px 0px;
}
@media (max-width: 1024px) {
	.header-block {
		display: none;
	}
}

.header-cart {
	position: relative;
	background: #fff;
	border-radius: 50px;
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 40px;
	        flex: 1 0 40px;
	min-width: 40px;
	width: auto;
}
.header-cart._active .header-cart__val {
	padding: 0px 20px 0px 50px;
}

.header-cart__icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fe0000 url("../img/icons/cart.svg") no-repeat;
	background-size: 24px;
	background-position: center;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.header-cart__icon:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background: #171717 url("../img/icons/cart.svg") no-repeat;
		background-size: 24px;
		background-position: center;
	}
}

.header-cart__val {
	height: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #171717;
	font-weight: 600;
}

.header__tel {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 40px;
	        flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fe0000 url("../img/icons/phone.svg") no-repeat;
	background-size: 22px;
	background-position: center;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.header__tel:hover {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background: #171717 url("../img/icons/phone.svg") no-repeat;
	background-size: 22px;
	background-position: center;
}

.mob-contacts {
	display: none;
}
@media (max-width: 1024px) {
	.mob-contacts {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		font-size: 18px;
		padding: 60px 0px 20px 0 !important;
	}
	.mob-contacts .header__tel {
		display: block;
	}
}

body::after {
	content: "";
	background-color: rgba(255, 255, 255, 0.7);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: opacity 0.8s ease 0s;
	-o-transition: opacity 0.8s ease 0s;
	transition: opacity 0.8s ease 0s;
	pointer-events: none;
	z-index: 149;
}
@media (max-width: 480px) {
	body::after {
		background-color: rgba(255, 255, 255, 0);
	}
}

.popup-show body::after {
	opacity: 1;
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 30px 10px;
	-webkit-transition: visibility 0.8s ease 0s;
	-o-transition: visibility 0.8s ease 0s;
	transition: visibility 0.8s ease 0s;
	visibility: hidden;
	pointer-events: none;
}
@media (max-width: 480px) {
	.popup {
		padding: 0;
	}
}

.popup_show {
	z-index: 150;
	visibility: visible;
	overflow: auto;
	pointer-events: auto;
}

.popup_show .popup__content {
	visibility: visible;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

.popup__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-height: 100%;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	width: 100%;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	align-items: center;
}

.popup__content {
	visibility: hidden;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	-webkit-transition: -webkit-transform 0.3s ease 0s;
	transition: -webkit-transform 0.3s ease 0s;
	-o-transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	background: #fff;
	width: 100%;
	max-width: 900px;
	border-radius: 8px;
}
.lock .popup__content {
	visibility: visible;
}

.popup__close {
	position: absolute;
	top: 0px;
	right: -80px;
}
.popup__close::before {
	font-family: icomoon;
	content: "";
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #fff;
	width: 60px;
	height: 60px;
	color: #171717;
	border-radius: 5px;
	font-size: 24px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
	.popup__close::before {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}
@media (min-width: 1024px) {
	.popup__close:hover::before {
		color: #fe0000;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 900px) {
	.popup__close {
		right: 0;
	}
}
@media (max-width: 480px) {
	.popup__close {
		top: 10px;
		right: 10px;
	}
}

.callback-popup .popup__content {
	max-width: 700px;
	padding: 60px;
}
@media (max-width: 480px) {
	.callback-popup .popup__content {
		padding: 50px 20px;
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}

.popup__title {
	font-size: 46px;
	line-height: 1.1;
	margin: 0px 0px 30px 0px;
}
@media (max-width: 1919px) {
	.popup__title {
		font-size: calc(25px + 21 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.popup__title {
		margin: 0px 0px 25px 0px;
	}
}

.popup__title_pr {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 480px) {
	.popup__title_pr {
		margin: 0px 0px 15px 0px;
	}
}

.callback-popup__sub {
	font-size: 24px;
	color: #939393;
	line-height: 1.3;
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1919px) {
	.callback-popup__sub {
		font-size: calc(18px + 6 * ((100vw - 320px) / 1600));
	}
}

.popup__agree {
	font-size: 16px;
	line-height: 1.3;
	color: #939393;
}

.portfol-popup .popup__content {
	max-width: 1200px;
	padding: 0 60px 20px 60px;
	background: none;
}
@media (max-width: 1024px) {
	.portfol-popup .popup__content {
		padding: 0 0px 20px 0px;
	}
}
@media (max-width: 480px) {
	.portfol-popup .popup__content {
		padding: 50px 20px;
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		background: #fff;
	}
}
.portfol-popup .popup__content > p {
	font-weight: 600;
	font-size: 36px;
	margin: 20px 0px 0px 0px;
	text-align: center;
}
@media (max-width: 1919px) {
	.portfol-popup .popup__content > p {
		font-size: calc(16px + 20 * ((100vw - 320px) / 1600));
	}
}
.portfol-popup .popup__close {
	right: -10px;
	top: 0px;
}
.portfol-popup .popup__close::before {
	background: #e8ecef;
}
@media (max-width: 1024px) {
	.portfol-popup .popup__close {
		top: -70px;
		right: 0px;
	}
}
@media (max-width: 480px) {
	.portfol-popup .popup__close {
		top: 10px;
		right: 10px;
	}
}

.thanks-popup .popup__content {
	max-width: 600px;
	min-height: 500px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 480px) {
	.thanks-popup .popup__content {
		padding: 50px 20px;
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
		background: #d1d1d1;
	}
}
.thanks-popup .popup__close {
	right: -70px;
	top: 0px;
}
.thanks-popup .popup__close::before {
	background: #e8ecef;
}
@media (max-width: 1024px) {
	.thanks-popup .popup__close {
		top: -70px;
		right: 0px;
	}
}
@media (max-width: 480px) {
	.thanks-popup .popup__close {
		top: 10px;
		right: 10px;
	}
}
.thanks-popup .thanks-popup__bg {
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.thanks-popup .thanks-popup__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 480px) {
	.thanks-popup .thanks-popup__bg {
		padding: 100px 0px;
	}
}

.thanks-popup__main {
	height: 100%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	color: #303131;
	max-width: 70%;
}
.thanks-popup__main > *:not(:last-child) {
	margin: 0px 0px 50px 0px;
}
@media (max-width: 820px) {
	.thanks-popup__main {
		padding: 30px;
		max-width: 80%;
	}
}
@media (max-width: 480px) {
	.thanks-popup__main {
		max-width: 100%;
		padding: 0;
	}
}

.thanks-popup__logo {
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
	width: 230px;
}
.thanks-popup__logo img {
	width: 100%;
}
@media (max-width: 480px) {
	.thanks-popup__logo {
		width: 180px;
	}
}

.thanks-popup__title {
	font-weight: bold;
	font-size: 48px;
	letter-spacing: 0.01em;
}
@media (max-width: 1919px) {
	.thanks-popup__title {
		font-size: calc(32px + 16 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.thanks-popup__title {
		margin: 0px 0px 20px 0px !important;
	}
}

.thanks-popup__text {
	font-size: 24px;
	line-height: 1.4;
}
@media (max-width: 1919px) {
	.thanks-popup__text {
		font-size: calc(18px + 6 * ((100vw - 320px) / 1600));
	}
}

.popups {
	padding: 40px;
}
.popups > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
.popups p {
	font-size: 20px;
	line-height: 1.2;
}

.popups__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 20px;
}

.popcart-popup .popup__content {
	max-width: 590px;
	padding: 58px;
}
@media (max-width: 700px) {
	.popcart-popup .popup__content {
		padding: 30px;
	}
}
@media (max-width: 700px) {
	.popcart-popup .popup__title {
		text-align: center;
	}
}
.popcart-popup .cart-main {
	border-radius: 6px;
	border: solid 1px #a9a9a9;
	padding: 0;
}
@media (max-width: 700px) {
	.popcart-popup .cart-main {
		display: block;
	}
}
.popcart-popup .cart-main__line_head .cart-main__img {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
@media (max-width: 700px) {
	.popcart-popup .cart-main__line_head .cart-main__img {
		text-align: center;
	}
}
.popcart-popup .cart-main__line_prod {
	padding: 50px 0px;
}
@media (max-width: 700px) {
	.popcart-popup .cart-main__line_prod > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
.popcart-popup .cart-main__line:last-child {
	border: 0;
}
.popcart-popup .cart-main__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 120px;
	        flex: 0 0 120px;
}
@media (max-width: 700px) {
	.popcart-popup .cart-main__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 120px;
		padding: 0;
	}
}
.popcart-popup .cart-main__name {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.popcart-popup .cart-main__sum {
	font-size: 16px;
	color: #313132;
	font-weight: 500;
}
.popcart-popup .cart-main__sum span {
	color: #fe0000;
}

.popcart-popup__buttons {
	margin: 45px 0px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.popcart-popup__buttons .btn2 {
	padding: 0px 56px 0px 0px;
}
.popcart-popup__buttons .btn {
	height: 42px;
	font-size: 14px;
	padding: 0px 10px;
	letter-spacing: 0.07em;
}
.popcart-popup__buttons > *:not(:last-child) {
	margin: 0px 10px 0px 0px;
}
@media (max-width: 600px) {
	.popcart-popup__buttons > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 600px) {
	.popcart-popup__buttons {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin: 30px 0px 0px 0px;
	}
}

footer {
	padding: 60px 0px;
	background: #2d2d2e;
}

.footer__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0px 0px 40px 0px;
}

.footer__logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 192px;
	        flex: 0 0 192px;
}
.footer__logo img {
	width: 100%;
}
@media (max-width: 1024px) {
	.footer__logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 170px;
		        flex: 0 0 170px;
	}
}

.footer__top {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 52px;
	        flex: 0 0 52px;
	height: 52px;
	border-radius: 50%;
	background: #fff;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.footer__top::before {
	font-family: icomoon;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	color: #2d2d2e;
	-webkit-transform: translate(-50%, -50%) rotate(-90deg);
	    -ms-transform: translate(-50%, -50%) rotate(-90deg);
	        transform: translate(-50%, -50%) rotate(-90deg);
	font-size: 30px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.footer__top:hover {
		background: #fe0000;
	}
	.footer__top:hover::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.footer__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin: 0px 0px 45px 0px;
}
.footer__row > *:not(:last-child) {
	padding: 0px 20px 0px 0px;
}
@media (max-width: 760px) {
	.footer__row > *:not(:last-child) {
		margin: 0px 0px 40px 0px;
	}
}
@media (max-width: 480px) {
	.footer__row > *:not(:last-child) {
		padding: 0;
	}
}
@media (max-width: 1260px) {
	.footer__row {
		margin: 0px 0px 80px 0px;
	}
}
@media (max-width: 760px) {
	.footer__row {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}
@media (max-width: 480px) {
	.footer__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin: 0px 0px 20px 0px;
		display: none;
	}
}

.footer__row_mob {
	display: none;
}
@media (max-width: 480px) {
	.footer__row_mob {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.footer__row_mob .footer__col {
		margin: 0;
		padding: 20px 0px;
		border-top: 1px solid #5f6e75;
	}
	.footer__row_mob .footer__col .block__title, .footer__row_mob .footer__col > a {
		margin: 0;
		width: 100%;
		text-align: left;
		padding: 0px 20px;
	}
	.footer__row_mob .footer__col .block__title {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.footer__row_mob .footer__col .block__title::after {
		font-family: icomoon;
		content: "";
		font-size: 6px;
		color: #fff;
		margin: 0px 0px 0px 20px;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.footer__row_mob .footer__col .block__title._active::after {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		-ms-transform: rotate(-180deg);
		-webkit-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}
	.footer__row_mob .footer__col .block__text {
		margin: 10px 0px 0px 0px;
		padding: 0px 20px;
	}
}
@media (max-width: 480px) and (max-width: 480px) {
	.footer__row_mob .footer__col.footer__col_cont {
		padding: 60px 0px 50px 0px;
	}
}
.footer__col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 270px;
	        flex: 0 1 270px;
}
.footer__col > h4, .footer__col > a, .footer__col .block__title {
	font-family: Eurostile-Med;
	font-size: 24px;
	text-transform: uppercase;
	color: #fff;
	margin: 0px 0px 12px 0px;
	letter-spacing: 0.06em;
}
@media (max-width: 1919px) {
	.footer__col > h4, .footer__col > a, .footer__col .block__title {
		font-size: calc(18px + 6 * ((100vw - 320px) / 1600));
	}
}
.footer__col ul li a {
	font-size: 18px;
	line-height: 1.94;
	letter-spacing: 0.23px;
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.footer__col ul li a:hover {
		color: #fe0000;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 1919px) {
	.footer__col ul li a {
		font-size: calc(16px + 2 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 760px) {
	.footer__col {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 480px) {
	.footer__col {
		margin: 0px 0px 40px 0px;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.footer__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
@media (max-width: 480px) {
	.footer__block {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.footer__block > *:not(:last-child) {
		margin: 0px 20px 0px 0px;
	}
}

.footer__contactsbl > h4 {
	font-family: Eurostile-Med;
	font-size: 16px;
	line-height: 1.56;
	letter-spacing: 0.2px;
	text-align: left;
	color: #ebebeb;
}
@media (max-width: 1919px) {
	.footer__contactsbl > h4 {
		font-size: calc(16px + 0 * ((100vw - 320px) / 1600));
	}
}
.footer__contactsbl a {
	display: block;
	font-weight: 600;
	font-size: 17px;
	line-height: 1.53;
	letter-spacing: 0.21px;
	text-align: left;
	color: #fe0000;
}
@media (max-width: 1919px) {
	.footer__contactsbl a {
		font-size: calc(16px + 1 * ((100vw - 320px) / 1600));
	}
}

.footer__bot {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.footer__bot > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 340px;
	        flex: 0 1 340px;
}
@media (max-width: 760px) {
	.footer__bot > * {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}
.footer__bot > *:not(:last-child) {
	padding: 0px 20px 0px 0px;
}
@media (max-width: 760px) {
	.footer__bot > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 480px) {
	.footer__bot > *:not(:last-child) {
		padding: 0;
	}
}
@media (max-width: 760px) {
	.footer__bot {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		text-align: center;
	}
}

.footer__icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 10px;
}
.footer__icons > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50px;
	        flex: 0 0 50px;
	height: 50px;
	border: 1px solid #b6b5b5;
	border-radius: 8px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.footer__icons > a::before {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.footer__icons > a:hover {
		border: 1px solid #fe0000;
	}
	.footer__icons > a:hover::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		color: #fe0000;
	}
}
.footer__icons .icon-33::before {
	color: #b6b5b5;
	font-size: 22px;
}
.footer__icons .icon-37::before {
	color: #b6b5b5;
	font-size: 24px;
}
.footer__icons .icon-48::before {
	color: #b6b5b5;
	font-size: 24px;
}
.footer__icons .icon-19::before {
	color: #b6b5b5;
	font-size: 22px;
}
@media (max-width: 1260px) {
	.footer__icons {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}
@media (max-width: 760px) {
	.footer__icons {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}

.footer__map,
.footer__policy {
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: 0.23px;
	color: #b6b5b5;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.footer__map:hover,
.footer__policy:hover {
		color: #fe0000;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 1919px) {
	.footer__map,
.footer__policy {
		font-size: calc(16px + 2 * ((100vw - 320px) / 1600));
	}
}

.footer__addr {
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: 0.23px;
	text-align: right;
	color: #fff;
}
.footer__addr span {
	color: #b6b5b5;
}
.footer__addr span br {
	display: none;
}
@media (max-width: 480px) {
	.footer__addr span br {
		display: block;
	}
}
.footer__addr > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}
@media (max-width: 480px) {
	.footer__addr > *:not(:last-child) {
		margin: 0px 0px 8px 0px;
	}
}
@media (max-width: 1919px) {
	.footer__addr {
		font-size: calc(16px + 0 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 760px) {
	.footer__addr {
		text-align: center;
	}
}
@media (max-width: 480px) {
	.footer__addr {
		text-align: right;
	}
}

.footer__gisp img {
	max-width: 132px;
}
@media (max-width: 480px) {
	.footer__gisp {
		margin: 0px 0px 40px 0px !important;
	}
}

.footer__about-da,
.footer__blogcont-mob {
	display: none;
}
@media (max-width: 480px) {
	.footer__about-da,
.footer__blogcont-mob {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

input {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input::-webkit-input-placeholder {
	opacity: 1;
}

input::-moz-placeholder {
	opacity: 1;
}

input:-moz-placeholder {
	opacity: 1;
}

input:-ms-input-placeholder {
	opacity: 1;
}

input:focus::-webkit-input-placeholder {
	opacity: 0;
}

input:focus::-moz-placeholder {
	opacity: 0;
}

input:focus:-moz-placeholder {
	opacity: 0;
}

input:focus:-ms-input-placeholder {
	opacity: 0;
}

.input, textarea {
	width: 100%;
	height: 60px;
	padding: 10px 30px;
	border: 1px solid var(--blue);
	border-radius: 50px;
	font-size: 20px;
}
.input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #171717;
}
.input::-moz-placeholder, textarea::-moz-placeholder {
	color: #171717;
}
.input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #171717;
}
.input::-ms-input-placeholder, textarea::-ms-input-placeholder {
	color: #171717;
}
.input::placeholder, textarea::placeholder {
	color: #171717;
}
.input._form-error, textarea._form-error {
	border: 1px solid red;
}
@media (max-width: 480px) {
	.input, textarea {
		padding: 10px 20px;
	}
}

textarea {
	resize: none;
	height: 100px;
	border-radius: 30px;
}
@media (max-width: 480px) {
	textarea {
		border-radius: 20px;
	}
}

.form__item {
	width: 100%;
	position: relative;
}
.form__item .form__error {
	position: absolute;
	top: 50%;
	left: 20px;
	right: 20px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	background: #fff;
	color: red;
	font-size: 18px;
	pointer-events: none;
}
@media (max-width: 480px) {
	.form__item .form__error {
		font-size: 16px;
	}
}

.form-sent-msg {
	position: fixed;
	z-index: 5;
	top: -100px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	padding: 15px;
	background: #06CF27;
	border-radius: 50px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px 5px 32px 5px rgba(146, 146, 146, 0.5);
	box-shadow: 0px 5px 32px 5px rgba(146, 146, 146, 0.5);
}
.form-sent-msg p {
	color: #fff;
	font-size: 20px;
	text-align: center;
}
.form-sent-msg._active {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 20px;
}

.form__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header-search {
	position: relative;
	height: 40px;
	position: relative;
}
.header-search input {
	width: 160px;
	height: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-size: 14px;
	font-weight: 500;
}
.header-search input::-webkit-input-placeholder {
	color: #171717;
}
.header-search input::-moz-placeholder {
	color: #171717;
}
.header-search input:-ms-input-placeholder {
	color: #171717;
}
.header-search input::-ms-input-placeholder {
	color: #171717;
}
.header-search input::placeholder {
	color: #171717;
}
.header-search._form-focus input {
	width: 400px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.header-search._form-focus .header-search__icon {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background: #fe0000 url("../img/icons/10.svg") no-repeat;
	background-size: 20px;
	background-position: center;
}

.header-search__icon {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background: #171717 url("../img/icons/10.svg") no-repeat;
	background-size: 20px;
	background-position: center;
	-webkit-transform: scale(-1, 1);
	    -ms-transform: scale(-1, 1);
	        transform: scale(-1, 1);
}

.form-popup input,
.form-popup textarea {
	height: 64px;
	border: solid 1px #a9a9a9;
	font-size: 22px;
	line-height: 1.17;
	letter-spacing: 0.01em;
	text-align: left;
	color: #1d1d1d;
}
.form-popup input::-webkit-input-placeholder, .form-popup textarea::-webkit-input-placeholder {
	font-size: 22px;
	line-height: 1.17;
	letter-spacing: 0.01em;
	text-align: left;
	color: #1d1d1d;
}
.form-popup input::-moz-placeholder, .form-popup textarea::-moz-placeholder {
	font-size: 22px;
	line-height: 1.17;
	letter-spacing: 0.01em;
	text-align: left;
	color: #1d1d1d;
}
.form-popup input:-ms-input-placeholder, .form-popup textarea:-ms-input-placeholder {
	font-size: 22px;
	line-height: 1.17;
	letter-spacing: 0.01em;
	text-align: left;
	color: #1d1d1d;
}
.form-popup input::-ms-input-placeholder, .form-popup textarea::-ms-input-placeholder {
	font-size: 22px;
	line-height: 1.17;
	letter-spacing: 0.01em;
	text-align: left;
	color: #1d1d1d;
}
.form-popup input::placeholder,
.form-popup textarea::placeholder {
	font-size: 22px;
	line-height: 1.17;
	letter-spacing: 0.01em;
	text-align: left;
	color: #1d1d1d;
}
@media (max-width: 480px) {
	.form-popup input::-webkit-input-placeholder, .form-popup textarea::-webkit-input-placeholder {
		font-size: 16px;
	}
	.form-popup input::-moz-placeholder, .form-popup textarea::-moz-placeholder {
		font-size: 16px;
	}
	.form-popup input:-ms-input-placeholder, .form-popup textarea:-ms-input-placeholder {
		font-size: 16px;
	}
	.form-popup input::-ms-input-placeholder, .form-popup textarea::-ms-input-placeholder {
		font-size: 16px;
	}
	.form-popup input::placeholder,
.form-popup textarea::placeholder {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.form-popup input,
.form-popup textarea {
		height: 50px;
		font-size: 16px;
	}
}
.form-popup textarea {
	height: 200px;
	border-radius: 10px;
	padding: 20px 30px;
}
@media (max-width: 480px) {
	.form-popup textarea {
		height: 120px;
		padding: 20px;
	}
}
.form-popup > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.blockform-form {
	border: solid 2px #fff;
	border-radius: 22px;
	padding: 24px 45px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 590px;
	        flex: 0 0 590px;
}
.blockform-form input {
	font-size: 18px;
	height: 57px;
}
@media (max-width: 1024px) {
	.blockform-form input {
		height: 50px;
	}
}
@media (max-width: 480px) {
	.blockform-form input {
		height: 40px;
		font-size: 16px;
	}
}
.blockform-form .form__row .form__item_num {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 95px;
	        flex: 0 0 95px;
}
@media (max-width: 480px) {
	.blockform-form .form__row .form__item_num {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 60px;
		        flex: 0 0 60px;
	}
}
.blockform-form .form__row .select .select__title {
	height: 57px;
	border: 0;
	background: #fff;
	padding: 10px 46px 10px 20px;
	font-size: 16px;
}
@media (max-width: 1024px) {
	.blockform-form .form__row .select .select__title {
		height: 50px;
	}
}
@media (max-width: 480px) {
	.blockform-form .form__row .select .select__title {
		font-size: 14px;
		height: 40px;
		padding: 10px 36px 10px 20px;
	}
}
.blockform-form .form__row .select .select__options {
	padding: 15px;
}
.blockform-form .form__row .select .select__option {
	font-size: 18px;
}
@media (max-width: 480px) {
	.blockform-form .form__row .select .select__option {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.blockform-form .form__row .select::after {
		width: 20px;
		height: 20px;
	}
}
.blockform-form .form__row > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 480px) {
	.blockform-form .form__row > *:not(:last-child) {
		margin: 0px 10px 0px 0px;
	}
}
.blockform-form .btn2 {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
@media (max-width: 480px) {
	.blockform-form .btn2 {
		width: 100%;
	}
	.blockform-form .btn2 .btn {
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
	}
}
.blockform-form > *:not(:last-child) {
	margin-bottom: 20px;
}
@media (max-width: 1260px) {
	.blockform-form {
		padding: 30px 40px;
	}
}
@media (max-width: 1200px) {
	.blockform-form {
		padding: 30px;
	}
}
@media (max-width: 1024px) {
	.blockform-form {
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
		max-width: 600px;
		margin: 0 auto;
	}
}
@media (max-width: 480px) {
	.blockform-form {
		padding: 20px;
	}
}

.blockform__title {
	font-weight: 700;
	font-size: 48px;
	line-height: 1.1;
	letter-spacing: 0.1rem;
	color: #f6f6f6;
}
.blockform__title span {
	margin: 10px 0px 0px 0px;
	display: block;
	font-family: Eurostile-Med;
	font-size: 24px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: 0.84px;
	text-align: left;
}
@media (max-width: 1919px) {
	.blockform__title {
		font-size: calc(30px + -2 * ((100vw - 320px) / 1600));
	}
	.blockform__title span {
		font-size: calc(16px + 8 * ((100vw - 320px) / 1600));
	}
}

.blockform-form__block {
	border-radius: 12px;
	border: solid 1.5px #dde0e2;
	padding: 20px 30px 10px 30px;
}
.blockform-form__block ul {
	margin: 0px 0px 20px 0px;
}
.blockform-form__block ul > *:not(:last-child) {
	margin-bottom: 20px;
}
@media (max-width: 480px) {
	.blockform-form__block ul {
		margin-top: 30px;
	}
}
.blockform-form__block li {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 19px;
	line-height: 1.2;
	letter-spacing: 0.054rem;
	color: #f6f6f6;
	position: relative;
	padding: 0px 0px 0px 40px;
}
.blockform-form__block li::before {
	content: "";
	position: absolute;
	top: -2px;
	left: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #dee1e3 url("../img/icons/22-1.svg") no-repeat;
	background-size: contain;
	background-position: center;
}
@media (max-width: 480px) {
	.blockform-form__block li::before {
		width: 20px;
		height: 20px;
		top: 0;
	}
}
@media (max-width: 1919px) {
	.blockform-form__block li {
		font-size: calc(16px + 8 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.blockform-form__block li {
		padding: 0px 0px 0px 34px;
	}
}
@media (max-width: 480px) {
	.blockform-form__block {
		padding: 0;
		border: 0;
	}
}

.blockform-del h4 {
	font-family: Eurostile-Med;
	font-size: 14px;
	line-height: 1.36;
	letter-spacing: 0.05em;
	color: #f6f6f6;
	margin: 0px 0px 10px 0px;
}
.blockform-del p, .blockform-del a {
	font-family: Eurostile-Med;
	font-size: 10px;
	line-height: 1.47;
	letter-spacing: 0.02em;
	text-align: left;
	color: #f6f6f6;
}
.blockform-del a {
	font-size: 16px;
}

.blockform-del__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.blockform-del__row > *:not(:last-child) {
	padding: 0px 30px 0px 0px;
}
@media (max-width: 1260px) {
	.blockform-del__row > *:not(:last-child) {
		padding: 0px 10px 0px 0px;
	}
}
@media (max-width: 600px) {
	.blockform-del__row > *:not(:last-child) {
		margin: 0px 0px 5px 0px;
	}
}
@media (max-width: 600px) {
	.blockform-del__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.blockform-del__col {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
}
@media (max-width: 1024px) {
	.blockform-del__col {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 200px;
		        flex: 0 1 200px;
	}
}
@media (max-width: 600px) {
	.blockform-del__col {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.blockform-form__agree {
	font-size: 14px;
	line-height: 1.21;
	letter-spacing: 0.035em;
	text-align: left;
	color: #d0d0d0;
}
@media (max-width: 480px) {
	.blockform-form__agree {
		font-size: 12px;
	}
}

.order-form h3 {
	font-weight: 800;
	font-size: 36px;
	line-height: 1;
	letter-spacing: 0.03em;
	text-align: left;
	color: #313132;
	margin: 0px 0px 30px 0px;
}
.order-form input {
	border: solid 1.5px #a9afb4;
	height: 50px;
	font-size: 16px;
}
.order-form input::-webkit-input-placeholder {
	font-size: 16px;
}
.order-form input::-moz-placeholder {
	font-size: 16px;
}
.order-form input:-ms-input-placeholder {
	font-size: 16px;
}
.order-form input::-ms-input-placeholder {
	font-size: 16px;
}
.order-form input::placeholder {
	font-size: 16px;
}
.order-form textarea {
	border-radius: 12px;
	height: 200px;
	border: solid 1.5px #a9afb4;
	font-size: 16px;
}
.order-form textarea::-webkit-input-placeholder {
	font-size: 16px;
}
.order-form textarea::-moz-placeholder {
	font-size: 16px;
}
.order-form textarea:-ms-input-placeholder {
	font-size: 16px;
}
.order-form textarea::-ms-input-placeholder {
	font-size: 16px;
}
.order-form textarea::placeholder {
	font-size: 16px;
}

.order-form__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.order-form__row > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 1024px) {
	.order-form__row > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 1024px) {
	.order-form__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.order-form__left,
.order-form__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
	background: #fff;
	padding: 40px;
	border-radius: 12px;
}
@media (max-width: 480px) {
	.order-form__left,
.order-form__right {
		padding: 30px 20px;
	}
}

.order-form__left > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}

.order-form-block__line {
	border-bottom: 1px solid #313132;
	padding: 20px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-family: Eurostile-Med;
	font-size: 16px;
	line-height: 1.29;
	letter-spacing: 0.01em;
	text-align: left;
	color: #313132;
}
.order-form-block__line h4 {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0.05em;
	color: #313132;
}
.order-form-block__line:first-child {
	padding-top: 0;
}
.order-form-block__line > *:not(:last-child) {
	margin: 0px 50px 0px 0px;
}
@media (max-width: 1024px) {
	.order-form-block__line > *:not(:last-child) {
		margin: 0px 30px 0px 0px;
	}
}
@media (max-width: 480px) {
	.order-form-block__line > *:not(:last-child) {
		margin: 0px 20px 0px 0px;
	}
}

@media (max-width: 480px) {
	.order-form-block__line_i {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.order-form-block__line_i > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}

.order-form-block__img img {
	width: 100px;
	max-width: 100%;
	min-width: 50px;
}
@media (max-width: 1024px) {
	.order-form-block__img img {
		width: 80px;
	}
}

.order-form-block__name span {
	display: block;
}

.order-form-block__price {
	color: #fe0000;
}

.checkbox {
	position: relative;
}
.checkbox:not(:last-child) {
	margin-bottom: em(5);
}
.checkbox__input {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
}
.checkbox__input:checked + .checkbox__label:before {
	background: #000;
	background: #fff url("../img/icons/check.svg") no-repeat;
	background-size: 22px;
	background-position: center;
}
.checkbox__label {
	cursor: pointer;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	gap: 10px;
}
.checkbox__label:before {
	content: "";
	-ms-flex-item-align: start;
	    align-self: flex-start;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 20px;
	        flex: 0 0 20px;
	width: 20px;
	height: 20px;
	background: #fff;
	border: 1px solid #fe0000;
	border-radius: 4px;
}
.checkbox__label span {
	font-size: 18px;
}
@media (max-width: 480px) {
	.checkbox__label span {
		font-size: 16px;
	}
}
.checkbox a {
	color: #000;
	text-decoration: underline;
}
@media (min-width: 1024px) {
	.checkbox a:hover {
		text-decoration: none;
	}
}

.quantity {
	width: 94px;
	height: 39px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border: 2px solid #171717;
	border-radius: 50px;
	padding: 0px 3px;
}
.quantity__button {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 30px;
	        flex: 0 0 30px;
	position: relative;
	cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
	content: "";
	position: absolute;
	top: 47%;
	left: 50%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	margin: 0px 0px 0px -4.5px;
	background-color: #171717;
	width: 12px;
	height: 2px;
}
.quantity__button_plus::before {
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
}
.quantity__input {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.quantity__input input {
	background: none;
	height: 100%;
	font-weight: bold;
	font-size: 20px;
	color: #313132;
	width: 100%;
	text-align: center;
	position: relative;
	top: -2px;
}
@media (max-width: 480px) {
	.quantity {
		height: 38px;
	}
}

.options {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.options__item {
	position: relative;
	cursor: pointer;
}
.options__item:not(:last-child) {
	margin-bottom: 2px;
}
.options__input {
	width: 0;
	height: 0;
	opacity: 0;
	position: absolute;
}
.options__input:checked + .options__label:after {
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}
.options__label {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	cursor: pointer;
	gap: 18px;
}
.options__label:before {
	content: "";
	-ms-flex-item-align: start;
	    align-self: flex-start;
	width: 20px;
	height: 20px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 20px;
	        flex: 0 0 20px;
	border-radius: 50%;
	border: 1px solid #313132;
}
.options__label:after {
	content: "";
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #313132;
	position: absolute;
	left: 5px;
	top: 5px;
}
.options > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
.options p {
	color: #b6b6b6;
}

.select {
	position: relative;
}
.select__body {
	position: relative;
}
.select__title {
	color: inherit;
	text-align: left;
	border: 2px solid #313132;
	cursor: pointer;
	width: 100%;
	border-radius: 100px;
	height: 50px;
	font-weight: 500;
	font-size: 17px;
	text-transform: uppercase;
	color: #313132;
	height: 64px;
	padding: 10px 50px;
	white-space: nowrap;
	position: relative;
}
.select__value:after {
	content: "";
	-ms-flex-item-align: stretch;
	    align-self: stretch;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 10px;
	        flex: 0 0 10px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
._select-open .select__value:after {
	-webkit-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}
.select__value._select-pseudo-label::before {
	content: attr(data-pseudo-label);
	opacity: 0.5;
}
.select__text {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.select__input {
	width: 100%;
	background-color: transparent;
	height: 100%;
}
.select__options {
	color: #000;
	position: absolute;
	z-index: 1;
	top: 70px;
	border-radius: 16px;
	min-width: 100%;
	left: 0;
	background-color: #fff;
	border-top: 0;
	border-top: 0;
	padding: 10px 0px 5px 0px;
	overflow: hidden;
	-webkit-box-shadow: 0px 3px 7px 0 rgba(172, 169, 169, 0.35);
	        box-shadow: 0px 3px 7px 0 rgba(172, 169, 169, 0.35);
}
.select__scroll {
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 200px;
}
.select__option {
	width: 100%;
	display: block;
	text-align: left;
	cursor: pointer;
	color: inherit;
	background: none;
	font-family: Eurostile-Med;
	font-size: 18px;
	line-height: 1.94;
	color: #313132;
	position: relative;
}
@media (max-width: 820px) {
	.select__option {
		font-size: 16px;
	}
}
@media (any-hover: hover) {
	.select__option:hover {
		background: #EDEDED;
	}
}
.select__row {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.select._select-open::after {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-transform: translate(0, -50%) rotate(-180deg);
	    -ms-transform: translate(0, -50%) rotate(-180deg);
	        transform: translate(0, -50%) rotate(-180deg);
}
.select::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 30px;
	height: 30px;
	background: url("../img/icons/26.svg") no-repeat;
	background-size: contain;
	background-position: center;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	pointer-events: none;
}

.showmore._active .showmore__trigger span:nth-child(1) {
	display: none;
}
.showmore._active .showmore__trigger span:nth-child(2) {
	display: block;
}
.showmore._inactive .showmore__trigger {
	display: none;
}

.showmore__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.showmore__trigger {
	margin: 5px 0px 0px 0px;
	font-weight: 700;
	font-size: 16px;
	color: var(--black);
	width: 100%;
	text-align: right;
	color: #7c0000;
}
.showmore__trigger span {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.showmore__trigger span:nth-child(1)::after {
	font-family: icomoon;
	content: "";
	margin: 0px 0px 0px 5px;
}
.showmore__trigger span:nth-child(2) {
	display: none;
}
@media (max-width: 480px) {
	.showmore__trigger {
		font-size: 14px;
	}
}

.swiper {
	overflow: hidden;
	position: relative;
}

.swiper-wrapper {
	width: 100%;
	height: 100%;
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

.swiper-vertical .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.swiper-initialized .swiper-slide {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
	-webkit-transform: translate3d(0px, 0, 0);
	        transform: translate3d(0px, 0, 0);
}

.swiper-button-lock,
.swiper-pagination-lock {
	display: none !important;
}

.swiper-pagination-bullets {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 0px 20px;
}

.swiper-pagination-bullet {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 10px;
	        flex: 0 0 10px;
	height: 10px;
	background: #969696;
	border-radius: 50%;
	margin: 0px 10px 0px 0px;
}
.swiper-pagination-bullet:last-child {
	margin: 0;
}

.swiper-pagination-bullet-active {
	background: #292929;
}

.slider-controls {
	position: absolute;
	top: 70px;
	left: calc(50% - 65px);
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 107px;
	height: 42px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #fe0000;
	border-radius: 50px;
}
.slider-controls .button-prev {
	width: 50px;
	height: 50px;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.slider-controls .button-prev::before {
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	font-family: icomoon;
	content: "";
	font-size: 9px;
	color: #fff;
}
.slider-controls .button-next {
	width: 50px;
	height: 50px;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.slider-controls .button-next::before {
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	font-family: icomoon;
	content: "";
	font-size: 9px;
	color: #fff;
}
.slider-controls .button-prev,
.slider-controls .button-next {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 1270px) {
	.slider-controls {
		top: unset;
		left: 50%;
		bottom: 404px;
	}
}
@media (max-width: 820px) {
	.slider-controls {
		bottom: 408px;
	}
}
@media (max-width: 480px) {
	.slider-controls {
		bottom: 225px;
		width: 100px;
		height: 40px;
	}
}

.button-prev {
	position: absolute;
	top: 50%;
	left: 20px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	cursor: pointer;
}

.button-next {
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	cursor: pointer;
}

.hero-slider {
	position: relative;
}
.hero-slider .swiper-slide {
	pointer-events: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100% !important;
	position: relative;
}
.hero-slider .swiper-slide.swiper-slide-active {
	pointer-events: auto;
}
.hero-slider .swiper-slide.swiper-slide-active .hero-slider__img {
	right: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.1s;
	-o-transition: all 0.5s ease 0.1s;
	transition: all 0.5s ease 0.1s;
}
@media (max-width: 480px) {
	.hero-slider .swiper-slide.swiper-slide-active .hero-slider__img {
		right: -60px;
		-webkit-transform: scale(1.2);
		    -ms-transform: scale(1.2);
		        transform: scale(1.2);
	}
}
.hero-slider .swiper-slide.swiper-slide-active .hero-slider__block {
	left: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.2s;
	-o-transition: all 0.5s ease 0.2s;
	transition: all 0.5s ease 0.2s;
}
@media (max-width: 760px) {
	.hero-slider .swiper-slide {
		min-height: 450px;
	}
}
.hero-slider .swiper-pagination-bullets {
	margin: 0;
	width: auto;
	height: 400px;
	position: absolute;
	top: 40%;
	right: 0px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 10px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media (max-width: 1024px) {
	.hero-slider .swiper-pagination-bullets {
		height: 300px;
	}
}
@media (max-width: 760px) {
	.hero-slider .swiper-pagination-bullets {
		display: none;
	}
}
.hero-slider .swiper-pagination-bullet {
	background: none;
	border: 2px solid #fff;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 77px;
	        flex: 0 0 77px;
	height: 77px;
	width: 55px;
	border-radius: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	margin: 0;
}
@media (max-width: 1024px) {
	.hero-slider .swiper-pagination-bullet {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 70px;
		        flex: 0 0 70px;
		height: 70px;
		width: 50px;
	}
}
.hero-slider .swiper-pagination-bullet-active {
	background: none;
	background: #fff;
	color: #1d1d1d;
}
@media (max-width: 480px) {
	.hero-slider {
		margin: 0px -20px;
	}
}

.hero-slider__img {
	max-width: 70%;
	position: relative;
	right: -200px;
	opacity: 0;
	visibility: hidden;
}
.hero-slider__img img {
	width: 100%;
}
@media (max-width: 480px) {
	.hero-slider__img {
		max-width: 100%;
	}
}

.hero-slider__block {
	position: absolute;
	left: -200px;
	opacity: 0;
	height: 100%;
	visibility: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
@media (max-width: 760px) {
	.hero-slider__block {
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		width: 100%;
	}
}
@media (max-width: 480px) {
	.hero-slider__block {
		padding: 0px 15px;
	}
}

.hero-slider__text {
	font-size: 36px;
	line-height: 1.11;
	letter-spacing: 0.9px;
	color: #fff;
	max-width: 360px;
	margin: 0px 0px 10px 0px;
}
@media (max-width: 1919px) {
	.hero-slider__text {
		font-size: calc(28px + 8 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 760px) {
	.hero-slider__text {
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
		max-width: 100%;
		text-align: center;
	}
}

.hero-slider__title {
	font-weight: 800;
	font-size: 136px;
	letter-spacing: 2.6px;
	color: #fff;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1919px) {
	.hero-slider__title {
		font-size: calc(100px + 36 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 760px) {
	.hero-slider__title {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.hero-slider__btn {
	position: absolute;
	bottom: 40px;
	left: 0;
}
@media (max-width: 760px) {
	.hero-slider__btn {
		position: relative;
		bottom: unset;
	}
}

.block-slider {
	padding: 60px 0px 0px 0px;
	position: relative;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.block-slider._watcher-view .block-slider__left {
	opacity: 1;
	visibility: visible;
	left: 0px;
	-webkit-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}
.block-slider._watcher-view .block-slider__right {
	opacity: 1;
	visibility: visible;
	right: 0px;
	-webkit-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}
.block-slider .block-slider__container {
	margin: 0px -130px 0px 0px;
}
@media (max-width: 1270px) {
	.block-slider .block-slider__container {
		margin: 0;
	}
}
.block-slider .swiper-slide {
	pointer-events: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 1270px) {
	.block-slider .swiper-slide {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.block-slider .swiper-slide-prev .block-slider__content {
	left: -200px;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.block-slider .swiper-slide-prev .block-slider__img {
	right: -200px;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.block-slider .swiper-slide-active {
	pointer-events: auto;
}
.block-slider .swiper-slide-active .block-slider__content {
	left: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}
.block-slider .swiper-slide-active .block-slider__img {
	right: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}
.block-slider .swiper-slide-next .block-slider__content {
	left: -200px;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.block-slider .swiper-slide-next .block-slider__img {
	right: -200px;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
@media (max-width: 1270px) {
	.block-slider {
		padding: 60px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	.block-slider {
		padding: 50px 0px 0px 0px;
	}
}

.block-slider__left {
	position: relative;
	left: -200px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	-ms-flex: 0 1 600px;
	    flex: 0 1 600px;
	padding: 0px 100px 0px 0;
}
@media (max-width: 1260px) {
	.block-slider__left {
		padding: 0px 100px 0px 30px;
	}
}
@media (max-width: 1270px) {
	.block-slider__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		padding: 0;
	}
}

.block-slider__content {
	height: 100%;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	padding: 10px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media (max-width: 1270px) {
	.block-slider__content {
		margin: 0px 0px 90px 0px;
	}
}
@media (max-width: 480px) {
	.block-slider__content {
		padding: 0;
	}
}

.block-slider__title {
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.05rem;
	font-size: 36px;
	margin: 0px 0px 20px 0px;
}
.block-slider__title span {
	text-transform: uppercase;
	display: block;
	font-size: 60px;
	color: #fe0000;
}
.block-slider__title span b {
	color: #323334;
}
@media (max-width: 1919px) {
	.block-slider__title {
		font-size: calc(24px + 12 * ((100vw - 320px) / 1600));
	}
	.block-slider__title span {
		font-size: calc(42px + 18 * ((100vw - 320px) / 1600));
	}
}

.block-slider__title_sm span {
	font-size: 50px;
}
@media (max-width: 1919px) {
	.block-slider__title_sm span {
		font-size: calc(30px + 20 * ((100vw - 320px) / 1600));
	}
}
.block-slider__title_sm span b {
	color: #323334;
}

.block-slider__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.block-slider__block > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 480px) {
	.block-slider__block > *:not(:last-child) {
		margin: 0px 0px 10px 0px;
	}
}
@media (max-width: 480px) {
	.block-slider__block {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.block-slider__sub {
	margin: 0px 60px 0px 0px;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.75px;
	text-align: left;
	color: #313132;
	text-transform: uppercase;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 200px;
	        flex: 0 1 200px;
}
.block-slider__sub span {
	color: #fe0000;
}
@media (max-width: 1919px) {
	.block-slider__sub {
		font-size: calc(16px + 4 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.block-slider__sub {
		margin: 0px 30px 0px 0px;
	}
}
@media (max-width: 480px) {
	.block-slider__sub {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px 0px 20px 0px;
	}
}

.block-slider__text {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.22;
	letter-spacing: 0.45px;
	text-align: left;
	color: #313132;
}
.block-slider__text span {
	font-weight: 700;
}
.block-slider__text > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}

.block-slider__more {
	margin: 30px 0px 0px 0px;
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
	font-size: 16px;
	font-weight: 600;
	text-decoration: underline;
	line-height: 1.11;
	letter-spacing: 0.45px;
	text-align: left;
	color: #7c0000;
}
@media (min-width: 1024px) {
	.block-slider__more:hover {
		text-decoration: none;
	}
}
@media (max-width: 820px) {
	.block-slider__more {
		-ms-flex-item-align: center;
		    -ms-grid-row-align: center;
		    align-self: center;
	}
}

.block-slider__right {
	position: relative;
	right: -200px;
	opacity: 0;
	height: 370px;
	visibility: hidden;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 718px;
	        flex: 0 1 718px;
}
@media (max-width: 1270px) {
	.block-slider__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 370px;
		        flex: 0 0 370px;
	}
}
@media (max-width: 820px) {
	.block-slider__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 380px;
		        flex: 0 0 380px;
	}
}
@media (max-width: 480px) {
	.block-slider__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 200px;
		        flex: 0 0 200px;
	}
}

.block-slider__img {
	position: absolute;
	width: 100%;
	height: 370px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.block-slider__img img {
	border-radius: 16px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 1270px) {
	.block-slider__img img {
		border-radius: 16px;
	}
}
@media (max-width: 820px) {
	.block-slider__img {
		height: 380px;
	}
}
@media (max-width: 480px) {
	.block-slider__img {
		height: 200px;
	}
}

.block-slider_rev .block-slider__container {
	margin: 0px 0 0px -130px;
}
@media (max-width: 1270px) {
	.block-slider_rev .block-slider__container {
		margin: 0;
	}
}
.block-slider_rev._watcher-view .block-slider__left {
	right: 0px;
	left: unset;
	-webkit-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}
.block-slider_rev._watcher-view .block-slider__right {
	left: 0px;
	right: unset;
	-webkit-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}
.block-slider_rev .swiper-slide {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}
@media (max-width: 1270px) {
	.block-slider_rev .swiper-slide {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.block-slider_rev .slider-controls {
	left: calc(50% + 65px);
}
.block-slider_rev .swiper-slide-prev .block-slider__content {
	right: -200px;
	left: unset;
}
.block-slider_rev .swiper-slide-prev .block-slider__img {
	left: -200px;
	right: unset;
}
.block-slider_rev .swiper-slide-active .block-slider__content {
	left: unset;
	right: 0;
}
.block-slider_rev .swiper-slide-active .block-slider__img {
	right: unset;
	left: 0;
}
.block-slider_rev .swiper-slide-next .block-slider__content {
	right: -200px;
	left: unset;
}
.block-slider_rev .swiper-slide-next .block-slider__img {
	left: -200px;
	right: unset;
}
.block-slider_rev .block-slider__left {
	padding: 0px 0 0px 100px;
	right: -200px;
	left: unset;
}
@media (max-width: 1260px) {
	.block-slider_rev .block-slider__left {
		padding: 0px 30px 0px 100px;
	}
}
@media (max-width: 1270px) {
	.block-slider_rev .block-slider__left {
		padding: 0;
	}
}
.block-slider_rev .block-slider__img img {
	border-radius: 16px;
}
@media (max-width: 1270px) {
	.block-slider_rev .block-slider__img img {
		border-radius: 16px;
	}
}
.block-slider_rev .block-slider__right {
	left: -200px;
	right: unset;
}

.portfolio-slider {
	position: relative;
}
.portfolio-slider._watcher-view .swiper-slide {
	opacity: 1;
	visibility: visible;
	right: 0;
}
.portfolio-slider._watcher-view .swiper-slide:nth-child(1) {
	-webkit-transition: all 0.5s ease 0.7s;
	-o-transition: all 0.5s ease 0.7s;
	transition: all 0.5s ease 0.7s;
}
.portfolio-slider._watcher-view .swiper-slide:nth-child(2) {
	-webkit-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}
.portfolio-slider._watcher-view .swiper-slide:nth-child(3) {
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}
.portfolio-slider .swiper-wrapper {
	padding: 150px 0px 0px 0px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media (max-width: 1270px) {
	.portfolio-slider .swiper-wrapper {
		padding: 0;
	}
}
@media (max-width: 600px) {
	.portfolio-slider .swiper-wrapper {
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
		margin: 0;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
}
.portfolio-slider .swiper-slide {
	position: relative;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
	padding: 18px;
	opacity: 0;
	visibility: hidden;
	right: -200px;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.portfolio-slider .swiper-slide:nth-child(2) {
	top: -80px;
}
@media (max-width: 1270px) {
	.portfolio-slider .swiper-slide:nth-child(2) {
		top: 0;
	}
}
.portfolio-slider .swiper-slide:nth-child(3) {
	top: -160px;
}
@media (max-width: 1270px) {
	.portfolio-slider .swiper-slide:nth-child(3) {
		top: 0;
	}
}
@media (max-width: 820px) {
	.portfolio-slider .swiper-slide {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 600px) {
	.portfolio-slider .swiper-slide {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		padding: 0;
	}
}
.portfolio-slider .slider-controls {
	margin: 20px 0px 0px 0px;
	width: 120px;
	display: none;
	position: relative;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	background: none;
}
.portfolio-slider .slider-controls .button-prev {
	width: 60px;
	height: 50px;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.portfolio-slider .slider-controls .button-prev::before {
	-ms-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	font-family: icomoon;
	content: "";
	font-size: 40px;
	color: #fff;
}
.portfolio-slider .slider-controls .button-next {
	width: 60px;
	height: 50px;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.portfolio-slider .slider-controls .button-next::before {
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	font-family: icomoon;
	content: "";
	font-size: 40px;
	color: #fff;
}
@media (max-width: 600px) {
	.portfolio-slider .slider-controls {
		display: block;
	}
}

.news-slider {
	position: relative;
	margin: -190px 0px 0px 0px;
}
.news-slider._watcher-view .news-slider__item {
	opacity: 1;
	visibility: visible;
}
.news-slider._watcher-view .news-slider__item:nth-child(1) {
	right: 0;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}
.news-slider._watcher-view .news-slider__item:nth-child(2) {
	right: 0;
	-webkit-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}
.news-slider._watcher-view .news-slider__item:nth-child(3) {
	right: 0;
	-webkit-transition: all 0.5s ease 1s;
	-o-transition: all 0.5s ease 1s;
	transition: all 0.5s ease 1s;
}
.news-slider .swiper-wrapper {
	padding: 200px 0px 0px 0px;
}
@media (max-width: 1024px) {
	.news-slider .swiper-wrapper {
		padding: 0;
	}
}
@media (max-width: 1024px) {
	.news-slider {
		margin: 0;
	}
}

.news-slider__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -25px;
}
@media (max-width: 1024px) {
	.news-slider__row {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}
@media (max-width: 480px) {
	.news-slider__row {
		margin: -5px;
	}
}

.news-slider__item {
	position: relative;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 25px;
	opacity: 0;
	visibility: hidden;
}
.news-slider__item:nth-child(1) {
	right: -200px;
}
.news-slider__item:nth-child(2) {
	right: -200px;
	top: -190px;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.news-slider__item:nth-child(2) .news-slider__block {
	background: #fe0000;
	border-radius: 16px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 230px;
	        flex: 0 0 230px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: column-reverse;
	        flex-direction: column-reverse;
}
@media (max-width: 1024px) {
	.news-slider__item:nth-child(2) .news-slider__block {
		background: none;
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
	}
}
.news-slider__item:nth-child(2) .news-slider__arrow {
	width: 100px;
}
@media (max-width: 480px) {
	.news-slider__item:nth-child(2) .news-slider__arrow {
		width: 80px;
	}
}
.news-slider__item:nth-child(2) .news-slider__text {
	background: none;
	color: #fff;
}
@media (max-width: 1024px) {
	.news-slider__item:nth-child(2) .news-slider__text {
		color: #313132;
		background: #f5f5f5;
	}
}
@media (max-width: 1024px) {
	.news-slider__item:nth-child(2) {
		top: 0;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
}
.news-slider__item:nth-child(3) {
	right: -200px;
	margin: -140px 0px 0px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 60%;
	        flex: 0 0 60%;
}
.news-slider__item:nth-child(3) .news-slider__block {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: column-reverse;
	        flex-direction: column-reverse;
}
@media (max-width: 1024px) {
	.news-slider__item:nth-child(3) .news-slider__block {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media (max-width: 1024px) {
	.news-slider__item:nth-child(3) {
		margin: 0;
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}
@media (max-width: 1024px) {
	.news-slider__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}
@media (max-width: 480px) {
	.news-slider__item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 5px;
	}
}
@media (min-width: 1024px) {
	.news-slider__item:hover .news-slider__img img {
		-webkit-transform: scale(1.1);
		    -ms-transform: scale(1.1);
		        transform: scale(1.1);
		-webkit-transition: all 0.5s ease 0s;
		-o-transition: all 0.5s ease 0s;
		transition: all 0.5s ease 0s;
	}
}

.news-slider__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 290px;
	        flex: 0 0 290px;
	min-height: 290px;
	margin: 0px 3px 0px 0px;
	border-radius: 16px;
	overflow: hidden;
}
.news-slider__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	border-radius: 16px;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
@media (max-width: 1919px) {
	.news-slider__img {
		-ms-flex-preferred-size: calc(150px + 140 * ((100vw - 320px) / 1600));
		    flex-basis: calc(150px + 140 * ((100vw - 320px) / 1600));
		min-height: calc(150px + 140 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.news-slider__img {
		min-height: auto;
		height: 180px;
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 180px;
		        flex: 0 0 180px;
		border-radius: 12px;
	}
}

.news-slider__block {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.news-slider__text {
	background: #f5f5f5;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	border-radius: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 30px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.25px;
	color: #313132;
}
@media (max-width: 1919px) {
	.news-slider__text {
		font-size: calc(16px + 4 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1260px) {
	.news-slider__text {
		padding: 20px;
	}
}
@media (max-width: 480px) {
	.news-slider__text {
		font-size: 20px;
		padding: 40px;
	}
}

.news-slider__arrow {
	width: 140px;
	height: 140px;
	background: #fe0000;
	border-radius: 12px;
	position: relative;
}
.news-slider__arrow::before {
	font-family: icomoon;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	color: #fff;
	font-size: 40px;
}
@media (max-width: 1260px) {
	.news-slider__arrow {
		width: 100px;
		height: 100px;
	}
}
@media (max-width: 480px) {
	.news-slider__arrow {
		position: absolute;
		right: 8px;
		top: 105px;
		width: 80px;
		height: 80px;
	}
}

.hits-slider {
	position: relative;
}
@media (max-width: 480px) {
	.hits-slider .swiper-wrapper {
		display: block;
	}
	.hits-slider .swiper-wrapper > *:not(:last-child) {
		margin: 0px 0px 30px 0px;
	}
}
.hits-slider .hot-item__com {
	display: none;
}
.hits-slider .hot-item__label {
	position: relative;
	bottom: 0;
}
.hits-slider .hits-slider__item {
	padding: 36px;
	position: relative;
	z-index: 1;
	border-radius: 16px;
	height: 100%;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
	overflow: hidden;
}
@media (max-width: 1024px) {
	.hits-slider .hits-slider__item:nth-child(1) {
		margin-right: 30px;
		border-radius: 0 16px 16px 0;
	}
	.hits-slider .hits-slider__item:nth-child(2) {
		margin-left: 30px;
		border-radius: 16px 0 0 16px;
	}
}
@media (max-width: 480px) {
	.hits-slider .hits-slider__item {
		padding: 20px;
	}
}
.hits-slider .hot-item__block > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
@media (max-width: 480px) {
	.hits-slider .hot-item__name {
		-webkit-box-ordinal-group: 1;
		    -ms-flex-order: 0;
		        order: 0;
	}
}
.hits-slider .hot-item__btn {
	margin: 0px !important;
}
.hits-slider .slider-controls {
	margin: 20px 0px 0px 0px;
	width: 120px;
	position: relative;
	bottom: 0;
	left: 50%;
	top: 0;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	background: none;
}
.hits-slider .slider-controls .button-prev {
	width: 60px;
	height: 50px;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.hits-slider .slider-controls .button-prev::before {
	-ms-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	font-family: icomoon;
	content: "";
	font-size: 40px;
	color: #b9b8b8;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.hits-slider .slider-controls .button-prev:hover::before {
		color: red;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
.hits-slider .slider-controls .button-next {
	width: 60px;
	height: 50px;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.hits-slider .slider-controls .button-next::before {
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	font-family: icomoon;
	content: "";
	font-size: 40px;
	color: #b9b8b8;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.hits-slider .slider-controls .button-next:hover::before {
		color: red;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 480px) {
	.hits-slider .slider-controls {
		display: none;
	}
}
@media (max-width: 1024px) {
	.hits-slider {
		margin: 0px -30px;
	}
}
@media (max-width: 480px) {
	.hits-slider {
		margin: 0px -20px;
	}
}

.hits-slider__img {
	position: absolute;
	z-index: -1;
	top: 55%;
	right: -8%;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 90%;
	height: 90%;
}
.hits-slider__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}

.hits-slider__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin: 0px 0px 30px 0px;
}

@media (max-width: 480px) {
	.hits-slider__block_1 {
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
	}
}

.hits-slider__block2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 30px 0px 0px 0px;
}
.hits-slider__block2 .btn {
	margin: 0px 20px 0px 0px !important;
}
@media (max-width: 480px) {
	.hits-slider__block2 {
		margin: 0;
	}
}

.hits-slider__group {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.hits-slider__group > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 1024px) {
	.hits-slider__group > *:not(:last-child) {
		margin: 0px 0px 30px 0px;
	}
}
@media (max-width: 1024px) {
	.hits-slider__group {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

@media (max-width: 480px) {
	.hot-item__btn_hid {
		display: none;
	}
}

.hot-item__btn1 {
	display: none;
}
@media (max-width: 480px) {
	.hot-item__btn1 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

.clients-slider {
	min-width: 0;
	position: relative;
	opacity: 0;
	visibility: hidden;
	right: -200px;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}
.clients-slider._watcher-view {
	right: 0;
	opacity: 1;
	visibility: visible;
}

.blog-slider {
	position: relative;
}
.blog-slider .button-prev {
	position: absolute;
	top: 50%;
	left: -70px;
	-webkit-transform: translate(0, -50%) rotate(-180deg);
	    -ms-transform: translate(0, -50%) rotate(-180deg);
	        transform: translate(0, -50%) rotate(-180deg);
	cursor: pointer;
	width: 40px;
	height: 40px;
}
.blog-slider .button-prev::before {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-family: icomoon;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 40px;
	color: #b5b4b4;
}
.blog-slider .button-next {
	position: absolute;
	top: 50%;
	right: -70px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	cursor: pointer;
	width: 40px;
	height: 40px;
}
.blog-slider .button-next::before {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-family: icomoon;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 40px;
	color: #b5b4b4;
}
@media (min-width: 1024px) {
	.blog-slider .button-prev:hover::before,
.blog-slider .button-next:hover::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		color: #fe0000;
	}
}
@media (max-width: 1800px) {
	.blog-slider {
		margin: 0px 65px;
	}
}
@media (max-width: 820px) {
	.blog-slider {
		margin: 0;
	}
	.blog-slider .swiper-wrapper {
		margin: -10px -5px;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		width: auto;
	}
	.blog-slider .swiper-slide {
		padding: 10px 5px;
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 820px) and (max-width: 600px) {
	.blog-slider .swiper-slide {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}
@media (max-width: 820px) {
	.blog-slider .blog-item {
		padding: 0;
	}
}

.mod-slider {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
}
.mod-slider .swiper-wrapper {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.mod-slider .swiper-wrapper > *:not(:last-child) {
	position: relative;
}
.mod-slider .swiper-wrapper > *:not(:last-child)::before {
	content: "";
	position: absolute;
	top: 0;
	right: -1px;
	width: 1px;
	height: 100%;
	background: #171717;
}
@media (max-width: 700px) {
	.mod-slider .swiper-wrapper > *:not(:last-child)::before {
		display: none;
	}
}
@media (max-width: 1024px) {
	.mod-slider .swiper-wrapper {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
}
.mod-slider .button-prev {
	position: absolute;
	top: 50%;
	left: -30px;
	-webkit-transform: translate(0, -50%) rotate(-180deg);
	    -ms-transform: translate(0, -50%) rotate(-180deg);
	        transform: translate(0, -50%) rotate(-180deg);
	cursor: pointer;
	width: 40px;
	height: 40px;
}
.mod-slider .button-prev::before {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-family: icomoon;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 40px;
	color: #b5b4b4;
}
@media (max-width: 1770px) {
	.mod-slider .button-prev {
		left: -20px;
	}
}
@media (max-width: 700px) {
	.mod-slider .button-prev {
		left: -50px;
	}
}
.mod-slider .button-next {
	position: absolute;
	top: 50%;
	right: -30px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	cursor: pointer;
	width: 40px;
	height: 40px;
}
.mod-slider .button-next::before {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-family: icomoon;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 40px;
	color: #b5b4b4;
}
@media (max-width: 1770px) {
	.mod-slider .button-next {
		right: -20px;
	}
}
@media (max-width: 700px) {
	.mod-slider .button-next {
		right: -50px;
	}
}
@media (min-width: 1024px) {
	.mod-slider .button-prev:hover::before,
.mod-slider .button-next:hover::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		color: #fe0000;
	}
}
.mod-slider .swiper-slide {
	padding: 30px 50px 0 50px;
}
@media (max-width: 1200px) {
	.mod-slider .swiper-slide {
		padding: 30px 30px 0 30px;
	}
}
@media (max-width: 700px) {
	.mod-slider .swiper-slide {
		padding: 20px 0px 0 0px;
	}
}
@media (max-width: 1024px) {
	.mod-slider .swiper-slide-prev::before {
		display: none;
	}
}
@media (max-width: 1770px) {
	.mod-slider {
		margin: 0px 50px;
	}
}
@media (max-width: 1024px) {
	.mod-slider {
		max-width: 500px;
		margin: 0 auto;
	}
}
@media (max-width: 700px) {
	.mod-slider {
		margin: 0 60px;
		padding: 60px 0px;
	}
}

.mod-slider__img {
	margin: 0px 0px 10px 0px;
}
.mod-slider__img img {
	width: 100%;
}

.mod-slider__info {
	margin: 0px 0px 80px 0px;
}
@media (max-width: 700px) {
	.mod-slider__info {
		margin: 0px 0px 20px 0px;
	}
}

.mod-slider__title {
	font-size: 44px;
	line-height: 1.3;
	letter-spacing: 0.02em;
	text-align: left;
	color: #313132;
	text-transform: uppercase;
	margin: 0px 0px 40px 0px;
}
.mod-slider__title span {
	font-weight: 800;
	color: #fe0000;
}
@media (max-width: 700px) {
	.mod-slider__title span {
		text-transform: uppercase;
	}
}
@media (max-width: 1919px) {
	.mod-slider__title {
		font-size: calc(22px + 22 * ((100vw - 320px) / 1600));
	}
	.mod-slider__title span {
		font-size: calc(34px + 10 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1260px) {
	.mod-slider__title {
		margin: 0px -50px 40px -50px;
	}
}
@media (max-width: 700px) {
	.mod-slider__title {
		text-transform: none;
		margin: 0px -30px 20px -30px;
	}
}
@media (max-width: 480px) {
	.mod-slider__title {
		margin: 0px -40px 20px -40px;
	}
}

.mod-slider__name,
.mod-slider__mod {
	font-size: 18px;
	line-height: 1.33;
	letter-spacing: 0.09em;
	color: #313132;
	text-transform: uppercase;
}
.mod-slider__name b,
.mod-slider__mod b {
	text-transform: none;
	display: block;
}
@media (max-width: 1919px) {
	.mod-slider__name,
.mod-slider__mod {
		font-size: calc(16px + 2 * ((100vw - 320px) / 1600));
	}
}

.mod-slider__mod {
	color: #fe0000;
	text-transform: none;
}

.mod-slider__pic img {
	width: 100%;
}

.productvar-slider {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 50%;
	        flex: 1 1 50%;
	position: relative;
	min-width: 0;
	margin: 0px 40px 0px -120px !important;
}
.productvar-slider .swiper-slide {
	height: 443px;
}
.productvar-slider .swiper-slide img {
	border-radius: 12px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 1260px) {
	.productvar-slider .swiper-slide {
		height: calc(100px + 480 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.productvar-slider .swiper-slide {
		height: calc(180px + 700 * ((100vw - 320px) / 1600));
	}
}
.productvar-slider .button-prev {
	position: absolute;
	top: 50%;
	left: 30px;
	-webkit-transform: translate(0, -50%) rotate(-180deg);
	    -ms-transform: translate(0, -50%) rotate(-180deg);
	        transform: translate(0, -50%) rotate(-180deg);
	cursor: pointer;
	width: 40px;
	height: 40px;
}
.productvar-slider .button-prev::before {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-family: icomoon;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 40px;
	color: #fff;
}
@media (max-width: 820px) {
	.productvar-slider .button-prev {
		left: 20px;
	}
}
.productvar-slider .button-next {
	position: absolute;
	top: 50%;
	right: 30px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	cursor: pointer;
	width: 40px;
	height: 40px;
}
.productvar-slider .button-next::before {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-family: icomoon;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 40px;
	color: #fff;
}
@media (max-width: 820px) {
	.productvar-slider .button-next {
		right: 20px;
	}
}
@media (min-width: 1024px) {
	.productvar-slider .button-prev:hover::before,
.productvar-slider .button-next:hover::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		color: #fe0000;
	}
}
@media (max-width: 820px) {
	.productvar-slider {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 100%;
		margin: 0px 0px 50px 0px !important;
	}
}

.portfol-slider {
	position: relative;
}
.portfol-slider .button-prev {
	position: absolute;
	top: 50%;
	left: -60px;
	-webkit-transform: translate(0, -50%) rotate(-180deg);
	    -ms-transform: translate(0, -50%) rotate(-180deg);
	        transform: translate(0, -50%) rotate(-180deg);
	cursor: pointer;
	width: 40px;
	height: 40px;
}
.portfol-slider .button-prev::before {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-family: icomoon;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 40px;
	color: #9D9D9D;
}
@media (max-width: 1024px) {
	.portfol-slider .button-prev::before {
		color: #fff;
	}
}
@media (max-width: 1024px) {
	.portfol-slider .button-prev {
		left: 20px;
	}
}
.portfol-slider .button-next {
	position: absolute;
	top: 50%;
	right: -60px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	cursor: pointer;
	width: 40px;
	height: 40px;
}
.portfol-slider .button-next::before {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-family: icomoon;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 40px;
	color: #9D9D9D;
}
@media (max-width: 1024px) {
	.portfol-slider .button-next::before {
		color: #fff;
	}
}
@media (max-width: 1024px) {
	.portfol-slider .button-next {
		right: 20px;
	}
}
@media (min-width: 1024px) {
	.portfol-slider .button-prev:hover::before,
.portfol-slider .button-next:hover::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		color: #fe0000;
	}
}

.portfol-slider__img {
	width: 100%;
	height: 624px;
}
.portfol-slider__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 1919px) {
	.portfol-slider__img {
		height: calc(350px + 274 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.portfol-slider__img {
		height: 250px;
	}
}

.blogitem-slider {
	position: relative;
}
.blogitem-slider .swiper-slide {
	height: 432px;
}
.blogitem-slider .swiper-slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 480px) {
	.blogitem-slider .swiper-slide {
		height: 225px;
	}
}
.blogitem-slider .button-prev {
	position: absolute;
	top: 50%;
	left: 30px;
	-webkit-transform: translate(0, -50%) rotate(-180deg);
	    -ms-transform: translate(0, -50%) rotate(-180deg);
	        transform: translate(0, -50%) rotate(-180deg);
	cursor: pointer;
	width: 30px;
	height: 30px;
}
.blogitem-slider .button-prev::before {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-family: icomoon;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 30px;
	color: #fff;
}
@media (max-width: 1024px) {
	.blogitem-slider .button-prev {
		left: 0px;
	}
}
.blogitem-slider .button-next {
	position: absolute;
	top: 50%;
	right: 30px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	cursor: pointer;
	width: 30px;
	height: 30px;
}
.blogitem-slider .button-next::before {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-family: icomoon;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 30px;
	color: #fff;
}
@media (max-width: 1024px) {
	.blogitem-slider .button-next {
		right: 0px;
	}
}
@media (min-width: 1024px) {
	.blogitem-slider .button-prev:hover::before,
.blogitem-slider .button-next:hover::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		color: #fe0000;
	}
}

.sofas-slider {
	z-index: 1;
	position: relative;
}
@media (max-width: 760px) {
	.sofas-slider .swiper-slide > ._container {
		padding: 0;
	}
}
.sofas-slider .swiper-slide .hero-products__main {
	min-height: 675px;
}
@media (max-width: 761px) {
	.sofas-slider .swiper-slide .hero-products__bg {
		min-height: 500px;
	}
	.sofas-slider .swiper-slide .hero-products__bg img {
		-o-object-position: center bottom;
		   object-position: center bottom;
	}
}
.sofas-slider .swiper-slide .hero-products__content_6 {
	padding: 60px 0px;
}
.sofas-slider .swiper-slide .hero-products__content_6 .hero-products__text {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 35%;
	        flex: 0 1 35%;
	text-shadow: 1px 1px 1px #ebe4d9;
	padding: 10px;
}
.sofas-slider .swiper-slide .hero-products__content_6 .hero-products__sub {
	padding: 10px;
	text-shadow: 1px 1px 1px #e4ddd3;
}
@media (max-width: 820px) {
	.sofas-slider .swiper-slide .hero-products__content_6 {
		padding: 40px 0px 50px 0px;
	}
}
.sofas-slider .swiper-slide .hero-products__row {
	padding: 0px 40px 0px 0px;
}
@media (max-width: 1260px) {
	.sofas-slider .swiper-slide .hero-products__row {
		padding: 0px 70px 0px 0px;
	}
}
@media (max-width: 760px) {
	.sofas-slider .swiper-slide .hero-products__row {
		padding: 0;
	}
}
.sofas-slider .swiper-slide_sofas {
	padding: 40px 0 60px 0px;
	background: #ff5f5b;
	position: relative;
}
.sofas-slider .sofas__dec1 {
	top: 50%;
	left: -15%;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 55%;
}
@media (max-width: 1024px) {
	.sofas-slider .sofas__dec1 {
		top: 30%;
	}
}
@media (max-width: 760px) {
	.sofas-slider .sofas__dec1 {
		left: 10%;
		width: 150%;
		top: 30px;
		-webkit-transform: translate(0);
		    -ms-transform: translate(0);
		        transform: translate(0);
	}
}
.sofas-slider .title {
	margin: 0px 0px 30px 0px !important;
	font-size: 32px !important;
}
@media (max-width: 1024px) {
	.sofas-slider .title {
		font-size: 28px !important;
	}
}
@media (max-width: 820px) {
	.sofas-slider .title {
		font-size: 24px !important;
	}
}
.sofas-slider .sofas__sub {
	margin: 0px 0px 30px 0px;
	font-size: 20px;
	max-width: 100%;
}
.sofas-slider .sofas__sub span {
	font-weight: 700;
}
@media (max-width: 1024px) {
	.sofas-slider .sofas__left {
		margin: 0px 20px 0px 0px;
	}
}
@media (max-width: 1024px) and (max-width: 760px) {
	.sofas-slider .sofas__left {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 760px) {
	.sofas-slider .sofas__left {
		background: none;
		padding: 0px 30px;
	}
}
@media (max-width: 480px) {
	.sofas-slider .sofas__left {
		padding: 0px 20px;
	}
}
.sofas-slider .sofas__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 55%;
	        flex: 0 0 55%;
	padding: 0px 60px 0px 0px;
	position: relative;
}
@media (max-width: 1260px) {
	.sofas-slider .sofas__right {
		margin: 0px 20px 0px 0px;
	}
}
@media (max-width: 760px) {
	.sofas-slider .sofas__right {
		background: none;
		padding: 0px 30px;
		margin: 0;
	}
}
@media (max-width: 480px) {
	.sofas-slider .sofas__right {
		padding: 0px 20px;
	}
}
.sofas-slider .sofas__img {
	padding: 0px 0px 65% 0px;
}
.sofas-slider .sofas__img img {
	border-radius: 10px;
}
@media (max-width: 1440px) {
	.sofas-slider .sofas__img img {
		border-radius: 0 10px 10px 0;
	}
}
@media (max-width: 480px) {
	.sofas-slider .sofas__img {
		margin: 0px 0px 10px -120px;
	}
}
.sofas-slider .sofas__text {
	line-height: 1.3;
	margin: 0px 0px 10px 0px;
}
.sofas-slider .sofas__block {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.sofas-slider .sofas__block p {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 210px;
	        flex: 0 0 210px;
}
@media (max-width: 1024px) {
	.sofas-slider .sofas__block p {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}
.sofas-slider .sofas__btn {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 280px;
	        flex: 0 0 280px;
}
@media (max-width: 1024px) {
	.sofas-slider .sofas__btn {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}
.sofas-slider .hero__down {
	z-index: 2;
}
.sofas-slider .swiper-pagination-bullets {
	width: 55px;
	margin: 0;
	position: absolute;
	z-index: 10;
	top: 50%;
	right: calc((100vw - 1260px) / 2 - 20px);
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 10px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	max-height: calc(100% - 50px);
}
@media (max-width: 1400px) {
	.sofas-slider .swiper-pagination-bullets {
		right: 30px;
	}
}
@media (max-width: 760px) {
	.sofas-slider .swiper-pagination-bullets {
		display: none;
	}
}
.sofas-slider .swiper-pagination-bullet {
	background: #ff5f5b;
	border: 2px solid #fff;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 77px;
	        flex: 0 0 77px;
	height: 77px;
	width: 100%;
	border-radius: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	margin: 0;
}
@media (max-width: 1024px) {
	.sofas-slider .swiper-pagination-bullet {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 70px;
		        flex: 0 0 70px;
		height: 70px;
		width: 50px;
	}
}
.sofas-slider .swiper-pagination-bullet-active {
	background: none;
	background: #fff;
	color: #1d1d1d;
}

.swiper-scrollbar {
	display: none;
}
@media (max-width: 760px) {
	.swiper-scrollbar {
		width: 100%;
		display: block;
		border-radius: 10px;
		-ms-touch-action: none;
		background: #d3d7d9;
		margin: 0px 0px 30px 0px;
	}
}

.swiper-scrollbar-drag {
	height: 5px;
	width: 100%;
	position: relative;
	background: #ff5f5b;
	border-radius: 10px;
}

.hero {
	position: relative;
}

.hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
}
.hero__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.hero__content {
	position: relative;
	min-height: calc(100vh - 50px);
	max-height: 1100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.hero__content::after {
	pointer-events: none;
	content: "";
	position: absolute;
	bottom: -1px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 200px;
	height: 100px;
	background: url("../img/icons/shape1.svg") no-repeat;
	background-size: contain;
	background-position: center bottom;
}
.hero__content ._container {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
@media (min-width: 1024px) and (min-height: 1024px) {
	.hero__content {
		min-height: auto;
		max-height: 1100px;
	}
}
@media (min-width: 1921px) {
	.hero__content {
		min-height: auto;
		height: calc(100vh - 50px);
	}
}
@media (max-width: 1024px) {
	.hero__content {
		min-height: auto;
		max-height: 1100px;
	}
}

.hero__main {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: relative;
	padding: 40px 0px;
}
@media (max-width: 1024px) {
	.hero__main {
		padding: 100px 0px;
	}
}
@media (max-width: 820px) {
	.hero__main {
		padding: 60px 0px 100px 0;
	}
}
@media (max-width: 480px) {
	.hero__main {
		padding: 40px 0px 100px 0;
	}
}

.hero__down {
	cursor: pointer;
	position: absolute;
	z-index: 2;
	bottom: -40px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #fff;
}
.hero__down::before {
	content: "";
	position: absolute;
	top: 53%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: url("../img/icons/26.svg") no-repeat;
	background-size: 30px;
	background-position: center;
	border-radius: 50%;
}
.hero__down::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	-webkit-box-shadow: 0px 8px 10px #fe0000;
	        box-shadow: 0px 8px 10px #fe0000;
	opacity: 0.3;
	-webkit-animation: hero__down 2s infinite linear;
	        animation: hero__down 2s infinite linear;
}

@-webkit-keyframes hero__down {
	0% {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		        transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
		        transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes hero__down {
	0% {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		        transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
		        transform: translate(-50%, -50%) rotate(360deg);
	}
}
.products-main {
	padding: 26px 0px 0px 0px;
}
@media (max-width: 820px) {
	.products-main {
		padding: 50px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	.products-main {
		padding: 80px 0px 0px 0px;
	}
}

.products-main__title {
	font-size: 17px;
	font-weight: 600;
	line-height: 2.19;
	letter-spacing: 0.6px;
	color: #313132;
	text-transform: uppercase;
}
.products-main__title span {
	color: #fe0000;
}
@media (max-width: 760px) {
	.products-main__title {
		display: none;
	}
}

.products-main__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: -5px;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.products-main__row._watcher-view .products-main-item {
	left: 0;
	opacity: 1;
	visibility: visible;
}
.products-main__row._watcher-view .products-main-item:nth-child(1) {
	-webkit-transition: all 0.5s ease 0.7s;
	-o-transition: all 0.5s ease 0.7s;
	transition: all 0.5s ease 0.7s;
}
@media (max-width: 1024px) {
	.products-main__row._watcher-view .products-main-item:nth-child(1) {
		-webkit-transition: all 0.5s ease 0.2s;
		-o-transition: all 0.5s ease 0.2s;
		transition: all 0.5s ease 0.2s;
	}
}
.products-main__row._watcher-view .products-main-item:nth-child(2) {
	-webkit-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}
@media (max-width: 1024px) {
	.products-main__row._watcher-view .products-main-item:nth-child(2) {
		-webkit-transition: all 0.5s ease 0.3s;
		-o-transition: all 0.5s ease 0.3s;
		transition: all 0.5s ease 0.3s;
	}
}
.products-main__row._watcher-view .products-main-item:nth-child(3) {
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}
@media (max-width: 1024px) {
	.products-main__row._watcher-view .products-main-item:nth-child(3) {
		-webkit-transition: all 0.5s ease 0.4s;
		-o-transition: all 0.5s ease 0.4s;
		transition: all 0.5s ease 0.4s;
	}
}
.products-main__row._watcher-view .products-main-item:nth-child(4) {
	-webkit-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}
@media (max-width: 1024px) {
	.products-main__row._watcher-view .products-main-item:nth-child(4) {
		-webkit-transition: all 0.5s ease 0.5s;
		-o-transition: all 0.5s ease 0.5s;
		transition: all 0.5s ease 0.5s;
	}
}
.products-main__row._watcher-view .products-main-item:nth-child(5) {
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}
@media (max-width: 1024px) {
	.products-main__row._watcher-view .products-main-item:nth-child(5) {
		-webkit-transition: all 0.5s ease 0.6s;
		-o-transition: all 0.5s ease 0.6s;
		transition: all 0.5s ease 0.6s;
	}
}
.products-main__row._watcher-view .products-main-item:nth-child(6) {
	-webkit-transition: all 0.5s ease 0.2s;
	-o-transition: all 0.5s ease 0.2s;
	transition: all 0.5s ease 0.2s;
}
@media (max-width: 1024px) {
	.products-main__row._watcher-view .products-main-item:nth-child(6) {
		-webkit-transition: all 0.5s ease 0.7s;
		-o-transition: all 0.5s ease 0.7s;
		transition: all 0.5s ease 0.7s;
	}
}
.products-main__row._watcher-view .products-main-item:nth-child(7) {
	-webkit-transition: all 0.5s ease 0.1s;
	-o-transition: all 0.5s ease 0.1s;
	transition: all 0.5s ease 0.1s;
}
@media (max-width: 1024px) {
	.products-main__row._watcher-view .products-main-item:nth-child(7) {
		-webkit-transition: all 0.5s ease 0.8s;
		-o-transition: all 0.5s ease 0.8s;
		transition: all 0.5s ease 0.8s;
	}
}
@media (max-width: 1024px) {
	.products-main__row {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}

.products-main-item {
	padding: 5px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 16.666%;
	        flex: 0 0 16.666%;
	position: relative;
	left: -100px;
	opacity: 0;
	visibility: hidden;
}
.products-main-item:nth-child(7) {
	display: none;
}
.products-main-item:nth-child(7) .products-main-item__img {
	width: 56px;
	margin: 0px 15px;
}
@media (max-width: 480px) {
	.products-main-item:nth-child(7) {
		display: block;
	}
}
@media (max-width: 1024px) {
	.products-main-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 700px) {
	.products-main-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.products-main-item__row {
	height: 123px;
}
@media (min-width: 1024px) {
	.products-main-item__row:hover .products-main-item__block {
		-webkit-box-shadow: 4.1px 4.2px 17px #B5B5B5;
		        box-shadow: 4.1px 4.2px 17px #B5B5B5;
	}
	.products-main-item__row:hover .products-main-item__name {
		color: #fe0000;
	}
	.products-main-item__row:hover .products-main-item__arrow::before {
		color: #fe0000;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 1024px) {
	.products-main-item__row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		background: #e8e8ea;
		position: relative;
		border-radius: 10px;
		padding: 10px 0px 0px 0px;
	}
}
@media (max-width: 700px) {
	.products-main-item__row {
		padding: 0;
	}
}

.products-main-item__block {
	background: #e9e9eb;
	border-radius: 10px;
	position: relative;
	top: 0;
	-webkit-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1024px) {
	.products-main-item__block {
		background: none;
		position: unset;
		margin: 0;
	}
}

.products-main-item__img {
	padding: 35px 15px 0px 0px;
	height: 320px;
}
.products-main-item__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: left bottom;
	   object-position: left bottom;
}
@media (max-width: 1260px) {
	.products-main-item__img {
		height: calc(120px + 280 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.products-main-item__img {
		height: auto;
		width: 74px;
		padding: 0;
		margin: 0px 20px 0px 0px;
	}
}
@media (max-width: 480px) {
	.products-main-item__img {
		width: 65px;
	}
}

.products-main-item__arrow {
	position: absolute;
	right: 15px;
	bottom: 15px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.products-main-item__arrow::before {
	font-size: 36px;
	color: #9b9b9c;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1024px) {
	.products-main-item__arrow {
		width: 52px;
		height: 52px;
	}
}

.products-main-item__name {
	font-weight: 800;
	color: #313132;
	font-size: 24px;
	line-height: 1.2;
	text-transform: uppercase;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.products-main-item__name span {
	font-weight: 400;
}
@media (max-width: 1260px) {
	.products-main-item__name {
		padding: 0px 5px;
		font-size: calc(12px + 14 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.products-main-item__name {
		margin: 0px 0px 5px 0px;
		padding: 0px 60px 0px 0px;
		font-size: calc(20px + 10 * ((100vw - 320px) / 1600));
	}
}

.hero__anti {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 50px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 20px 32px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.hero__anti img {
	width: 48px;
	margin: 0px 20px 0px 0px;
}
@media (max-width: 1024px) {
	.hero__anti img {
		width: 40px;
	}
}
.hero__anti p {
	text-transform: uppercase;
	font-weight: 800;
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: 0.4px;
	text-align: left;
	color: #313132;
}
.hero__anti p span {
	display: block;
	font-weight: 600;
}
@media (max-width: 1024px) {
	.hero__anti p {
		font-size: 20px;
	}
}
@media (min-width: 1024px) {
	.hero__anti:hover {
		-webkit-transform: scale(1.05);
		    -ms-transform: scale(1.05);
		        transform: scale(1.05);
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 1024px) {
	.hero__anti {
		padding: 15px 20px;
		border-radius: 14px;
	}
}
@media (max-width: 760px) {
	.hero__anti {
		display: none;
	}
}

.sliderblock {
	padding: 60px 0px 0 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media (max-width: 1024px) {
	.sliderblock {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 80px 30px 0px 30px;
	}
}
@media (max-width: 480px) {
	.sliderblock {
		padding: 80px 20px 0px 20px;
	}
}

.hot {
	padding: 60px 0px 0px 0px;
}
.hot > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.hot__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}
.hot__row._watcher-view .hot-item {
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
	opacity: 1;
	visibility: visible;
}
.hot__row._watcher-view .hot-item:nth-child(1) {
	left: 0;
}
.hot__row._watcher-view .hot-item:nth-child(2) {
	right: 0;
}
.hot__row .hot-item {
	opacity: 0;
	visibility: hidden;
}
.hot__row .hot-item:nth-child(1) {
	left: -200px;
}
.hot__row .hot-item:nth-child(2) {
	right: -200px;
}
@media (max-width: 1024px) {
	.hot__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

@media (max-width: 1024px) {
	.hot__row_rev {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
}

.hot-item {
	position: relative;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 35%;
	        flex: 0 1 35%;
	min-height: 373px;
	border-radius: 0 16px 16px 0px;
	padding: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.hot-item .hot-item__bg img {
	border-radius: 0 16px 16px 0;
}
.hot-item:last-child {
	border-radius: 16px 0 0 16px;
}
.hot-item:last-child .hot-item__bg img {
	border-radius: 16px 0 0 16px;
}
@media (max-width: 1919px) {
	.hot-item {
		min-height: calc(200px + 173 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.hot-item {
		padding: 25px;
	}
}

.hot-item_big {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 65%;
	        flex: 0 1 65%;
}

.hot-item_1 {
	background: #d5cdc1;
}
.hot-item_1 .hot-item__com {
	left: 160px;
}
@media (max-width: 1919px) {
	.hot-item_1 .hot-item__com {
		left: calc(-60px + -26 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.hot-item_1 .hot-item__com {
		left: -56px;
	}
}
.hot-item_1 .hot-item__img {
	right: 12%;
	top: -20px;
	width: 400px;
}
@media (max-width: 1919px) {
	.hot-item_1 .hot-item__img {
		width: calc(200px + 200 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.hot-item_1 .hot-item__img {
		top: 55%;
		right: 50px;
		-webkit-transform: translate(0, -50%);
		    -ms-transform: translate(0, -50%);
		        transform: translate(0, -50%);
	}
}
.hot-item_1 .hot-item__content .hot-item__block {
	padding: 0px 0px 0px 350px;
}
@media (max-width: 1919px) {
	.hot-item_1 .hot-item__content .hot-item__block {
		padding-left: calc(-400px + 750 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1300px) {
	.hot-item_1 .hot-item__content .hot-item__block {
		padding: 0px 0px 0px 80px;
	}
}
@media (max-width: 1024px) {
	.hot-item_1 .hot-item__content .hot-item__block {
		padding: 0px 0px 0px 50px;
		height: 100%;
	}
}
@media (max-width: 480px) {
	.hot-item_1 .hot-item__content .hot-item__block {
		padding: 0px 0px 0px 35px;
	}
}
.hot-item_1 .hot-item__btn {
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
}
@media (max-width: 480px) {
	.hot-item_1 .hot-item__btn {
		-ms-flex-item-align: start;
		    -ms-grid-row-align: start;
		    align-self: start;
	}
}
@media (max-width: 1024px) {
	.hot-item_1 {
		margin: 0px 20px 0px 0px;
	}
}

.hot-item_2 .hot-item__label {
	left: 40px;
}
@media (max-width: 1024px) {
	.hot-item_2 .hot-item__label {
		left: 20px;
	}
}
@media (max-width: 1024px) {
	.hot-item_2 {
		margin: 0px 0px 0px 20px;
	}
}

.hot-item_3 .hot-item__label {
	right: 40px;
}
@media (max-width: 1024px) {
	.hot-item_3 .hot-item__label {
		right: 20px;
	}
}
@media (max-width: 1024px) {
	.hot-item_3 {
		margin: 0px 0px 0px 20px;
	}
	.hot-item_3 .hot-item__bg img {
		border-radius: 16px 0 0 16px !important;
	}
}

.hot-item_4 {
	background: #c5cfdb;
	overflow: hidden;
}
.hot-item_4 .hot-item__com {
	right: 160px;
}
@media (max-width: 1919px) {
	.hot-item_4 .hot-item__com {
		right: calc(-60px + -26 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.hot-item_4 .hot-item__com {
		right: -56px;
	}
}
@media (max-width: 1024px) {
	.hot-item_4 .hot-item__com {
		right: unset;
		left: calc(-60px + -26 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.hot-item_4 .hot-item__com {
		left: -56px;
	}
}
.hot-item_4 .hot-item__content {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media (max-width: 1024px) {
	.hot-item_4 .hot-item__content .hot-item__block {
		padding: 0px 0px 0px 50px;
		height: 100%;
	}
}
@media (max-width: 480px) {
	.hot-item_4 .hot-item__content .hot-item__block {
		padding: 0px 0px 0px 35px;
	}
}
.hot-item_4 .hot-item__img {
	top: 60%;
	right: 380px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 590px;
}
@media (max-width: 1919px) {
	.hot-item_4 .hot-item__img {
		width: calc(380px + 210 * ((100vw - 320px) / 1600));
		right: calc(-200px + 600 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.hot-item_4 .hot-item__img {
		right: 50px;
	}
}
@media (max-width: 600px) {
	.hot-item_4 .hot-item__img {
		width: calc(220px + 770 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.hot-item_4 .hot-item__img {
		right: 30px;
	}
}
.hot-item_4 .hot-item__btn {
	top: 0;
	right: unset;
	position: relative;
}
@media (max-width: 1024px) {
	.hot-item_4 {
		border-radius: 0 16px 16px 0px !important;
		margin: 0px 20px 0px 0px;
	}
}

.hot-item__content {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.hot-item__com {
	position: absolute;
	top: 47.5%;
	text-align: center;
	transform: translate(0, -50%);
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	font-size: 24px;
	letter-spacing: 1.6px;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.5);
}
.hot-item__com span {
	font-weight: 500;
}
@media (max-width: 1919px) {
	.hot-item__com {
		font-size: calc(12px + 12 * ((100vw - 320px) / 1600));
	}
}

.hot-item__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hot-item__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.hot-item__block {
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	pointer-events: none;
}
.hot-item__block > *:not(:last-child) {
	margin: 0px 0px 16px 0px;
}
@media (max-width: 480px) {
	.hot-item__block > *:not(:last-child) {
		margin: 0px 0px 10px 0px;
	}
}

.hot-item__cat {
	font-weight: 600;
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0.05rem;
	color: #fff;
}
@media (max-width: 1919px) {
	.hot-item__cat {
		font-size: calc(20px + 4 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.hot-item__cat {
		-webkit-box-ordinal-group: 1;
		    -ms-flex-order: 0;
		        order: 0;
	}
}

.hot-item__name {
	pointer-events: auto;
	font-weight: 800;
	font-size: 72px;
	letter-spacing: 2px;
	text-align: left;
	color: #fff;
}
@media (max-width: 1919px) {
	.hot-item__name {
		font-size: calc(40px + 32 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.hot-item__name {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
	}
}

.hot-item__text {
	font-size: 24px;
	color: #fff;
	letter-spacing: 1.3px;
	line-height: 1.2;
}
@media (max-width: 1919px) {
	.hot-item__text {
		font-size: calc(20px + 4 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.hot-item__text {
		display: none;
	}
}

.hot-item__text_sm {
	font-size: 18px;
}

.hot-item__img {
	position: absolute;
}
.hot-item__img img {
	width: 100%;
}

.hot-item__label {
	position: absolute;
	bottom: 30px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.45px;
	color: #313132;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.hot-item__label img {
	width: 22px;
	margin: 3px 10px 0px 0px;
}
@media (max-width: 820px) {
	.hot-item__label {
		font-size: 16px;
		bottom: 20px;
	}
	.hot-item__label img {
		width: 16px;
		margin: -2px 8px 0px 0px;
	}
}

.hot-item__btn {
	pointer-events: auto;
	margin: 0px 0px 40px 0px !important;
}
@media (max-width: 1024px) {
	.hot-item__btn {
		height: 34px;
		font-size: 12px;
		padding: 10px 20px;
	}
}
@media (max-width: 480px) {
	.hot-item__btn {
		-webkit-box-ordinal-group: 13;
		    -ms-flex-order: 12;
		        order: 12;
		margin: 0px !important;
	}
}

.howwework {
	position: relative;
}

.howwework__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.howwework__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.howwework__content {
	padding: 60px 0px 60px calc((100vw - 1260px) / 2 + 30px);
	position: relative;
}
@media (max-width: 1260px) {
	.howwework__content {
		padding: 60px 0px 60px 30px;
	}
}
@media (max-width: 820px) {
	.howwework__content {
		padding: 60px 30px 60px 30px;
	}
}
@media (max-width: 480px) {
	.howwework__content {
		padding: 60px 20px;
	}
}

.howwework__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 1024px) {
	.howwework__row {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}
@media (max-width: 820px) {
	.howwework__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.howwework__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 60%;
	        flex: 0 1 60%;
	margin: 0px 25px 0px 0px;
	position: relative;
	left: -100px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.howwework__left._watcher-view {
	left: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}
@media (max-width: 1024px) {
	.howwework__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 50%;
		        flex: 0 1 50%;
	}
}
@media (max-width: 820px) {
	.howwework__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px 0px 20px 0px;
	}
}

.howwework__title {
	font-size: 56px;
	margin: 0px 0px 40px 0px;
}
@media (max-width: 1919px) {
	.howwework__title {
		font-size: calc(38px + 18 * ((100vw - 320px) / 1600));
	}
}

.howwework__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -10px;
	/*
	&._watcher-view {
		.howwework-item {
			left: 0;
			opacity: 1;
			visibility: visible;
			&:nth-child(1){
				@include anim(0.5s,0.4s);
				@media (max-width:$md3+px){
					@include anim(0.5s,0.2s);
				}
			}
			&:nth-child(2){
				@include anim(0.5s,0.2s);
				@media (max-width:$md3+px){
					@include anim(0.5s,0.3s);
				}
			}
			&:nth-child(3){
				@include anim(0.5s,0.4s);
				@media (max-width:$md3+px){
					@include anim(0.5s,0.4s);
				}
			}
			&:nth-child(4){
				@include anim(0.5s,0.2s);
				@media (max-width:$md3+px){
					@include anim(0.5s,0.5s);
				}
			}
		}
		}*/
}

.howwework-item {
	position: relative;
	padding: 10px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
}
.howwework-item:nth-child(1) .howwework-item__row {
	background: #e1dace;
}
@media (max-width: 480px) {
	.howwework-item:nth-child(3) .howwework-item__row {
		background: #cad6e4;
	}
}
.howwework-item:nth-child(4) .howwework-item__row {
	background: #cad6e4;
}
@media (max-width: 480px) {
	.howwework-item:nth-child(4) .howwework-item__row {
		background: #e3e3e3;
	}
}
@media (max-width: 1024px) {
	.howwework-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.howwework-item__row {
	background: #e3e3e3;
	padding: 30px 35px;
	border-radius: 16px;
	position: relative;
	height: 100%;
	min-height: 230px;
}
@media (max-width: 1024px) {
	.howwework-item__row {
		min-height: auto;
		padding: 30px;
	}
}
@media (max-width: 480px) {
	.howwework-item__row {
		padding: 25px 20px;
	}
}

.howwework-item__icon {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 43px;
}
.howwework-item__icon img {
	width: 100%;
}
@media (max-width: 1919px) {
	.howwework-item__icon {
		width: calc(30px + 40 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.howwework-item__icon {
		top: 20px;
		right: 20px;
	}
}
@media (max-width: 480px) {
	.howwework-item__icon {
		width: 40px;
	}
}

.howwework-item__title {
	font-weight: bold;
	font-size: 30px;
	letter-spacing: 0.75px;
	color: #2c2e2e;
	width: 50%;
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1919px) {
	.howwework-item__title {
		font-size: calc(24px + 6 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.howwework-item__title {
		margin: 0px 0px 15px 0px;
	}
}

.howwework-item__text {
	line-height: 1.4;
}

.howwework__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 40%;
	        flex: 0 0 40%;
	position: relative;
	right: -200px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.howwework__right._watcher-view {
	right: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}
@media (max-width: 1024px) {
	.howwework__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 50%;
		        flex: 0 1 50%;
	}
}
@media (max-width: 820px) {
	.howwework__right {
		-ms-flex-item-align: end;
		    -ms-grid-row-align: end;
		    align-self: end;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px -30px 0px 0px;
	}
}

.howwework__bg1 {
	width: 100%;
}
.howwework__bg1 img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: left center;
	   object-position: left center;
}

.howwework__block {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 100%;
	height: 100%;
	padding: 0px 30px 0px 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media (max-width: 480px) {
	.howwework__block {
		padding: 0px 30px 0px 20px;
	}
}

.howwework__name {
	margin: 0px 0px 60px 0px;
}
@media (max-width: 820px) {
	.howwework__name {
		margin: 0px 0px 30px 0px;
	}
}

.howwework__product {
	width: calc(100% + 30px);
}
.howwework__product img {
	width: 100%;
}

.howwework__appl {
	max-width: 300px;
}
.howwework__appl p {
	font-size: 16px;
	line-height: 1.25;
	font-weight: 500;
	letter-spacing: 0.02rem;
	color: #353637;
	margin: 0px 0px 20px 0px;
}

.portfolio {
	position: relative;
	margin: 60px 0px 0px 0px;
	padding: 60px 0px;
}

.portfolio__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.portfolio__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
.portfolio__bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}

.portfolio__content {
	position: relative;
}

.portfolio__head {
	max-width: 1040px;
}
@media (max-width: 1919px) {
	.portfolio__head {
		max-width: calc(400px + 640 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1270px) {
	.portfolio__head {
		max-width: 100%;
	}
}
@media (max-width: 600px) {
	.portfolio__head {
		margin: 0px 0px 20px 0px;
	}
}

.portfolio__blocktitle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0px 0px 25px 0px;
}
@media (max-width: 700px) {
	.portfolio__blocktitle {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}

.portfolio__title {
	margin: 0px 40px 0px 0px;
	color: #fff;
}
@media (max-width: 700px) {
	.portfolio__title {
		margin: 0px 0px 20px 0px;
	}
}

.portfolio__sub {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.25;
	letter-spacing: 2px;
	text-align: left;
	color: #fff;
}
@media (max-width: 1919px) {
	.portfolio__sub {
		font-size: calc(20px + 4 * ((100vw - 320px) / 1600));
	}
}

.portfolio__text {
	color: #fff;
	line-height: 1.3;
	max-width: 820px;
}

.portfolio__item {
	position: relative;
	padding: 18px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
}
@media (min-width: 1024px) {
	.portfolio__item:hover .portfolio__img img {
		-webkit-transform: scale(1.1);
		    -ms-transform: scale(1.1);
		        transform: scale(1.1);
		-webkit-transition: all 0.5s ease 0s;
		-o-transition: all 0.5s ease 0s;
		transition: all 0.5s ease 0s;
	}
	.portfolio__item:hover .portfolio__block::before {
		color: #fe0000;
		-webkit-transition: all 0.5s ease 0s;
		-o-transition: all 0.5s ease 0s;
		transition: all 0.5s ease 0s;
	}
}
@media (max-width: 820px) {
	.portfolio__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 600px) {
	.portfolio__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.portfolio__img {
	padding: 0px 0px 76% 0px;
	margin: 0px 0px 17px 0px;
	overflow: hidden;
	border-radius: 16px;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.portfolio__img img {
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
@media (max-width: 600px) {
	.portfolio__img {
		padding: 0px 0px 66% 0px;
	}
}

.portfolio__block {
	padding: 0px 60px 0px 0px;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0.25px;
	position: relative;
}
.portfolio__block::before {
	font-family: icomoon;
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	font-size: 32px;
	color: #fff;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
@media (max-width: 600px) {
	.portfolio__block::before {
		display: none;
	}
}

.portfolio__name {
	color: #fe0000;
}

.portfolio__type {
	color: #fff;
}

.news {
	padding: 60px 0px;
}
.news .slider-controls {
	margin-left: 200px;
	position: relative;
	top: 0;
	left: 0;
	background: none;
	border: 2px solid #fe0000;
	-webkit-transform: translate(0);
	    -ms-transform: translate(0);
	        transform: translate(0);
}
@media (max-width: 1270px) {
	.news .slider-controls {
		bottom: unset;
	}
}
.news .slider-controls .button-prev::before,
.news .slider-controls .button-next::before {
	color: #fe0000;
}
@media (max-width: 1919px) {
	.news .slider-controls {
		margin-left: calc(-100px + 300 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.news .slider-controls {
		margin-left: 40px;
	}
}
@media (max-width: 480px) {
	.news .slider-controls {
		margin-left: 20px;
	}
}
@media (max-width: 1024px) {
	.news {
		margin: 0;
	}
}

.news_bg {
	background: #e8e8e8;
	margin: 50px 0px 0px 0px;
}

.news__blocktitle {
	position: relative;
	z-index: 1;
	margin: 0px 0px 120px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 1024px) {
	.news__blocktitle {
		margin: 0px 0px 50px 0px;
	}
}
@media (max-width: 480px) {
	.news__blocktitle {
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
}

.clients {
	padding: 60px 0px;
	background: #e8e8e8;
}

.clients__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 760px) {
	.clients__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.clients__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 350px;
	        flex: 0 0 350px;
	margin: 0px 60px 0px 0px;
	position: relative;
	z-index: 1;
	left: -200px;
	opacity: 0;
	visibility: hidden;
}
.clients__left._watcher-view {
	left: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}
.clients__left::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: -60px;
	right: 0;
	width: 120%;
	height: 100%;
	background: url("../img/clients/geo.webp") no-repeat;
	background-size: contain;
}
@media (max-width: 820px) {
	.clients__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 300px;
		        flex: 0 0 300px;
	}
}
@media (max-width: 760px) {
	.clients__left {
		margin: 0px 0px 30px 0px;
	}
}

.clients__title {
	font-size: 48px;
	margin: 0px 0px 20px 0px;
}

.clients__text {
	line-height: 1.4;
	letter-spacing: 0.01rem;
	font-weight: 500;
	text-align: left;
	color: #313132;
	font-size: 16px;
}
.clients__text > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}
.clients__logos {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -5px;
	position: relative;
}
.clients__logos._watcher-view {
	right: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}

.clients-logo {
	padding: 5px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
}
@media (max-width: 1200px) {
	.clients-logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}

.clients-logo__row {
	background: #fff;
	border-radius: 12px;
	height: 160px;
	overflow: hidden;
}
.clients-logo__row img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 1260px) {
	.clients-logo__row {
		height: calc(30px + 130 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.clients-logo__row {
		height: calc(60px + 170 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 760px) {
	.clients-logo__row {
		height: calc(80px + 150 * ((100vw - 320px) / 1600));
	}
}

.hero_products .hero__bg {
	opacity: 0.2;
}
.hero_products .hero__content {
	min-height: auto;
	max-height: 100%;
	height: auto;
}
.hero_products .hero__content::after {
	background: url("../img/icons/shape2.svg") no-repeat;
	background-size: contain;
	background-position: center bottom;
}
@media (max-width: 480px) {
	.hero_products .hero__content::after {
		display: none;
	}
}
@media (max-width: 480px) {
	.hero_products .hero__down {
		display: none;
	}
}
.hero_products .hero__blocktitle {
	margin: 0px 0px 20px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.hero_products .hero__blocktitle .title {
	font-size: 55px;
}
@media (max-width: 1919px) {
	.hero_products .hero__blocktitle .title {
		font-size: calc(36px + 19 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.hero_products .hero__blocktitle {
		padding: 20px 0px 0px 0px;
	}
}
.hero_products .hero__anti {
	position: relative;
	bottom: 0;
}
.hero_products .products-main {
	padding: 0;
}
.hero_products .products-main-item__block {
	background: #fff;
}
@media (max-width: 1024px) {
	.hero_products .products-main-item__row {
		background: #Fff;
	}
}
.hero_products .products-main-item__arrow {
	background: #9b9b9c;
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(360deg);
	transform: rotate(90eg);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.hero_products .products-main-item__arrow::before {
	color: #fff;
}
@media (min-width: 1024px) {
	.hero_products .products-main-item:hover .products-main-item__arrow {
		background: #313132;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.hero__products {
	padding: 0px 0px 100px 0px;
}
@media (max-width: 480px) {
	.hero__products {
		padding: 0px 0px 60px 0px;
	}
}

.blockbread {
	background: #f6f6f7;
}

.bread {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 10px 16px;
	padding: 12px 0px;
}
.bread a, .bread p {
	font-size: 14px;
	letter-spacing: 0.7px;
	color: #fe0000;
	position: relative;
}
.bread a {
	color: #313132;
}
@media (min-width: 1024px) {
	.bread a:hover {
		text-decoration: underline;
	}
}
.bread > *:not(:last-child)::after {
	position: absolute;
	top: 46%;
	right: -12px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	content: "/";
}

.products {
	padding: 60px 0px 0px 0px;
}

.products-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -8px;
}
@media (max-width: 820px) {
	.products-items {
		margin: -3px;
	}
}

.products-item {
	padding: 8px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.products-item:hover .products-item__row {
		top: -3px;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		-webkit-box-shadow: 0px 14px 29px -8px rgba(86, 86, 86, 0.22);
		box-shadow: 0px 14px 29px -8px rgba(86, 86, 86, 0.22);
	}
}
@media (max-width: 1024px) {
	.products-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.333%;
		        flex: 0 0 33.333%;
	}
}
@media (max-width: 820px) {
	.products-item {
		padding: 3px;
	}
}
@media (max-width: 600px) {
	.products-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}

.products-item__row {
	top: 0;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
	background: #fff;
	padding: 26px;
	border-radius: 16px;
}
.products-item__row .icon-31 {
	position: absolute;
	bottom: 23px;
	right: 23px;
}
.products-item__row .icon-31::before {
	color: #fe0000;
	font-size: 30px;
}
@media (max-width: 820px) {
	.products-item__row .icon-31::before {
		font-size: 20px;
	}
}
@media (max-width: 820px) {
	.products-item__row .icon-31 {
		bottom: 20px;
		right: 20px;
	}
}
@media (max-width: 820px) {
	.products-item__row {
		padding: 20px;
	}
}
@media (max-width: 360px) {
	.products-item__row {
		padding: 15px 10px;
	}
}

.products-item__img {
	margin: 0px 0px 20px 0px;
}
.products-item__img img {
	width: 100%;
}

.products-item__name {
	font-weight: 800;
	font-size: 22px;
	line-height: 1.33;
	letter-spacing: 0.06em;
	color: #313132;
	margin: 0px 0px 16px 0px;
}
@media (max-width: 1919px) {
	.products-item__name {
		font-size: calc(14px + 8 * ((100vw - 320px) / 1600));
	}
}

.products-item__price {
	font-size: 18px;
	letter-spacing: 0.06em;
	color: #313132;
	padding: 0px 40px 0px 0px;
}
@media (max-width: 1919px) {
	.products-item__price {
		font-size: calc(14px + 8 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.products-item__price {
		padding: 0px 20px 0px 0px;
	}
}
@media (max-width: 480px) {
	.products-item__price {
		color: #fe0000;
		font-weight: 600;
	}
}

.show__more {
	position: relative;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	margin: 60px 0px 0px 0px;
	padding: 10px 30px;
	text-transform: none;
}
.show__more .icon-1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0px 0px 0px 10px;
}
.show__more .icon-1::before {
	font-size: 8px;
	color: #313132;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
	.show__more .icon-1::before {
		font-size: 6px;
	}
}
@media (min-width: 1024px) {
	.show__more:hover .icon-1::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		color: #fe0000;
	}
}

.hits {
	padding: 60px 0px 0px 0px;
}

.hits_s {
	padding: 60px 0px;
}

.hits__title {
	margin: 0px 0px 10px 0px;
	font-size: 60px;
}
@media (max-width: 1919px) {
	.hits__title {
		font-size: calc(36px + 24 * ((100vw - 320px) / 1600));
	}
}

.hits__blocktitle {
	margin: 0px 0px 40px 0px;
}
@media (max-width: 480px) {
	.hits__blocktitle {
		margin: 0px 0px 30px 0px;
	}
}

.hits__text {
	font-weight: 500;
	font-size: 20px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: 0.5px;
	text-align: left;
	color: #313132;
}
@media (max-width: 1919px) {
	.hits__text {
		font-size: calc(18px + 2 * ((100vw - 320px) / 1600));
	}
}

.hero-products {
	position: relative;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.hero-products .title {
	font-size: 55px;
	margin: 10px 0px 0px 0px;
}
@media (max-width: 1919px) {
	.hero-products .title {
		font-size: calc(36px + 19 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 360px) {
	.hero-products .title {
		font-size: 28px;
	}
}
@media (max-width: 1024px) {
	.hero-products .hero__down {
		display: none;
	}
}
.hero-products::after {
	pointer-events: none;
	content: "";
	position: absolute;
	z-index: 1;
	bottom: -1px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 200px;
	height: 100px;
	background: url("../img/icons/shape2.svg") no-repeat;
	background-size: contain;
	background-position: center bottom;
}
@media (max-width: 1024px) {
	.hero-products::after {
		display: none;
	}
}
.hero-products__top {
	width: 100%;
	margin: 0px auto 30px auto;
}
@media (max-width: 480px) {
	.hero-products__top {
		margin: 20px auto;
	}
}

.hero-products__main {
	position: relative;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 750px;
	        flex: 1 1 750px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
@media (max-width: 1440px) {
	.hero-products__main {
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 580px;
		        flex: 1 1 580px;
	}
}

.hero-products__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hero-products__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 820px) {
	.hero-products__bg {
		position: relative;
		height: calc(200px + 600 * ((100vw - 320px) / 1600));
	}
}

.hero-products__content {
	position: relative;
	padding: 60px 0px 80px 0;
}
@media (max-width: 820px) {
	.hero-products__content {
		padding: 40px 0px 50px 0px;
	}
}

.hero-products__content_1 .hero-products__text {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 60%;
	        flex: 0 1 60%;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
}
@media (max-width: 820px) {
	.hero-products__content_1 {
		background: #a8aaa0;
	}
}

.hero-products__content_2 .hero-products__sub,
.hero-products__content_2 .hero-products__text {
	color: #313132;
}
.hero-products__content_2 .hero-products__text {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 60%;
	        flex: 0 1 60%;
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
	font-size: 14px;
}
@media (max-width: 820px) {
	.hero-products__content_2 {
		background: #e1e5e9;
	}
}

.hero-products__content_3 {
	padding: 60px 0px 100px 0px;
}
.hero-products__content_3 .hero-products__sub {
	font-size: 38px;
}
.hero-products__content_3 .hero-products__sub br {
	display: none;
}
@media (max-width: 1919px) {
	.hero-products__content_3 .hero-products__sub {
		font-size: calc(24px + 14 * ((100vw - 320px) / 1600));
	}
}
.hero-products__content_3 .hero-products__text {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 100%;
	        flex: 0 1 100%;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
}
@media (max-width: 820px) {
	.hero-products__content_3 {
		background: #535961;
		padding: 40px 0px 50px 0px;
	}
}

.hero-products__content_4 {
	padding: 40px 0px 90px 0px;
}
.hero-products__content_4 .hero-products__sub {
	color: #313132;
}
.hero-products__content_4 .hero-products__sub br {
	display: none;
}
@media (max-width: 1919px) {
	.hero-products__content_4 .hero-products__sub {
		font-size: calc(24px + 12 * ((100vw - 320px) / 1600));
	}
}
.hero-products__content_4 .hero-products__text {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 60%;
	        flex: 0 1 60%;
	color: #313132;
}
@media (max-width: 820px) {
	.hero-products__content_4 {
		background: #cac0b9;
		padding: 40px 0px 50px 0px;
	}
}

.hero-products__content_5 {
	padding: 40px 0px 90px 0px;
}
.hero-products__content_5 .hero-products__sub {
	color: #313132;
	font-size: 36px;
}
@media (max-width: 1919px) {
	.hero-products__content_5 .hero-products__sub {
		font-size: calc(21px + 15 * ((100vw - 320px) / 1600));
	}
}
.hero-products__content_5 .hero-products__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 25%;
	        flex: 0 1 25%;
}
.hero-products__content_5 .hero-products__text {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 75%;
	        flex: 0 1 75%;
	color: #313132;
}
@media (max-width: 820px) {
	.hero-products__content_5 {
		background: #edebf1;
		padding: 40px 0px 50px 0px;
	}
}

.hero-products__content_6 .hero-products__sub {
	color: #313132;
	font-size: 38px;
}
@media (max-width: 1919px) {
	.hero-products__content_6 .hero-products__sub {
		font-size: calc(24px + 14 * ((100vw - 320px) / 1600));
	}
}
.hero-products__content_6 .hero-products__row {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
@media (max-width: 1024px) {
	.hero-products__content_6 .hero-products__row {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}
.hero-products__content_6 .hero-products__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 45%;
	        flex: 0 1 45%;
}
.hero-products__content_6 .hero-products__text {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 45%;
	        flex: 0 1 45%;
	color: #313132;
	font-size: 15px;
}
@media (max-width: 820px) {
	.hero-products__content_6 {
		background: #e4ddd3;
	}
}

.hero-products__content_7 {
	padding: 40px 0px 90px 0px;
}
.hero-products__content_7 .hero-products__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center top;
	   object-position: center top;
}
.hero-products__content_7 .hero-products__sub {
	color: #313132;
	font-size: 38px;
}
@media (max-width: 1919px) {
	.hero-products__content_7 .hero-products__sub {
		font-size: calc(24px + 14 * ((100vw - 320px) / 1600));
	}
}
.hero-products__content_7 .hero-products__row {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 1024px) {
	.hero-products__content_7 .hero-products__row {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}
.hero-products__content_7 .hero-products__text {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 65%;
	        flex: 0 1 65%;
	color: #313132;
	font-size: 15px;
}
@media (max-width: 820px) {
	.hero-products__content_7 {
		background: #d2d5cf;
		padding: 40px 0px 50px 0px;
	}
}

.hero-products__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.hero-products__row > *:not(:last-child) {
	margin: 0px 40px 0px 0px;
}
@media (max-width: 1024px) {
	.hero-products__row > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 1024px) {
	.hero-products__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.hero-products__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 468px;
	        flex: 0 1 468px;
}
@media (max-width: 820px) {
	.hero-products__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.hero-products__big {
	font-weight: 800;
	font-size: 81px;
	letter-spacing: 0.07em;
	margin: 0px 0px 10px 0px;
	color: #fff;
}
.hero-products__big span {
	color: #fe0000;
}
@media (max-width: 1919px) {
	.hero-products__big {
		font-size: calc(46px + 35 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 360px) {
	.hero-products__big {
		font-size: 40px;
	}
}

.hero-products__sub {
	font-weight: 700;
	color: #fff;
	font-size: 44px;
	line-height: 1.19;
	letter-spacing: 0.06rem;
	text-align: left;
}
@media (max-width: 1919px) {
	.hero-products__sub {
		font-size: calc(24px + 20 * ((100vw - 320px) / 1600));
	}
}

.hero-products__text {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 45%;
	        flex: 0 1 45%;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.28;
	letter-spacing: 0.4px;
	text-align: left;
	color: #fff;
}
@media (max-width: 820px) {
	.hero-products__text {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		line-height: 1.4;
	}
}
.hero-products__text > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.products-filters {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin: 0px 0px 16px 0px;
}
.products-filters > *:not(:last-child) {
	margin: 0px 10px 0px 0px;
}

.select_products-filters__all .select__title,
.select_products-filters__sort .select__title {
	padding: 10px 56px 10px 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 17px;
	height: 50px;
}
.select_products-filters__all .select__title::before,
.select_products-filters__sort .select__title::before {
	margin: 0px 14px 0px 0px;
	font-family: icomoon;
	color: #313132;
	font-size: 19px;
}
@media (max-width: 820px) {
	.select_products-filters__all .select__title::before,
.select_products-filters__sort .select__title::before {
		font-size: 18px;
		color: #fe0000;
		margin: 0px 10px 0px 0px;
	}
}
@media (max-width: 480px) {
	.select_products-filters__all .select__title::before,
.select_products-filters__sort .select__title::before {
		font-size: 14px;
	}
}
@media (max-width: 820px) {
	.select_products-filters__all .select__title,
.select_products-filters__sort .select__title {
		padding: 0;
		border: 0;
		height: 30px;
		font-size: 14px;
	}
}
@media (max-width: 480px) {
	.select_products-filters__all .select__title,
.select_products-filters__sort .select__title {
		font-size: 12px;
	}
}
.select_products-filters__all .select__content,
.select_products-filters__sort .select__content {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	max-width: 200px;
}
.select_products-filters__all .select__content .select__asset,
.select_products-filters__sort .select__content .select__asset {
	display: none;
}
@media (max-width: 480px) {
	.select_products-filters__all .select__content,
.select_products-filters__sort .select__content {
		max-width: 150px;
	}
}
.select_products-filters__all .select__options,
.select_products-filters__sort .select__options {
	padding: 30px 10px;
}
@media (max-width: 820px) {
	.select_products-filters__all .select__options,
.select_products-filters__sort .select__options {
		top: 30px;
	}
}
.select_products-filters__all .select__option,
.select_products-filters__sort .select__option {
	padding: 0px 0px 0px 65px;
}
.select_products-filters__all .select__option::before,
.select_products-filters__sort .select__option::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 30px;
	width: 16px;
	height: 16px;
	background: url("../img/icons/01.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 820px) {
	.select_products-filters__all .select__option::before,
.select_products-filters__sort .select__option::before {
		width: 15px;
		height: 15px;
		left: 20px;
	}
}
.select_products-filters__all .select__option[hidden]::before,
.select_products-filters__sort .select__option[hidden]::before {
	background: url("../img/icons/50.svg") no-repeat;
	background-size: contain;
}
.select_products-filters__all .select__option._select-selected::before,
.select_products-filters__sort .select__option._select-selected::before {
	background: url("../img/icons/50.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 820px) {
	.select_products-filters__all .select__option,
.select_products-filters__sort .select__option {
		padding: 0px 0px 0px 50px;
	}
}
.select_products-filters__all::after,
.select_products-filters__sort::after {
	right: 24px;
	width: 25px;
	height: 25px;
}
@media (max-width: 820px) {
	.select_products-filters__all::after,
.select_products-filters__sort::after {
		display: none;
	}
}
.select_products-filters__all .select__asset,
.select_products-filters__sort .select__asset {
	position: relative;
	top: -2px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 30px;
	        flex: 0 0 30px;
	height: 30px;
	margin: 0px 10px 0px 0px;
}
@media (max-width: 480px) {
	.select_products-filters__all,
.select_products-filters__sort {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 50%;
		        flex: 0 1 50%;
	}
}

.select_products-filters__all .select__title::before {
	content: "";
}
.select_products-filters__all .select__options {
	min-width: 480px;
}
@media (max-width: 820px) {
	.select_products-filters__all .select__options {
		min-width: 280px;
	}
}

.select_products-filters__sort .select__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.select_products-filters__sort .select__title::before {
	content: "";
}
@media (max-width: 820px) {
	.select_products-filters__sort .select__options {
		min-width: 200px;
		right: 0;
		left: unset;
	}
}

.blog {
	padding: 20px 0px 100px 0px;
}

.blog__title {
	text-transform: none;
	text-align: center;
	margin: 0px 0px 70px 0px;
}
@media (max-width: 700px) {
	.blog__title {
		margin: 0px 0px 20px 0px;
	}
}

.blog__links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	border-bottom: 1px solid #a9afb4;
	padding: 0px 0px 14px 0px;
	margin: 0px 0px 50px 0px;
}
.blog__links a {
	font-size: 18px;
	line-height: 1.56;
	letter-spacing: 0.45px;
	color: #1d1d1d;
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	padding: 0px 10px;
}
.blog__links a._active {
	color: #fe0000;
}
@media (min-width: 1024px) {
	.blog__links a:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		color: #fe0000;
	}
}
@media (max-width: 1919px) {
	.blog__links a {
		font-size: calc(18px + 0 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 700px) {
	.blog__links a {
		padding: 10px 0px;
		border-bottom: 1px solid #e8eaeb;
	}
}
@media (max-width: 1024px) {
	.blog__links {
		margin: 0px 0px 40px 0px;
	}
}
@media (max-width: 700px) {
	.blog__links {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 0;
		border: 0;
	}
}

.blog__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -50px -20px;
}
@media (max-width: 1024px) {
	.blog__items {
		margin: -10px;
	}
}

.blog-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	padding: 50px 20px;
}
@media (max-width: 1024px) {
	.blog-item {
		padding: 10px;
	}
}
@media (max-width: 700px) {
	.blog-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.blog-item__img {
	padding: 0px 0px 60% 0px;
	position: relative;
}
.blog-item__img img {
	border-radius: 16px;
	width: 100%;
}
@media (max-width: 480px) {
	.blog-item__img::before {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		font-family: icomoon;
		content: "";
		position: absolute;
		z-index: 1;
		bottom: 0;
		right: 0;
		width: 70px;
		height: 70px;
		border-radius: 16px;
		background: #fe0000;
		font-size: 30px;
		color: #fff;
	}
}

.blog-item__info {
	border-radius: 16px;
	text-align: center;
	padding: 30px 0px 0px 0px;
}
@media (max-width: 480px) {
	.blog-item__info {
		background: #eee;
		padding: 20px;
	}
}
.blog-item__info > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}

.blog-item__cat {
	font-size: 24px;
	line-height: 1.17;
	letter-spacing: 0.03em;
	color: #fe0000;
}
@media (max-width: 1919px) {
	.blog-item__cat {
		font-size: calc(16px + 8 * ((100vw - 320px) / 1600));
	}
}

.blog-item__title {
	font-weight: 600;
	font-size: 28px;
	line-height: 1.27;
	letter-spacing: 0.05em;
	color: #1d1d1d;
}
@media (max-width: 1919px) {
	.blog-item__title {
		font-size: calc(18px + 10 * ((100vw - 320px) / 1600));
	}
}

.blog-item__date {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.56;
	letter-spacing: 0.05em;
	color: #1d1d1d;
}
@media (max-width: 1919px) {
	.blog-item__date {
		font-size: calc(12px + 6 * ((100vw - 320px) / 1600));
	}
}

.blog__ban {
	margin: 0px 0px 100px 0px;
}
@media (max-width: 1024px) {
	.blog__ban {
		margin: 0px 0px 40px 0px;
	}
}

.blog-ban__img {
	padding: 0px 0px 26% 0px;
	margin: 0px 0px 40px 0px;
}
.blog-ban__img img {
	width: 100%;
	border-radius: 16px;
}
@media (max-width: 820px) {
	.blog-ban__img {
		padding: 0px 0px 40% 0px;
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 480px) {
	.blog-ban__img {
		padding: 0px 0px 60% 0px;
	}
}

.blog-ban__text {
	font-size: 22px;
	line-height: 1.3;
	letter-spacing: 0.05em;
	color: #1d1d1d;
	max-width: 900px;
	margin: 0 auto;
}
@media (max-width: 1919px) {
	.blog-ban__text {
		font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	}
}

.blogitem .blog-item__info {
	padding: 30px;
}
.blogitem .blog-item__date {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media (max-width: 700px) {
	.blogitem .blog-item__date {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}

.blogitem-top {
	padding: 20px 0px 0px 0px;
}
@media (max-width: 820px) {
	.blogitem-top .blog-item__info {
		padding-bottom: 0;
	}
}
@media (max-width: 480px) {
	.blogitem-top .blog-item__info {
		background: none;
	}
}

.blogitem__top {
	margin: 0px 0px 40px 0px;
}

.blogitem-top__icons {
	margin: 0px 0px 0px 20px;
}
.blogitem-top__icons a::before {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.blogitem-top__icons a:hover::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		color: #fe0000;
	}
}
.blogitem-top__icons .icon-33::before {
	color: #b5b4b4;
	font-size: 26px;
}
.blogitem-top__icons .icon-37::before {
	color: #b5b4b4;
	font-size: 24px;
}
.blogitem-top__icons .icon-48::before {
	color: #b5b4b4;
	font-size: 26px;
}
.blogitem-top__icons .icon-19::before {
	color: #b5b4b4;
	font-size: 24px;
}
.blogitem-top__icons > *:not(:last-child) {
	margin: 0px 15px 0px 0px;
}
@media (max-width: 700px) {
	.blogitem-top__icons {
		margin: 10px 0px 0px 0px;
	}
}

.blog-article > *:not(:last-child) {
	margin: 0px 0px 40px 0px;
}

.blogitem__article {
	margin: 0px 0px 100px 0px;
}
@media (max-width: 700px) {
	.blogitem__article {
		margin: 0px 0px 60px 0px;
	}
}

.blog-article__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.blog-article__row > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
.blog-article__row > *:not(:last-child) {
	margin: 0px 60px 0px 0px;
}
@media (max-width: 820px) {
	.blog-article__row > *:not(:last-child) {
		margin: 0px 40px 0px 0px;
	}
}
@media (max-width: 820px) and (max-width: 700px) {
	.blog-article__row > *:not(:last-child) {
		margin: 30px 0px 0px 0px;
	}
}
@media (max-width: 700px) {
	.blog-article__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
}

.blog-article__text {
	-webkit-column-count: 2;
	   -moz-column-count: 2;
	        column-count: 2;
	-webkit-column-gap: 60px;
	   -moz-column-gap: 60px;
	        column-gap: 60px;
	line-height: 1.5;
}
.blog-article__text > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 820px) {
	.blog-article__text {
		-webkit-column-gap: 40px;
		   -moz-column-gap: 40px;
		        column-gap: 40px;
	}
}
@media (max-width: 700px) {
	.blog-article__text {
		-webkit-column-count: 1;
		   -moz-column-count: 1;
		        column-count: 1;
	}
}
.blog-article__text > *:not(:last-child) {
	margin: 0px 0px 30px 0px;
}

.blog-article__text_big {
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-align: right;
}
@media (max-width: 1919px) {
	.blog-article__text_big {
		font-size: calc(12px + 7 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.blog-article__text_big {
		line-height: 1.3;
	}
}
@media (max-width: 700px) {
	.blog-article__text_big {
		text-align: left;
	}
}

.blog-article__img img {
	width: 100%;
	border-radius: 12px;
}

.page-hero {
	position: relative;
}

.page-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.page-hero__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.page-hero_sert {
	min-height: 480px;
}
@media (max-width: 820px) {
	.page-hero_sert {
		min-height: auto;
	}
}

.page-hero__content {
	padding: 40px 0px 80px 0px;
	position: relative;
}
@media (max-width: 480px) {
	.page-hero__content {
		padding: 20px 0px 60px 0px;
	}
}

.page-hero__title {
	font-size: 50px;
	text-transform: none;
}
@media (max-width: 1919px) {
	.page-hero__title {
		font-size: calc(34px + 16 * ((100vw - 320px) / 1600));
	}
}

.page-hero__title_about {
	position: relative;
	opacity: 0;
	left: -100px;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.page-hero__title_about._watcher-view {
	opacity: 1;
	visibility: visible;
	left: 0;
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}

.page-hero__blocktitle .page-hero__title {
	font-size: 50px;
}
.page-hero__blocktitle .page-hero__title span {
	color: #1d1d1d;
	display: block;
}
@media (max-width: 1919px) {
	.page-hero__blocktitle .page-hero__title {
		font-size: calc(24px + 26 * ((100vw - 320px) / 1600));
	}
}
.page-hero__blocktitle > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}

.page-hero__sub {
	font-size: 50px;
	line-height: 1.2;
}
@media (max-width: 1919px) {
	.page-hero__sub {
		font-size: calc(20px + 30 * ((100vw - 320px) / 1600));
	}
}

.infoblock {
	padding: 70px 0px;
}

.infoblock__title {
	font-size: 40px;
	margin: 0px 0px 30px 0px;
}
@media (max-width: 1919px) {
	.infoblock__title {
		font-size: calc(36px + 4 * ((100vw - 320px) / 1600));
	}
}

.infoblock__blocktitle,
.colors__blocktitle {
	margin: 0px 0px 40px 0px;
}
.infoblock__blocktitle .title,
.colors__blocktitle .title {
	margin: 0;
}
@media (max-width: 480px) {
	.infoblock__blocktitle .title,
.colors__blocktitle .title {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.infoblock__blocktitle,
.colors__blocktitle {
		margin: 0px 0px 30px 0px;
	}
}

.infoblock__sub {
	font-weight: 800;
	font-size: 40px;
	color: #323334;
}
@media (max-width: 1919px) {
	.infoblock__sub {
		font-size: calc(26px + 14 * ((100vw - 320px) / 1600));
	}
}

.infoblock__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.infoblock__row > *:not(:last-child) {
	margin: 0px 80px 0px 0px;
}
@media (max-width: 1024px) {
	.infoblock__row > *:not(:last-child) {
		margin: 0px 40px 0px 0px;
	}
}
@media (max-width: 1024px) and (max-width: 700px) {
	.infoblock__row > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 700px) {
	.infoblock__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.infoblock__col {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 50%;
	        flex: 1 1 50%;
}
@media (max-width: 700px) {
	.infoblock__col h3 {
		margin: 0;
	}
}
.infoblock__col h4 {
	font-weight: 800;
	font-size: 26px;
	line-height: 1.3;
	letter-spacing: 0.06em;
	text-align: left;
	color: #313132;
}
.infoblock__col h4 span {
	color: #fe0000;
}
@media (max-width: 1919px) {
	.infoblock__col h4 {
		font-size: calc(20px + 6 * ((100vw - 320px) / 1600));
	}
}
.infoblock__col > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.infoblock__text {
	line-height: 1.6;
}
.infoblock__text > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

._redtext {
	font-size: inherit;
	color: #fe0000;
}
._redtext a {
	white-space: nowrap;
	font-weight: bold;
	color: #fe0000;
}

.infoblock__dl li {
	padding: 0px 0px 0px 40px;
	position: relative;
}
.infoblock__dl li::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 30px;
	height: 30px;
	background: url("../img/icons/39.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 480px) {
	.infoblock__dl li::before {
		top: 40%;
		width: 20px;
		height: 20px;
	}
}
.infoblock__dl li a {
	font-size: 18px;
	line-height: 1.11;
	letter-spacing: 0.05em;
	text-align: left;
	color: #fe0000;
}
@media (min-width: 1024px) {
	.infoblock__dl li a:hover {
		text-decoration: underline;
	}
}
@media (max-width: 480px) {
	.infoblock__dl li a {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.infoblock__dl li {
		padding: 0px 0px 0px 30px;
	}
}

.infoblock__list {
	line-height: 1.5;
}
.infoblock__list li {
	position: relative;
	padding: 0px 0px 0px 20px;
}
.infoblock__list li::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 10px;
	height: 10px;
	background: #fe0000;
	border-radius: 50%;
}
.infoblock__list > *:not(:last-child) {
	margin: 0px 0px 3px 0px;
}

.infoblock__btn2 {
	margin: 30px 0px 0px 0px;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.infoblock__items > *:not(:last-child) {
	margin: 0px 0px 30px 0px;
}

.infoblock__item {
	position: relative;
	padding: 0px 0px 0px 50px;
}
.infoblock__item span {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.3;
	letter-spacing: 1px;
}
@media (max-width: 1919px) {
	.infoblock__item span {
		font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.infoblock__item span {
		min-height: 42px;
	}
}
.infoblock__item p {
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: 0.45px;
	text-align: left;
	color: #313132;
}
@media (max-width: 1919px) {
	.infoblock__item p {
		font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.infoblock__item p {
		margin: 0px 0px 0px -40px;
	}
}
.infoblock__item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	background: url("../img/icons/22.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 480px) {
	.infoblock__item::before {
		width: 24px;
		height: 24px;
	}
}
.infoblock__item > * {
	display: block;
}
.infoblock__item > *:not(:last-child) {
	margin: 0px 0px 5px 0px;
}
@media (max-width: 480px) {
	.infoblock__item > *:not(:last-child) {
		margin: 0px 0px 10px 0px;
	}
}
@media (max-width: 480px) {
	.infoblock__item {
		padding: 0px 0px 0px 40px;
	}
}

.infoblock__add h4 {
	margin: 0px 0px 10px 0px;
}
.infoblock__add p {
	font-size: 22px;
	line-height: 1.3;
	letter-spacing: 0.45px;
	color: #313132;
}
@media (max-width: 1919px) {
	.infoblock__add p {
		font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	}
}
.infoblock__add ._redtext {
	color: #fe0000;
}
.infoblock__add ._redtext a {
	white-space: nowrap;
	font-weight: bold;
	color: #fe0000;
}
.infoblock__add ul li {
	font-weight: bold;
	font-size: 22px;
	line-height: 1.3;
	letter-spacing: 0.45px;
	color: #313132;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.infoblock__add ul li span::before {
	margin: 0px 20px 0px 0px;
	color: #fe0000;
	font-size: 26px;
}
@media (max-width: 480px) {
	.infoblock__add ul li span::before {
		margin: 0px 15px 0px 0px;
		position: relative;
		top: -3px;
	}
}
@media (max-width: 1919px) {
	.infoblock__add ul li {
		font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	}
}
.infoblock__add ul > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}
.infoblock__add > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}

.infoblock__trends {
	margin: 60px 0px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #fe0000;
}
.infoblock__trends h4 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
	font-weight: 800;
	font-size: 40px;
	line-height: 1.1;
}
@media (max-width: 1919px) {
	.infoblock__trends h4 {
		font-size: calc(24px + 16 * ((100vw - 320px) / 1600));
	}
}
.infoblock__trends p {
	line-height: 1.2;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
	font-size: 22px;
}
@media (max-width: 1919px) {
	.infoblock__trends p {
		font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	}
}
.infoblock__trends > *:not(:last-child) {
	margin: 0px 40px 0px 0px;
}
@media (max-width: 700px) {
	.infoblock__trends > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 700px) {
	.infoblock__trends {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin: 40px 0px 0px 0px;
	}
}

.infoblock-why {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.infoblock-why > *:not(:last-child) {
	margin: 0px 60px 0px 0px;
}
@media (max-width: 700px) {
	.infoblock-why > *:not(:last-child) {
		margin: 0px 0px 40px 0px;
	}
}
@media (max-width: 700px) {
	.infoblock-why {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.infoblock-why__col {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
.infoblock-why__col > *:not(:last-child) {
	margin: 0px 0px 40px 0px;
}

.infoblock-why__item {
	padding: 0px 0px 0px 70px;
	position: relative;
}
.infoblock-why__item h4 {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 22px;
	line-height: 1.3;
	letter-spacing: 1px;
}
@media (max-width: 1919px) {
	.infoblock-why__item h4 {
		font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.infoblock-why__item h4 {
		min-height: 42px;
	}
}
.infoblock-why__item p, .infoblock-why__item li {
	font-size: 22px;
	line-height: 1.3;
	letter-spacing: 0.45px;
	text-align: left;
	color: #313132;
}
@media (max-width: 1919px) {
	.infoblock-why__item p, .infoblock-why__item li {
		font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.infoblock-why__item p, .infoblock-why__item li {
		margin: 0px 0px 0px -50px;
	}
}
@media (max-width: 820px) {
	.infoblock-why__item {
		padding: 0px 0px 0px 50px;
	}
}

.infoblock-why__num {
	position: absolute;
	top: 0;
	left: 0;
	border: 2px solid #fe0000;
	width: 45px;
	height: 45px;
	font-weight: bold;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-radius: 50%;
	color: #fe0000;
	font-size: 24px;
	padding: 3px 5px 5px 5px;
}
@media (max-width: 820px) {
	.infoblock-why__num {
		width: 30px;
		height: 30px;
		font-size: 18px;
	}
}

.blockform {
	background: #dd5755;
	padding: 30px 0px;
}
@media (max-width: 1024px) {
	.blockform {
		padding: 40px 0px;
	}
}

.blockform__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.blockform__img {
	margin: 0px 15px 0px -170px;
}
.blockform__img img {
	width: 100%;
}
@media (max-width: 1024px) {
	.blockform__img {
		display: none;
	}
}

.blockform1 {
	margin: 60px 0px 0px 0px;
}

.product {
	padding: 10px 0px;
}
.product__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
@media (max-width: 700px) {
	.product__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.product__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
	position: relative;
	margin: 0px 40px 0px 0px;
}
@media (max-width: 700px) {
	.product__left {
		margin: 0px 0px 20px 0px;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.product__bg {
	margin: 0px 0px 0px -110px;
}
.product__bg img {
	width: 100%;
}
@media (max-width: 700px) {
	.product__bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.product__bg img {
		width: 100%;
		height: 100%;
		-o-object-fit: contain;
		   object-fit: contain;
		-o-object-position: center;
		   object-position: center;
	}
}
@media (max-width: 700px) {
	.product__bg {
		margin: 0 auto;
	}
}

.product__img {
	position: absolute;
	top: 50%;
	right: 50%;
	-webkit-transform: translate(50%, -50%);
	    -ms-transform: translate(50%, -50%);
	        transform: translate(50%, -50%);
	width: 100%;
}
.product__img img {
	width: 100%;
}
@media (max-width: 700px) {
	.product__img {
		position: relative;
		-webkit-transform: translate(0);
		    -ms-transform: translate(0);
		        transform: translate(0);
		top: 0;
		right: 0;
		padding: 30px 0px;
	}
}

.product__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
	padding: 40px 0px;
}
.product__right .quantity {
	margin: 0px 0px 40px 0px;
}
@media (max-width: 700px) {
	.product__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		padding: 0;
	}
}

.product__main > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.product-blocktitle {
	margin: 0px 0px 10px 0px;
}
@media (max-width: 700px) {
	.product-blocktitle {
		width: 100%;
		margin: 0px 0px 40px 0px;
	}
}

.product__title {
	font-size: 60px;
}
@media (max-width: 820px) {
	.product__title {
		font-size: 42px;
	}
}
@media (max-width: 480px) {
	.product__title {
		font-size: 36px;
	}
}

.product-blocktitle__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 10px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
@media (max-width: 700px) {
	.product-blocktitle__block {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}

.product__sku {
	font-size: 24px;
	line-height: 1;
	letter-spacing: 1.2px;
	text-align: left;
	color: #313132;
	padding: 0px 0px 10px 0px;
}
@media (max-width: 1919px) {
	.product__sku {
		font-size: calc(16px + 8 * ((100vw - 320px) / 1600));
	}
}

.product__type {
	font-size: 32px;
	line-height: 1.29;
	letter-spacing: 0.05em;
	color: #313132;
}
@media (max-width: 1919px) {
	.product__type {
		font-size: calc(18px + 14 * ((100vw - 320px) / 1600));
	}
}

.product-var h4 {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0.05em;
	color: #313132;
	margin: 0px 0px 10px 0px;
}
@media (max-width: 480px) {
	.product-var h4 {
		font-size: 14px;
	}
}

.product-var__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 10px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.product-var__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.product-var__block > *:not(:last-child) {
	margin: 0px 10px 0px 0px;
}

.product-var__img {
	width: 47px;
	height: 47px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 47px;
	        flex: 0 0 47px;
}
.product-var__img img {
	border-radius: 50%;
	width: 100%;
}

.product__btn {
	border: 2px solid #c0c0c0;
	color: #c0c0c0;
	padding: 10px 20px;
	height: 50px;
	font-size: 16px;
}
.product__btn::after {
	position: relative;
	margin: 0px 0px 0px 10px;
	font-family: icomoon;
	content: "";
	font-size: 25px;
}
@media (max-width: 700px) {
	.product__btn::after {
		font-size: 20px;
	}
}
@media (max-width: 1024px) {
	.product__btn {
		padding: 5px 20px;
	}
}
@media (max-width: 480px) {
	.product__btn {
		height: 40px;
		padding: 5px 15px;
	}
}

.product-var__color {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 36px;
	        flex: 0 0 36px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
}

.product-var__color_bl {
	background: #171717;
}

.product-var__color_g {
	background: #56555b;
}

.product-var__color_r {
	background: #cd1212;
}

.product-var__color_gr {
	background: #8b9f9d;
}

.product-var__color_w {
	background: #e6e6e6;
}

@media (max-width: 700px) {
	.product__btnda {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.product__btnda .product__btn2 {
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
	}
	.product__btnda > *:not(:last-child) {
		margin: 0px 15px 0px 0px;
	}
}

.product__btn2 .btn {
	padding: 10px 20px;
	height: 42px;
	font-size: 16px;
	width: 100%;
}
.product__btn2 .btn::after {
	width: 42px;
	height: 42px;
}

.product-info__row {
	margin: 0px 0px 30px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.product-info__row > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 1024px) {
	.product-info__row > *:not(:last-child) {
		margin: 0px 0px 15px 0px;
	}
}
@media (max-width: 1024px) {
	.product-info__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: stretch;
		    -ms-flex-align: stretch;
		        align-items: stretch;
	}
}

.product-info__request {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
.product-info__request button {
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 42px;
	padding: 10px 20px;
	font-size: 18px;
	background: #e6e6e6;
	border-radius: 50px;
	width: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	color: #1d1d1d;
}
.product-info__request button span {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 480px) {
	.product-info__request button span {
		margin: 0px 10px 0px 0px;
	}
}
.product-info__request button b {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-weight: 400;
	color: #1d1d1d;
	margin: 0px 7px 0px 0px;
}
@media (max-width: 480px) {
	.product-info__request button b {
		display: none;
	}
}
.product-info__request button .icon-09::before {
	position: relative;
	font-size: 30px;
}
@media (max-width: 700px) {
	.product-info__request button .icon-09::before {
		font-size: 24px;
	}
}
.product-info__request button .icon-24::before {
	position: relative;
	font-size: 20px;
}
@media (max-width: 700px) {
	.product-info__request button .icon-24::before {
		font-size: 16px;
	}
}
@media (min-width: 1024px) {
	.product-info__request button:hover {
		background: #1d1d1d;
		color: #fff;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.product-info__request button:hover span::before {
		color: #9c9c9c;
	}
	.product-info__request button:hover b {
		color: #fff;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 480px) {
	.product-info__request button {
		font-size: 16px;
		height: 40px;
	}
}
.product-info__request > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}
@media (max-width: 1024px) {
	.product-info__request {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}
@media (max-width: 480px) {
	.product-info__request {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.product-info__request > *:not(:last-child) {
		margin: 0px 10px 0px 0px;
	}
}

.product-info__block {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
.product-info__block > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}
@media (max-width: 1024px) {
	.product-info__block {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.product-info__prices {
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.product-info__prices > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
@media (max-width: 1024px) {
	.product-info__prices {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}

.product-info__price {
	text-align: right;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.13;
	letter-spacing: 1.2px;
	text-align: left;
}
.product-info__price span {
	font-size: 23px;
	color: #fe0000;
}
@media (max-width: 480px) {
	.product-info__price {
		font-size: 18px;
	}
	.product-info__price span {
		font-size: 22px;
	}
}

.product__note {
	font-size: 14px;
	line-height: 1.43;
	color: #9c9c9c;
}
.product__note a {
	white-space: nowrap;
	color: #dd5754;
}
@media (max-width: 480px) {
	.product__note {
		font-size: 14px;
	}
}

.product-details {
	padding: 60px 0px;
	border-top: 10px solid #f6f6f7;
	border-bottom: 10px solid #f6f6f7;
}
@media (max-width: 700px) {
	.product-details {
		padding: 60px 0px 0px 0px;
		border: 0;
	}
}

.product-details__title {
	font-weight: 800;
	font-size: 55px;
	line-height: 0.65;
	letter-spacing: 0.075px;
	color: #fe0000;
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1919px) {
	.product-details__title {
		font-size: calc(34px + 21 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.product-details__title {
		margin: 0px 0px 15px 0px;
	}
}

.product-details__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 700px) {
	.product-details__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.product-details__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
	margin: 0px 40px 0px 0px;
}
@media (max-width: 700px) {
	.product-details__left {
		margin: 0px 0px 30px 0px;
	}
}
.product-details__left > * {
	margin: 0px 0px 30px 0px;
}

.product-details__type {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	font-size: 36px;
	line-height: 1;
	letter-spacing: 0.018px;
	color: #313132;
}
.product-details__type span {
	font-weight: bold;
}
@media (max-width: 1919px) {
	.product-details__type {
		font-size: calc(22px + 14 * ((100vw - 320px) / 1600));
	}
}

.product-details__img {
	width: 90%;
}
.product-details__img img {
	width: 100%;
}
@media (max-width: 700px) {
	.product-details__img {
		width: 100%;
	}
}

.product-details__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}

.table__line {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	border-top: 2px solid #2d2d2e;
	padding: 15px 0px;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: 0.01em;
	color: #313132;
}
.table__line:last-child {
	border-bottom: 2px solid #2d2d2e;
}
@media (max-width: 1919px) {
	.table__line {
		font-size: calc(14px + 2 * ((100vw - 320px) / 1600));
	}
}

.table__name {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 45%;
	        flex: 0 0 45%;
	font-weight: bold;
	padding: 0px 20px 0px 0px;
}

.table__value {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 55%;
	        flex: 0 0 55%;
}
.table__value a {
	color: #313132;
}

.productvar {
	background: #f6f6f7;
	padding: 60px 0px;
}

.productvar__title {
	font-weight: 600;
	font-size: 30px;
	line-height: 1.2;
	letter-spacing: 0.05em;
	text-align: left;
	color: #fe0000;
	text-transform: uppercase;
	margin: 0px 0px 40px 0px;
}
.productvar__title span {
	font-weight: 800;
	color: #313132;
}
@media (max-width: 1919px) {
	.productvar__title span {
		font-size: 30px;
	}
}
@media (max-width: 1919px) {
	.productvar__title {
		font-size: calc(28px + 2 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.productvar__title {
		margin: 0px 0px 30px 0px;
	}
}

.productvar__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
@media (max-width: 820px) {
	.productvar__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.productvar__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
}
@media (max-width: 820px) {
	.productvar__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.productvar__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -20px;
}
@media (max-width: 1260px) {
	.productvar__items {
		margin: -15px;
	}
}

.productvar-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	padding: 20px;
}
@media (max-width: 1260px) {
	.productvar-item {
		padding: 15px;
	}
}
@media (max-width: 1200px) {
	.productvar-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.productvar-item__block {
	position: relative;
	padding: 0px 0px 0px 58px;
}

.productvar-item__icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 44px;
	height: 44px;
}
.productvar-item__icon img {
	width: 100%;
}

.productvar-item__name {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #1d1d1d;
	margin: 0px 0px 10px 0px;
}
@media (max-width: 1200px) {
	.productvar-item__name {
		min-height: 43px;
		padding: 5px 0px 0px 0px;
	}
}

.productvar-item__text {
	font-size: 16px;
	line-height: 1.24;
	letter-spacing: 0.01rem;
	color: #313132;
}
@media (max-width: 1919px) {
	.productvar-item__text {
		font-size: calc(14px + 2 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1200px) {
	.productvar-item__text {
		margin: 0px 0px 0px -65px;
	}
}

.pres {
	padding: 60px 0px 60px 0px;
}

.pres__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -20px -12px;
}
@media (max-width: 700px) {
	.pres__row {
		margin: -10px -5px;
	}
}

.pres-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
	padding: 20px 12px;
	cursor: pointer;
}
@media (max-width: 1024px) {
	.pres-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.333%;
		        flex: 0 0 33.333%;
	}
}
@media (max-width: 700px) {
	.pres-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
		padding: 10px 5px;
	}
}

.pres-item_big {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
}
.pres-item_big .pres-item__img {
	height: 392px;
	padding: 0;
}
@media (max-width: 1260px) {
	.pres-item_big .pres-item__img {
		height: calc(65px + 557 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.pres-item_big .pres-item__img {
		height: calc(98px + 737 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 700px) {
	.pres-item_big .pres-item__img {
		height: calc(180px + 1120 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.pres-item_big {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 66.666%;
		        flex: 0 0 66.666%;
	}
}
@media (max-width: 700px) {
	.pres-item_big {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.pres-item__img {
	display: block;
	padding: 0px 0px 139% 0px;
	margin: 0px 0px 20px 0px;
}
.pres-item__img img {
	border-radius: 16px;
	width: 100%;
}
@media (max-width: 700px) {
	.pres-item__img {
		margin: 0px 0px 10px 0px;
	}
}

.pres-item__dl {
	font-size: 20px;
	line-height: 1.33;
	letter-spacing: 0.045em;
	color: #fe0000;
	position: relative;
	padding: 0px 0px 0px 40px;
	display: block;
}
.pres-item__dl::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0;
	width: 30px;
	height: 30px;
	background: url("../img/icons/39.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 480px) {
	.pres-item__dl::before {
		top: 5px;
		width: 20px;
		height: 20px;
	}
}
@media (max-width: 1919px) {
	.pres-item__dl {
		font-size: calc(16px + 4 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.pres-item__dl {
		padding: 0px 0px 0px 30px;
	}
}
@media (min-width: 1024px) {
	.pres-item__dl:hover {
		text-decoration: underline;
	}
}

.contacts {
	padding: 20px 0px 0px 0px;
}

.contacts__title {
	margin: 0px 0px 40px 0px;
}
@media (max-width: 700px) {
	.contacts__title {
		margin: 0px 0px 30px 0px;
	}
}

.contacts__ban {
	height: 480px;
}
.contacts__ban img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 1919px) {
	.contacts__ban {
		height: calc(240px + 240 * ((100vw - 320px) / 1600));
	}
}

.howwework_c {
	padding: 60px 0px;
}
@media (max-width: 700px) {
	.howwework_c .howwework__title {
		margin: 0px 0px 30px 0px;
	}
}
.howwework_c .howwework__content {
	padding: 0;
}
.howwework_c .howwework__row {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.howwework_c .howwework-item {
	opacity: 1;
	visibility: visible;
	left: 0;
}
.howwework_c .howwework__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 70%;
	        flex: 0 1 70%;
	margin: 0px 40px 0px 0px;
}
@media (max-width: 1024px) {
	.howwework_c .howwework__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 50%;
		        flex: 0 1 50%;
	}
}
@media (max-width: 820px) {
	.howwework_c .howwework__left {
		display: none;
	}
}
.howwework_c .howwework__list {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 30%;
	        flex: 0 1 30%;
	position: relative;
	right: -100px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.howwework_c .howwework__list._watcher-view {
	right: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}
.howwework_c .howwework__list ul {
	margin: 0px 0px 40px 0px;
}
@media (max-width: 700px) {
	.howwework_c .howwework__list ul {
		margin: 0px 0px 20px 0px;
	}
}
.howwework_c .howwework__list li {
	font-size: 16px;
	line-height: 1.33;
	letter-spacing: 0.05em;
	color: #313132;
}
@media (max-width: 1024px) {
	.howwework_c .howwework__list {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 50%;
		        flex: 0 1 50%;
	}
}
@media (max-width: 700px) {
	.howwework_c {
		padding: 40px 0px 60px 0px;
	}
}

.howwework__call {
	font-weight: bold;
	font-size: 22px;
	line-height: 1.33;
	letter-spacing: 0.05em;
	color: #fe0000;
}
.howwework__call a {
	white-space: nowrap;
	color: #fe0000;
}
@media (max-width: 1919px) {
	.howwework__call {
		font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	}
}

.contaddr {
	padding: 60px 0px;
	background: #e3e3e3;
}
.contaddr .table {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 68%;
	        flex: 0 1 68%;
}
.contaddr .table__name {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 25%;
	        flex: 0 1 25%;
}
@media (max-width: 700px) {
	.contaddr .table__name {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 40%;
		        flex: 0 1 40%;
	}
}
.contaddr .table__value {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 75%;
	        flex: 0 1 75%;
}
@media (max-width: 700px) {
	.contaddr .table__value {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 60%;
		        flex: 0 1 60%;
	}
}
.contaddr .pres-item__dl::before {
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
}

.contaddr__title {
	margin: 0px 0px 40px 0px;
}

.contaddr__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin: 0px 0px 60px 0px;
}
@media (max-width: 700px) {
	.contaddr__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.contaddr__time {
	border-top: 2px solid #313132;
	margin: 0px 40px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.contaddr__time > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 700px) {
	.contaddr__time > *:not(:last-child) {
		margin: 0px 0px 10px 0px;
	}
}
@media (max-width: 700px) {
	.contaddr__time {
		margin: 0;
		padding: 20px 0px;
	}
}

.contaddr__block {
	font-size: 20px;
	line-height: 1.11;
	letter-spacing: 0.05em;
	color: #313132;
	white-space: nowrap;
}
.contaddr__block h5 {
	font-weight: 600;
}
.contaddr__block > *:not(:last-child) {
	margin: 0px 0px 5px 0px;
}
@media (max-width: 1919px) {
	.contaddr__block {
		font-size: calc(16px + 4 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 700px) {
	.contaddr__block {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.contaddr__block > *:not(:last-child) {
		margin: 0px 10px 0px 0px;
	}
}

.contaddr__data {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 20px;
}
.contaddr__data h4 {
	font-weight: 600;
	font-size: 40px;
	line-height: 1.2;
	letter-spacing: 2px;
	text-align: left;
	color: #313132;
}
@media (max-width: 480px) {
	.contaddr__data h4 {
		font-size: 36px;
	}
}
.contaddr__data > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}

.cart {
	padding: 20px 0px 0px 0px;
}
.cart ._container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.cart ._container > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
.cart .info-block {
	margin: 0px 0px 60px 0px;
}
.cart .info-block b {
	display: block;
}

.cart__blocktitle {
	margin: 0px 0px 40px 0px !important;
}
.cart__blocktitle > *:not(:last-child) {
	margin: 0px 0px 5px 0px;
}

.cart-main {
	background: #fff;
	border-radius: 12px;
	padding: 26px;
}
@media (max-width: 700px) {
	.cart-main {
		display: none;
	}
}

.cart-main__line {
	padding: 20px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: 0.03em;
	color: #313132;
	border-bottom: 1px solid #313132;
}
.cart-main__line > * {
	padding: 0px 20px;
}
@media (max-width: 820px) {
	.cart-main__line {
		font-size: 14px;
	}
}
@media (max-width: 700px) {
	.cart-main__line {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.cart-main__line_head {
	font-weight: 600;
	font-size: 18px;
}
.cart-main__line_head .cart-main__price {
	color: #313132;
}
@media (max-width: 820px) {
	.cart-main__line_head {
		font-size: 16px;
	}
}

.cart-main__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 14%;
	        flex: 0 0 14%;
	min-width: 100px;
}
.cart-main__img img {
	width: 100px;
	max-width: 100%;
}

.cart-main__name {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 35%;
	        flex: 0 0 35%;
}
.cart-main__name span {
	display: block;
}

.cart-main__quant {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 30%;
	        flex: 0 0 30%;
}

.cart-main__price {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 20%;
	        flex: 0 1 20%;
	color: #fe0000;
	min-width: 120px;
}

.cart-main-mob {
	display: none;
}
@media (max-width: 700px) {
	.cart-main-mob {
		display: block;
	}
	.cart-main-mob > *:not(:last-child) {
		margin: 0px 0px 15px 0px;
	}
}

.cart-main-mob__item {
	background: #fff;
	border-radius: 12px;
}

.cart-main-mob__head,
.cart-main-mob__price {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: 0.05em;
	color: #313132;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid #313132;
}

.cart-main-mob__name span {
	display: block;
}

.cart-main-mob__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.cart-main-mob__main {
	padding: 20px;
	border-bottom: 1px solid #313132;
}
.cart-main-mob__main .cart-main-mob__name {
	margin: 0px 0px 20px 0px;
	line-height: 1.5;
}

.cart-main-mob__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 100px;
	        flex: 0 0 100px;
}

.cart-main-mob__img img {
	width: 100%;
}

.cart-main-mob__price {
	border: 0;
}
.cart-main-mob__price span:last-child {
	color: #fe0000;
}

.cart-total {
	width: 50%;
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
}
.cart-total h3 {
	font-weight: bold;
	font-size: 36px;
	line-height: 1;
	letter-spacing: 1.8px;
	color: #313132;
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1919px) {
	.cart-total h3 {
		font-size: calc(30px + 6 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.cart-total {
		width: 100%;
	}
}

.cart-total__block {
	background: #fff;
	border-radius: 12px;
	border: solid 1px #dcdcdc;
	padding: 30px;
}
@media (max-width: 480px) {
	.cart-total__block {
		padding: 20px;
	}
}

.cart-total__items {
	margin: 0px 0px 70px 0px;
}
@media (max-width: 480px) {
	.cart-total__items {
		margin: 0px 0px 20px 0px;
	}
}

.cart-total__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.cart-total__item > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}

.cart-total__name,
.cart-total__q {
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: 0.03em;
	text-align: left;
	color: #313132;
}
@media (max-width: 480px) {
	.cart-total__name,
.cart-total__q {
		font-size: 16px;
	}
}

.cart-total__name span {
	display: block;
}

.cart-total__q {
	white-space: nowrap;
}

.cart-total__total {
	position: relative;
	padding: 20px 0px;
	border-top: 1px solid #313132;
	border-bottom: 1px solid #313132;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.cart-total__total span {
	font-weight: 600;
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0.9px;
	text-align: left;
	color: #313132;
}
.cart-total__total span:last-child {
	color: #fe0000;
	font-size: 16px;
}
.cart-total__total > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 820px) {
	.cart-total__total {
		border: 0;
		padding: 20px 0px 0px 0px;
	}
	.cart-total__total::before {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
		width: calc(100% + 60px);
		height: 1px;
		background: #313132;
	}
}
@media (max-width: 820px) and (max-width: 480px) {
	.cart-total__total::before {
		width: calc(100% + 40px);
	}
}

.cart-total__btn {
	margin: 30px 0px 0px 0px;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	padding: 0px 60px 0px 0px;
}
.cart-total__btn .btn {
	height: 50px;
}
.cart-total__btn .btn::after {
	width: 50px;
	height: 50px;
}
@media (max-width: 480px) {
	.cart-total__btn .btn {
		width: 100%;
		white-space: wrap;
	}
}
@media (max-width: 480px) {
	.cart-total__btn {
		margin: 20px 0px 0px 0px;
	}
}

.info-block {
	background: #fff;
	border-radius: 12px;
	border: solid 1px #dcdcdc;
	padding: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
}
.info-block h3 {
	font-weight: 800;
	font-size: 40px;
	line-height: 1.15;
	letter-spacing: 0.02em;
	color: #313132;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 30%;
	        flex: 0 1 30%;
}
.info-block h3 span {
	color: #fe0000;
}
@media (max-width: 1919px) {
	.info-block h3 {
		font-size: calc(30px + 10 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1300px) {
	.info-block h3 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 50%;
		        flex: 0 1 50%;
	}
}
@media (max-width: 820px) {
	.info-block h3 {
		padding: 0px 0px 0px 50px;
	}
}
.info-block p {
	font-size: 22px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: #313132;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 60%;
	        flex: 0 1 60%;
}
@media (max-width: 1919px) {
	.info-block p {
		font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1300px) {
	.info-block p {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 50%;
		        flex: 0 1 50%;
	}
}
.info-block > *:not(:last-child) {
	margin: 0px 60px 0px 0px;
}
@media (max-width: 1300px) {
	.info-block > *:not(:last-child) {
		margin: 0px 40px 0px 0px;
	}
}
@media (max-width: 820px) {
	.info-block > *:not(:last-child) {
		margin: 0px 0px 10px 0px;
	}
}
@media (max-width: 1300px) {
	.info-block {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}
@media (max-width: 820px) {
	.info-block {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media (max-width: 480px) {
	.info-block {
		padding: 20px;
	}
}

.info-block__icon {
	-ms-flex-item-align: start;
	    -ms-grid-row-align: start;
	    align-self: start;
	width: 50px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50px;
	        flex: 0 0 50px;
	-ms-transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.info-block__icon img {
	width: 100%;
}
@media (max-width: 820px) {
	.info-block__icon {
		position: absolute;
		top: 30px;
		left: 30px;
		width: 30px;
		height: 30px;
	}
}
@media (max-width: 480px) {
	.info-block__icon {
		top: 20px;
		left: 20px;
	}
}

.cart-done {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.cart-done > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 1024px) {
	.cart-done > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 1024px) {
	.cart-done {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.cart-done__left,
.cart-done__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
	border-radius: 12px;
	padding: 30px;
	background: #fff;
	position: relative;
}
@media (max-width: 1024px) {
	.cart-done__left,
.cart-done__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.cart-done__icon {
	position: absolute;
	top: 30px;
	left: 30px;
	width: 55px;
}
.cart-done__icon img {
	width: 100%;
}
@media (max-width: 820px) {
	.cart-done__icon {
		width: 32px;
	}
}
@media (max-width: 480px) {
	.cart-done__icon {
		left: 20px;
		top: 20px;
	}
}

.cart-done__left {
	padding: 30px 30px 30px 120px;
}
@media (max-width: 820px) {
	.cart-done__left {
		padding: 30px 30px 30px 80px;
	}
}
@media (max-width: 480px) {
	.cart-done__left {
		padding: 20px 20px 20px 70px;
	}
}

.cart-done__right > h4 {
	padding: 0px 20px;
	margin: 0px 0px 20px 0px;
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0.05em;
	color: #313132;
	text-transform: uppercase;
}
@media (max-width: 480px) {
	.cart-done__right > h4 {
		margin: 0;
		padding: 10px 20px;
	}
}
@media (max-width: 480px) {
	.cart-done__right {
		padding: 0;
	}
}

.cart-done__line {
	padding: 20px;
	border-top: 1px solid #313132;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.cart-done__line h4 {
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0.05em;
	color: #313132;
	text-transform: uppercase;
}
.cart-done__line span {
	color: #a9a9a9;
}
.cart-done__line > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 480px) {
	.cart-done__line {
		padding: 10px 20px;
	}
}

.cart-done__text {
	font-size: 22px;
	line-height: 1.25;
	letter-spacing: 0.01em;
	color: #1d1d1d;
}
.cart-done__text > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1919px) {
	.cart-done__text {
		font-size: calc(18px + 4 * ((100vw - 320px) / 1600));
	}
}

.cart-done_null .cart-done__text > *:not(:last-child) {
	margin: 0px 0px 40px 0px;
}
.cart-done_null .btn {
	white-space: wrap;
}

.page-hero_about {
	overflow: hidden;
}
.page-hero_about .page-hero__content {
	padding: 0;
}
.page-hero_about .page-hero__left {
	position: relative;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 750px;
	        flex: 0 1 750px;
	padding: 20px 0px 60px 0px;
	margin: 0px 20px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.page-hero_about .page-hero__left > *:not(:last-child) {
	margin: 0px 0px 30px 0px;
}
@media (max-width: 1260px) {
	.page-hero_about .page-hero__left {
		padding: 20px 0px 60px 60px;
	}
}
@media (max-width: 1024px) {
	.page-hero_about .page-hero__left {
		padding: 20px 0px 60px 0px;
	}
}
@media (max-width: 820px) {
	.page-hero_about .page-hero__left {
		margin: 0px 0px 30px 0px;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		padding: 0;
	}
}
.page-hero_about .page-hero__right {
	margin: -20px 0px 0px -50px;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 500px;
	        flex: 1 1 500px;
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
}
.page-hero_about .page-hero__right img {
	width: 100%;
}
@media (max-width: 820px) {
	.page-hero_about .page-hero__right {
		max-width: 400px;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		-ms-flex-item-align: center;
		    -ms-grid-row-align: center;
		    align-self: center;
		margin: auto;
	}
}
@media (max-width: 480px) {
	.page-hero_about .page-hero__right {
		max-width: 80%;
	}
}

.page-hero__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 1024px) {
	.page-hero__row {
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}
@media (max-width: 820px) {
	.page-hero__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.page-hero__name {
	font-size: 24px;
	line-height: 1.46;
	color: #1d1d1d;
	font-weight: 500;
}
@media (max-width: 820px) {
	.page-hero__name {
		font-size: 18px;
		width: 100%;
	}
}

.stat {
	background: #fe0000;
	padding: 60px 0px;
}

.stat__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media (max-width: 1260px) {
	.stat__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.stat__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 1170px;
	        flex: 0 1 1170px;
	position: relative;
	margin: 0px 35px 0px 0px;
}
.stat__left::before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: -35px;
	width: 35px;
	height: 100%;
	background: #fe0000;
}
@media (max-width: 820px) {
	.stat__left::before {
		display: none;
	}
}
.stat__left::after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	right: -35px;
	width: 35px;
	height: 100%;
	background: #fe0000;
}
@media (max-width: 820px) {
	.stat__left::after {
		display: none;
	}
}
@media (max-width: 1260px) {
	.stat__left {
		margin: 0px 0px 40px 0px;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.stat__items {
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: -20px -35px;
}
@media (max-width: 1360px) {
	.stat__items {
		margin: -20px -15px;
	}
}
@media (max-width: 1024px) {
	.stat__items {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}

.stat__item {
	padding: 20px 35px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.stat__item:nth-child(1) .stat__dot._watcher-view {
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}
.stat__item:nth-child(2) .stat__dot._watcher-view {
	-webkit-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}
.stat__item:nth-child(3) .stat__dot._watcher-view {
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}
.stat__item:nth-child(4) .stat__dot._watcher-view {
	-webkit-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}
.stat__item:first-child .stat__dot::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 200vw;
	height: 4px;
	background: #fff;
}
.stat__item > *:not(:last-child) {
	margin: 0px 0px 25px 0px;
}
@media (max-width: 1024px) {
	.stat__item > *:not(:last-child) {
		margin: 0px 0px 10px 0px;
	}
}
@media (max-width: 1360px) {
	.stat__item {
		padding: 20px 15px;
	}
}
@media (max-width: 1024px) {
	.stat__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 480px) {
	.stat__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}

.stat__img {
	width: 162px;
	height: 113px;
}
.stat__img img {
	border-radius: 10px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 480px) {
	.stat__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 162px;
		        flex: 0 0 162px;
		height: 133px;
		margin: 0px 20px 0px 0px !important;
	}
}

.stat__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.stat__block > *:not(:last-child) {
	margin: 0px 0px 25px 0px;
}
@media (max-width: 1024px) {
	.stat__block > *:not(:last-child) {
		margin: 0px 0px 10px 0px;
	}
}
@media (max-width: 480px) {
	.stat__block > *:not(:last-child) {
		margin: 0px 0px 5px 0px;
	}
}
@media (max-width: 1024px) {
	.stat__block {
		text-align: center;
	}
}
@media (max-width: 480px) {
	.stat__block {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		text-align: left;
	}
}

.stat__val {
	font-weight: 800;
	font-size: 30px;
	color: #fff;
	white-space: nowrap;
	text-align: center;
}
.stat__val span {
	font-size: 20px;
	font-weight: 500;
}
.stat__val span sup {
	font-size: 12px;
}
@media (max-width: 1919px) {
	.stat__val {
		font-size: calc(16px + 14 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.stat__val {
		font-size: calc(28px + 2 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.stat__val {
		text-align: left;
	}
}

.stat__dot {
	position: relative;
	width: 41px;
	height: 41px;
	background: url("../img/about/dot.svg") no-repeat;
	background-size: contain;
	opacity: 0;
	visibility: hidden;
	left: -100px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.stat__dot._watcher-view {
	opacity: 1;
	left: 0;
	visibility: visible;
}
@media (max-width: 1024px) {
	.stat__dot {
		display: none;
	}
}

.stat__title {
	-ms-flex-item-align: start;
	    -ms-grid-row-align: start;
	    align-self: start;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.44;
	letter-spacing: 0.045rem;
}
@media (max-width: 1919px) {
	.stat__title {
		font-size: calc(12px + 6 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.stat__title {
		font-size: calc(20px + -2 * ((100vw - 320px) / 1600));
		-ms-flex-item-align: center;
		    -ms-grid-row-align: center;
		    align-self: center;
		text-align: center;
	}
}
@media (max-width: 480px) {
	.stat__title {
		font-size: 16px;
		text-align: left;
		-ms-flex-item-align: start;
		    -ms-grid-row-align: start;
		    align-self: start;
	}
}

.stat__desc {
	-ms-flex-item-align: start;
	    -ms-grid-row-align: start;
	    align-self: start;
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
}
@media (max-width: 1919px) {
	.stat__desc {
		font-size: calc(16px + 0 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.stat__desc {
		font-size: 14px;
	}
}

.stat__text {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 283px;
	        flex: 0 0 283px;
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
	position: relative;
	opacity: 0;
	right: -100px;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.stat__text._watcher-view {
	right: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}
.stat__text > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1260px) {
	.stat__text {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.staff {
	background: #d0ddeb;
	padding: 60px 0px 0px 0px;
}

.staff__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
@media (max-width: 1024px) {
	.staff__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.staff__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 350px;
	        flex: 0 1 350px;
	margin: 0px 20px 0px 0px;
	padding: 0px 0px 40px 0px;
}
@media (max-width: 1024px) {
	.staff__left {
		margin: 0;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.staff__title {
	font-size: 60px;
	line-height: 1.1;
}
@media (max-width: 1919px) {
	.staff__title {
		font-size: calc(32px + 28 * ((100vw - 320px) / 1600));
	}
}

.staff__sub {
	font-weight: 800;
	font-size: 32px;
	line-height: 1.27;
	color: #1d1d1d;
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1919px) {
	.staff__sub {
		font-size: calc(30px + 2 * ((100vw - 320px) / 1600));
	}
}

.staff__text {
	font-size: 14px;
	line-height: 1.57;
	color: #1d1d1d;
}
.staff__text > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.staff__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 840px;
	        flex: 0 1 840px;
}
.staff__img img {
	width: 100%;
}
@media (max-width: 1024px) {
	.staff__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}
@media (max-width: 480px) {
	.staff__img {
		margin: 0px 0px 30px 0px;
	}
}

.block-slider_about {
	padding: 60px 0px;
}
.block-slider_about .block-slider__left {
	opacity: 1;
	visibility: visible;
	right: 0;
	left: 0;
}
.block-slider_about .block-slider__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.block-slider_about .block-slider__right {
	opacity: 1;
	visibility: visible;
	right: 0;
	left: 0;
}
.block-slider_about .block-slider__right img {
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	border-radius: 16px;
}
@media (max-width: 1270px) {
	.block-slider_about .block-slider__right img {
		height: 488px;
	}
}
@media (max-width: 820px) {
	.block-slider_about .block-slider__right img {
		height: 380px;
	}
}
@media (max-width: 480px) {
	.block-slider_about .block-slider__right img {
		height: 200px;
	}
}
.block-slider_about .slider-controls {
	top: 130px;
	left: 50%;
}
@media (max-width: 1270px) {
	.block-slider_about .slider-controls {
		bottom: 575px;
	}
}
@media (max-width: 820px) {
	.block-slider_about .slider-controls {
		bottom: 468px;
	}
}
@media (max-width: 480px) {
	.block-slider_about .slider-controls {
		bottom: 292px;
	}
}

.block-slider_no {
	margin: -60px 0px 0px 0px;
	padding: 60px 0;
}
@media (max-width: 1270px) {
	.block-slider_no .swiper-slide {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		padding: 0;
	}
}
.block-slider_no .block-slider__left {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 50%;
	        flex: 1 1 50%;
	left: 0;
	opacity: 1;
	visibility: visible;
	padding: 0;
	height: 370px;
	margin: 0px 0px 0px -130px;
}
.block-slider_no .block-slider__left img {
	border-radius: 16px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 1270px) {
	.block-slider_no .block-slider__left {
		width: 100%;
		height: 488px;
		margin: 0 auto;
	}
}
@media (max-width: 480px) {
	.block-slider_no .block-slider__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 200px;
		        flex: 0 0 200px;
	}
}
.block-slider_no .block-slider__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	right: 0;
	opacity: 1;
	visibility: visible;
	padding: 0px 0px 0px 100px;
}
@media (max-width: 1270px) {
	.block-slider_no .block-slider__right {
		padding: 0px;
		margin: 0px 0px 30px 0px;
	}
}

.d404 {
	position: relative;
}
.d404 header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.d404__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.d404__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.d404__content {
	position: relative;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.d404__content > ._container {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.d404__img {
	max-width: 700px;
}
.d404__img img {
	width: 100%;
}
@media (max-width: 1919px) {
	.d404__img {
		max-width: calc(260px + 440 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.d404__img {
		margin: 0px 0px 20px 0px;
	}
}

.d404__row {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.d404__title {
	font-weight: bold;
	font-size: 44px;
	line-height: 1.53;
	letter-spacing: 1.8px;
	color: #313132;
	margin: 0px 0px 50px 0px;
}
.d404__title span {
	color: #fe0000;
}
@media (max-width: 480px) {
	.d404__title span {
		display: block;
	}
}
@media (max-width: 1919px) {
	.d404__title {
		font-size: calc(30px + 14 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.d404__title {
		margin: 0px 0px 30px 0px;
	}
}

.d404__sub {
	font-size: 22px;
	line-height: 1.67;
	letter-spacing: 0.9px;
	color: #1d1d1d;
	margin: 0px 0px 40px 0px;
}
@media (max-width: 1919px) {
	.d404__sub {
		font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	}
}

.portfol__blocktitle {
	margin: 0px 0px 40px 0px;
}

.portfol__sub,
.search__sub {
	font-weight: 800;
	font-size: 42px;
	line-height: 1.33;
	color: #313132;
}
@media (max-width: 1919px) {
	.portfol__sub,
.search__sub {
		font-size: calc(30px + 12 * ((100vw - 320px) / 1600));
	}
}

.portfol__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -10px;
}
@media (max-width: 480px) {
	.portfol__items {
		margin: -4px;
	}
}

.portfol-item {
	padding: 10px;
}
.portfol-item:nth-child(14n+1) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
}
.portfol-item:nth-child(14n+2) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 37.5%;
	        flex: 0 1 37.5%;
}
.portfol-item:nth-child(14n+3) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 37.5%;
	        flex: 0 1 37.5%;
}
.portfol-item:nth-child(14n+4) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
}
.portfol-item:nth-child(14n+5) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
}
.portfol-item:nth-child(14n+6) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
}
.portfol-item:nth-child(14n+7) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
}
.portfol-item:nth-child(14n+8) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
}
.portfol-item:nth-child(14n+9) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
}
.portfol-item:nth-child(14n+10) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
}
.portfol-item:nth-child(14n+11) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
}
.portfol-item:nth-child(14n+12) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
}
.portfol-item:nth-child(14n+13) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
}
.portfol-item:nth-child(14n+14) {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
}
@media (max-width: 700px) {
	.portfol-item {
		margin: 0px 0px 0px -30px;
	}
	.portfol-item:nth-child(even) {
		margin: 0px 0px 0px 30px;
	}
	.portfol-item:nth-child(even) .portfol-item__img img {
		border-radius: 10px 0 0 10px;
	}
}
@media (max-width: 480px) {
	.portfol-item {
		margin: 0px 0px 0px -20px;
		padding: 4px;
	}
	.portfol-item:nth-child(even) {
		margin: 0px 0px 0px 20px;
	}
}

.portfol-item__row {
	position: relative;
	overflow: hidden;
}
.portfol-item__row:hover .portfol-item__block {
	-webkit-transition: all 0.6s ease 0s;
	-o-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.portfol-item__img {
	height: 276px;
}
.portfol-item__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 1919px) {
	.portfol-item__img {
		height: calc(200px + 76 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 700px) {
	.portfol-item__img img {
		border-radius: 0 10px 10px 0;
	}
}

.portfol-item__block {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 20px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-transform: scale(1.07);
	    -ms-transform: scale(1.07);
	        transform: scale(1.07);
}
.portfol-item__block .btn {
	height: 42px;
	padding: 10px 30px;
	border: 2px solid #fe0000;
	color: #fe0000;
}
@media (min-width: 1024px) {
	.portfol-item__block .btn:hover {
		border: 2px solid #313132;
		color: #313132;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.portfol-item__name {
	font-weight: 800;
	font-size: 20px;
	line-height: 1.29;
	color: #313132;
}
@media (max-width: 1919px) {
	.portfol-item__name {
		font-size: calc(18px + 2 * ((100vw - 320px) / 1600));
	}
}

.portfol-item__desc {
	font-size: 18px;
	line-height: 1.33;
	color: #313132;
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1919px) {
	.portfol-item__desc {
		font-size: calc(14px + 4 * ((100vw - 320px) / 1600));
	}
}

.serts {
	padding: 60px 0px;
	background: #e9edef;
}
.serts .infoblock__dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -20px -5px;
}
.serts .infoblock__dl li {
	padding: 20px 5px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
}
.serts .infoblock__dl li::before {
	left: 5px;
}
@media (max-width: 480px) {
	.serts .infoblock__dl li::before {
		width: 30px;
		height: 30px;
		background: #fff url("../img/icons/39.svg") no-repeat;
		background-size: 18px;
		border-radius: 6px;
		background-position: center;
	}
}
@media (max-width: 480px) {
	.serts .infoblock__dl li::before {
		left: 0;
	}
}
.serts .infoblock__dl li a {
	display: block;
	padding: 0px 0px 0px 35px;
}
@media (max-width: 1200px) {
	.serts .infoblock__dl li {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.333%;
		        flex: 0 0 33.333%;
	}
}
@media (max-width: 600px) {
	.serts .infoblock__dl li {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 480px) {
	.serts .infoblock__dl a {
		font-size: 14px;
	}
}

.serts__req {
	margin: 60px 0px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.serts__req .infoblock__title {
	margin: 0px 0px 20px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
.serts__req .infoblock__dl {
	margin: 0px 0px 0px 0px;
}
.serts__req .infoblock__dl li {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 100%;
	        flex: 0 0 100%;
}
.serts__req .infoblock__dl li::before {
	left: 0;
	top: 50%;
}
.serts__req > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 820px) {
	.serts__req > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 820px) {
	.serts__req {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.serts__block {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
.serts__block p {
	font-size: 22px;
	line-height: 1.33;
	text-align: left;
	color: #000;
}
@media (max-width: 1919px) {
	.serts__block p {
		font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	}
}

@media (max-width: 480px) {
	.page-hero_p header {
		background: #e8ecef;
	}
}
@media (max-width: 480px) {
	.page-hero_p .page-hero__bg {
		position: relative;
		height: 250px;
	}
}
.page-hero_p .page-hero__content {
	height: 600px;
	padding: 20px 0px 80px 0px;
}
@media (max-width: 1919px) {
	.page-hero_p .page-hero__content {
		height: calc(300px + 300 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.page-hero_p .page-hero__content {
		height: auto;
		padding: 20px 0px 25px 0px;
	}
}
.page-hero_p .bread a {
	color: #fff;
}
@media (max-width: 480px) {
	.page-hero_p .bread a {
		color: #171717;
	}
}
.page-hero_p .page-hero__title {
	font-size: 94px;
	color: #fff;
}
.page-hero_p .page-hero__title span {
	color: #fff;
}
@media (max-width: 480px) {
	.page-hero_p .page-hero__title span {
		color: #fe0000;
	}
}
@media (max-width: 1919px) {
	.page-hero_p .page-hero__title {
		font-size: calc(30px + 64 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.page-hero_p .page-hero__title {
		color: #313132;
	}
}

.park-block {
	padding-top: 50px;
	padding-bottom: 50px;
	background: #e4e4e4;
}

.park-block__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media (max-width: 700px) {
	.park-block__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.park-block__title {
	text-transform: none;
	font-weight: 800;
	font-size: 72px;
	line-height: 1.1;
	color: #1d1d1d;
	margin: 0px 40px 0px 0px;
	position: relative;
	left: -100px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.park-block__title._watcher-view {
	left: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}
@media (max-width: 1919px) {
	.park-block__title {
		font-size: calc(30px + 42 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 700px) {
	.park-block__title {
		margin: 0px 0px 20px 0px;
	}
}

.park-block__text {
	font-size: 18px;
	position: relative;
	right: -100px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.park-block__text._watcher-view {
	right: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}
@media (max-width: 480px) {
	.park-block__text {
		font-size: 16px;
	}
}

.block-slider_p1 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.block-slider_p1 .block-slider__title span {
	font-size: 50px;
	color: #1d1d1d;
}
@media (max-width: 1919px) {
	.block-slider_p1 .block-slider__title span {
		font-size: calc(30px + 20 * ((100vw - 320px) / 1600));
	}
}
.block-slider_p1 .block-slider__title b {
	font-weight: 800;
	color: #fe0000;
}
.block-slider_p1 .slider-controls {
	top: 70px;
	left: calc(50% - 65px);
}
@media (max-width: 1270px) {
	.block-slider_p1 .slider-controls {
		bottom: 404px;
		left: 50%;
		top: unset;
	}
}
@media (max-width: 820px) {
	.block-slider_p1 .slider-controls {
		bottom: 410px;
	}
}
@media (max-width: 480px) {
	.block-slider_p1 .slider-controls {
		bottom: 230px;
	}
}

.block-slider_red {
	padding-top: 60px;
	padding-bottom: 60px;
	background: #fe0000;
}
.block-slider_red .block-slider__title {
	color: #fff;
}
.block-slider_red .block-slider__title span {
	color: #fff;
	font-size: 50px;
}
@media (max-width: 1919px) {
	.block-slider_red .block-slider__title span {
		font-size: calc(30px + 20 * ((100vw - 320px) / 1600));
	}
}
.block-slider_red .block-slider__title b {
	color: #fff;
}
.block-slider_red .block-slider__text,
.block-slider_red .block-slider__sub {
	color: #fff;
	-webkit-box-flex: 0;
	    -ms-flex: 0;
	        flex: 0;
}
.block-slider_red .block-slider__text {
	font-size: 16px;
}
.block-slider_red .block-slider__block {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.block-slider_red .block-slider__block > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
.block-slider_red .slider-controls {
	background: #fff;
	top: 70px;
	left: calc(50% + 65px);
}
@media (max-width: 1270px) {
	.block-slider_red .slider-controls {
		left: 50%;
		top: unset;
	}
}
.block-slider_red .slider-controls .button-prev::before,
.block-slider_red .slider-controls .button-next::before {
	color: #1d1d1d;
}

.block-slider__text_sm {
	font-size: 18px;
}
@media (max-width: 1919px) {
	.block-slider__text_sm {
		font-size: calc(14px + 4 * ((100vw - 320px) / 1600));
	}
}

.page-hero_c .bread p, .page-hero_c .bread a {
	color: #fff;
}
.page-hero_c .page-hero__title {
	color: #fff;
}

.colors {
	background: #fff;
	padding: 60px 0px;
}
@media (max-width: 480px) {
	.colors {
		padding: 20px 0px 60px 0px;
	}
}

.colors__blocktitle {
	text-align: left;
}
.colors__blocktitle > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
@media (max-width: 480px) {
	.colors__blocktitle > *:not(:last-child) {
		margin: 0px 0px 5px 0px;
	}
}
@media (max-width: 480px) {
	.colors__blocktitle {
		background: #f6f6f7;
		margin: 0px -20px;
		padding: 20px 45px 20px 20px;
	}
}

.colors__text {
	font-size: 18px;
	color: #000;
}
@media (max-width: 480px) {
	.colors__text {
		font-size: 12px;
	}
}

.colors__sub {
	font-size: 34px;
	text-transform: uppercase;
	color: #fe0000;
}
@media (max-width: 1919px) {
	.colors__sub {
		font-size: calc(20px + 14 * ((100vw - 320px) / 1600));
	}
}

.colors-blocks .block > *:not(:last-child) {
	margin: 0px 0px 50px 0px;
}
@media (max-width: 480px) {
	.colors-blocks .block > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
.colors-blocks .block__title {
	width: 100%;
	position: relative;
}
@media (max-width: 480px) {
	.colors-blocks .block__title::after {
		font-family: icomoon;
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		-webkit-transform: translate(0, -50%) rotate(90deg);
		    -ms-transform: translate(0, -50%) rotate(90deg);
		        transform: translate(0, -50%) rotate(90deg);
		font-size: 25px;
		color: #323233;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.colors-blocks .block__title._active::after {
		color: #fe0000;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.colors__filter {
	margin: 0px 0px 40px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.colors__filter .select_products-filters__all .select__content {
	max-width: 350px;
}
@media (max-width: 480px) {
	.colors__filter .select_products-filters__all .select__content {
		max-width: 300px;
	}
}
@media (max-width: 360px) {
	.colors__filter .select_products-filters__all .select__content {
		max-width: 260px;
	}
}
@media (max-width: 480px) {
	.colors__filter {
		margin: 0px 0px 15px 0px;
	}
}

.colors__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -10px;
}
@media (max-width: 480px) {
	.colors__items {
		padding: 30px 0px 0px 0px;
	}
}

.colors__item {
	padding: 10px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 12.5%;
	        flex: 0 0 12.5%;
}
@media (max-width: 1024px) {
	.colors__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 25%;
		        flex: 0 0 25%;
	}
}
@media (max-width: 480px) {
	.colors__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.333%;
		        flex: 0 0 33.333%;
	}
}

.colors__name {
	display: block;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.1;
	text-align: center;
}
@media (max-width: 1300px) {
	.colors__name {
		padding: 0;
	}
}
@media (max-width: 480px) {
	.colors__name {
		font-size: 12px;
	}
}
@media (max-width: 360px) {
	.colors__name {
		font-size: 11px;
	}
}

.colors__mod {
	margin: 5px 0px 0px 0px;
	text-align: center;
}
@media (max-width: 1300px) {
	.colors__mod {
		padding: 0;
	}
}
@media (max-width: 480px) {
	.colors__mod {
		font-size: 12px;
	}
}

.colors__color {
	width: 100%;
	padding: 0px 0px 100% 0px;
	margin: 0px 0px 10px 0px;
}
.colors__color img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.sofas {
	background: #eb5f5c;
	padding: 60px 0px;
	margin: 60px 0px 0px 0px;
}
@media (max-width: 760px) {
	.sofas {
		background: none;
		padding: 0;
	}
}

.sofas__dec1 {
	position: absolute;
	top: -100px;
	right: -40px;
	width: 180%;
	opacity: 0.4;
	pointer-events: none;
}
.sofas__dec1 img {
	width: 100%;
}
@media (max-width: 760px) {
	.sofas__dec1 {
		top: 50%;
		-webkit-transform: translate(0, -50%);
		    -ms-transform: translate(0, -50%);
		        transform: translate(0, -50%);
		right: -45%;
		width: 140%;
	}
}

.sofas__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 760px) {
	.sofas__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.sofas__left {
	position: relative;
	z-index: 1;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 720px;
	        flex: 0 1 720px;
	margin: 0px 35px 0px 0px;
}
@media (max-width: 760px) {
	.sofas__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		background: #eb5f5c;
		border-radius: 14px;
		margin: 0px -30px 3px -30px;
		padding: 30px;
		overflow: hidden;
	}
}
@media (max-width: 480px) {
	.sofas__left {
		margin: 0px -20px 3px -20px;
		padding: 30px 20px;
	}
}

.sofas__title {
	font-size: 55px;
	color: #fff;
	font-weight: 400;
	margin: 0px 0px 44px 0px;
}
.sofas__title span {
	color: #fff;
	font-weight: 800;
}
@media (max-width: 1260px) {
	.sofas__title {
		font-size: calc(30px + 30 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.sofas__title {
		margin: 0px 0px 30px 0px;
	}
	.sofas__title br {
		display: none;
	}
}

.sofas__img {
	margin: 0px 0px 60px -120px;
}
.sofas__img img {
	width: 100%;
	border-radius: 0 12px 12px 0;
}
@media (max-width: 1260px) {
	.sofas__img {
		margin: 0px 0px 60px -30px;
	}
}
@media (max-width: 1024px) {
	.sofas__img {
		margin: 0px 0px 30px -120px;
	}
}

.sofas-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: -20px;
}
@media (max-width: 1024px) {
	.sofas-items {
		margin: -10px;
	}
}

.sofas-item {
	padding: 20px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.sofas-item p {
	font-size: 20px;
	line-height: 1.17;
	letter-spacing: 0.6px;
	text-align: left;
	color: #fff;
}
.sofas-item p span {
	font-weight: 700;
}
@media (max-width: 1260px) {
	.sofas-item p {
		font-size: calc(12px + 10 * ((100vw - 320px) / 1600));
	}
}
.sofas-item > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 480px) {
	.sofas-item > *:not(:last-child) {
		margin: 0px 0px 10px 0px;
	}
}
@media (max-width: 1024px) {
	.sofas-item {
		padding: 10px;
	}
}

.sofas-item__img {
	width: 51px;
	height: 51px;
}
.sofas-item__img img {
	width: 100%;
}
@media (max-width: 1024px) {
	.sofas-item__img {
		width: 40px;
		height: 40px;
	}
}

.sofas__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 450px;
	        flex: 0 1 450px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
@media (max-width: 760px) {
	.sofas__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		background: #eb5f5c;
		border-radius: 14px;
		margin: 0px -30px;
		padding: 30px;
	}
}
@media (max-width: 480px) {
	.sofas__right {
		margin: 0px -20px;
		padding: 30px 20px;
	}
}

.sofas__sub {
	text-transform: uppercase;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 1.8px;
	text-align: left;
	color: #fff;
	max-width: 320px;
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
	margin: 0px 0px 60px 0px;
}
@media (max-width: 1260px) {
	.sofas__sub {
		font-size: calc(22px + 6 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.sofas__sub {
		text-transform: none;
		line-height: 1.2;
		margin: 0px 0px 30px 0px;
	}
}
@media (max-width: 760px) {
	.sofas__sub {
		-ms-flex-item-align: start;
		    -ms-grid-row-align: start;
		    align-self: start;
	}
	.sofas__sub span {
		font-weight: 700;
	}
}

.sofas__text {
	color: #fff;
	line-height: 1.4;
	margin: 0px 0px 30px 0px;
}
.sofas__text span {
	font-weight: 700;
}
.sofas__text > *:not(:last-child) {
	margin: 0px 0px 16px 0px;
}

.sofas__more {
	text-decoration: underline;
	font-size: 18px;
	line-height: 1.11;
	letter-spacing: 0.9px;
	text-align: left;
	color: #faed3f;
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
	margin: 0px 0px 30px 0px;
}
@media (min-width: 1024px) {
	.sofas__more:hover {
		color: #fff;
	}
}
@media (max-width: 1024px) {
	.sofas__more {
		-ms-flex-item-align: center;
		    -ms-grid-row-align: center;
		    align-self: center;
	}
}
@media (max-width: 820px) {
	.sofas__more {
		font-size: 16px;
	}
}

.sofas__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.sofas__block p {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 130px;
	        flex: 0 0 130px;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.4px;
	text-align: right;
	color: #fff;
}
@media (max-width: 1024px) {
	.sofas__block p {
		text-align: center;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}
.sofas__block > *:not(:last-child) {
	margin: 0px 16px 0px 0px;
}
@media (max-width: 1024px) {
	.sofas__block > *:not(:last-child) {
		margin: 16px 0px 0px 0px;
	}
}
@media (max-width: 1024px) {
	.sofas__block {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}

.sofas__btn {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}

.page-hero_s {
	min-height: 730px;
}
.page-hero_s .page-hero__bg img {
	-o-object-position: 90% center;
	   object-position: 90% center;
}
@media (max-width: 480px) {
	.page-hero_s {
		min-height: 468px;
	}
}

.infoblock_s {
	padding: 70px 0px 0px 0px;
}
.infoblock_s .title {
	text-transform: none;
	font-size: 60px;
	line-height: 1;
}
.infoblock_s .title span {
	color: #ff5f5b;
}
@media (max-width: 1260px) {
	.infoblock_s .title {
		font-size: calc(30px + 40 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 700px) {
	.infoblock_s .title {
		text-transform: uppercase;
		line-height: 1.3;
	}
}
.infoblock_s .text span {
	font-weight: 600;
}
.infoblock_s .sofas__block {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.infoblock_s .sofas__block p {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 250px;
	        flex: 0 0 250px;
	color: #313132;
}
@media (max-width: 1024px) {
	.infoblock_s .sofas__block p {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		max-width: 210px;
	}
}
@media (max-width: 480px) {
	.infoblock_s {
		padding: 50px 0px 0px 0px;
	}
}

.infoblock__subt {
	font-size: 28px;
	line-height: 1.4;
	font-weight: 500;
	text-transform: uppercase;
}
.infoblock__subt span {
	color: #ff5f5b;
}
@media (max-width: 1260px) {
	.infoblock__subt {
		font-size: calc(20px + 12 * ((100vw - 320px) / 1600));
	}
}

.sofas-advant {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 50px 0px;
	margin: 100px 0 0px 0px;
	background: #ff5f5b;
}
@media (max-width: 820px) {
	.sofas-advant .sofas-items {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}
.sofas-advant .sofas-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 20%;
	        flex: 0 0 20%;
}
@media (max-width: 820px) {
	.sofas-advant .sofas-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.333%;
		        flex: 0 0 33.333%;
	}
}
@media (max-width: 480px) {
	.sofas-advant {
		margin: 50px 0px 0px 0px;
	}
}

.sofas-item_4 .sofas-item__img {
	width: 64px;
}
@media (max-width: 1024px) {
	.sofas-item_4 .sofas-item__img {
		width: 54px;
	}
}
@media (max-width: 480px) {
	.sofas-item_4 .sofas-item__img {
		width: 50px;
	}
}

.sofas-advant__dec1 {
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 47.5%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 100%;
	height: 100%;
	opacity: 0.5;
}
.sofas-advant__dec1 img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center 95%;
	   object-position: center 95%;
}
@media (max-width: 480px) {
	.sofas-advant__dec1 img {
		-o-object-position: center;
		   object-position: center;
	}
}
@media (max-width: 480px) {
	.sofas-advant__dec1 {
		left: 44%;
		width: 270%;
		height: 270%;
		bottom: unset;
		top: -20px;
	}
}

.title-block {
	background: #f6f6f7;
	padding: 30px 0px;
}
.title-block .title span {
	color: #323334;
	font-weight: 600;
}

.howwework_s .howwework__items .howwework-item:nth-child(1) .howwework-item__row {
	background: #e5dacc;
}
.howwework_s .howwework__items .howwework-item:nth-child(4) .howwework-item__row {
	background: #f0cdb3;
}
.howwework_s .howwework__name {
	margin: 0;
}
.howwework_s .howwework__type {
	font-size: 30px;
	text-transform: uppercase;
	margin: 0px 0px 60px 0px;
}
@media (max-width: 480px) {
	.howwework_s .howwework__type {
		font-size: 24px;
		margin: 0px 0px 20px 0px;
	}
}
.howwework_s .howwework__product {
	width: 100%;
}

.sofaint {
	background: #ff0000;
	padding: 60px 0px;
}

.sofaint__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0px 0px 30px 0px;
}
.sofaint__head > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
@media (max-width: 700px) {
	.sofaint__head > * {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}
.sofaint__head > *:not(:last-child) {
	margin: 0px 40px 0px 0px;
}
@media (max-width: 820px) {
	.sofaint__head > *:not(:last-child) {
		margin: 0px 30px 0px 0px;
	}
}
@media (max-width: 700px) {
	.sofaint__head > *:not(:last-child) {
		margin: 0px 0px 15px 0px;
	}
}
@media (max-width: 700px) {
	.sofaint__head {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.sofaint__title {
	color: #fff;
	font-size: 48px;
}
.sofaint__title span {
	font-weight: 500;
	color: #fff;
}
@media (max-width: 1260px) {
	.sofaint__title {
		font-size: calc(26px + 28 * ((100vw - 320px) / 1600));
	}
}

.sofaint__sub {
	color: #fff;
	font-size: 26px;
	line-height: 1.3;
}
@media (max-width: 1260px) {
	.sofaint__sub {
		font-size: calc(18px + 12 * ((100vw - 320px) / 1600));
	}
}

.sofaint__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.sofaint__row > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
@media (max-width: 700px) {
	.sofaint__row > * {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}
.sofaint__row > *:not(:last-child) {
	margin: 0px 40px 0px 0px;
}
@media (max-width: 820px) {
	.sofaint__row > *:not(:last-child) {
		margin: 0px 30px 0px 0px;
	}
}
@media (max-width: 820px) and (max-width: 700px) {
	.sofaint__row > *:not(:last-child) {
		margin: 0px 0px 30px 0px;
	}
}
@media (max-width: 1260px) {
	.sofaint__row {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}
@media (max-width: 700px) {
	.sofaint__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.sofaint__img {
	margin: 0px 0px 0px -120px;
}
.sofaint__img img {
	width: 100%;
	border-radius: 10px;
}
@media (max-width: 1440px) {
	.sofaint__img img {
		border-radius: 0 10px 10px 0;
	}
}
@media (max-width: 700px) {
	.sofaint__img {
		margin: 0px 0px 0px -120px;
	}
}

.sofaint__text {
	color: #fff;
	font-size: 18px;
	line-height: 1.6;
}
.sofaint__text > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 820px) {
	.sofaint__text > *:not(:last-child) {
		margin: 0px 0px 15px 0px;
	}
}
.sofaint__text span {
	font-weight: 700;
}
.sofaint__text a {
	color: #fff;
	font-size: 18px;
}
@media (min-width: 1024px) {
	.sofaint__text a:hover {
		text-decoration: underline;
	}
}
@media (max-width: 820px) {
	.sofaint__text {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.sofaint__text {
		font-size: 14px;
	}
}

.search {
	padding: 0px 0px 60px 0px;
}
.search .products-items {
	padding: 100px 0px 0px 0px;
}
@media (max-width: 480px) {
	.search .products-items {
		padding: 40px 0px 0px 0px;
	}
}
.search .products-main {
	padding: 10px 0px 0px 0px;
}
.search .hero__blocktitle {
	padding: 60px 0px 0px 0px;
	margin: 0px 0px 20px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.search .hero__blocktitle .title {
	font-size: 55px;
}
@media (max-width: 1919px) {
	.search .hero__blocktitle .title {
		font-size: calc(36px + 19 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 760px) {
	.search .hero__blocktitle {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}
@media (max-width: 480px) {
	.search .hero__blocktitle {
		padding: 40px 0px 0px 0px;
	}
}
.search .hero__anti {
	position: relative;
	bottom: 0;
	-webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 760px) {
	.search .hero__anti {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
	}
}


.search__sub {
	line-height: 1.1;
}
.search__sub span {
	font-weight: 400;
}

.cart-main__quant input, .cart-main__price {
    transition: opacity 0.3s ease-in-out;
}

.bx-filter.bx-blue.bx-filter-horizontal, .popup-window.--open {
	opacity: 0;
	pointer-events: none;
	position: absolute;
	left: -9999px;
}

.portfol-item.hidden {
    display: none;
}

.wrapper {
min-height: unset;
}

