@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,400..700&display=swap");
:root {
	--divider: #efefef;
	--gray: #737373;
	--blue: #0e2043;
	--white: #fff;
	--label: #f8f8f8;
}

* {
	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: "Inter Tight";
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: "Inter Tight";
}

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 15px;
	}
}

.title {
	font-weight: 600;
	font-size: 40px;
	line-height: 120%;
	color: var(--blue);
}
@media (max-width: 1919px) {
	.title {
		font-size: calc(26px + 14 * ((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;
	height: 50px;
	color: #fff;
	text-align: center;
	border-radius: 70px;
	padding: 10px 40px;
	height: 62px;
	font-size: 18px;
	font-weight: 600;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background: var(--blue);
	border: 1px solid var(--blue);
}
@media (min-width: 1024px) {
	.btn:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background: #fff;
		color: var(--blue);
	}
}
@media (max-width: 1024px) {
	.btn {
		height: 50px;
		padding: 10px 25px;
		font-size: 16px;
	}
}

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

.breadcrumbs {
	margin: 20px 0px 30px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.breadcrumbs * {
	white-space: nowrap;
	line-height: 1.2;
}
.breadcrumbs a {
	color: var(--gray);
}
@media (min-width: 1024px) {
	.breadcrumbs a:hover {
		text-decoration: underline;
	}
}
.breadcrumbs .breadcrumbs__current {
	color: var(--gray);
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	max-width: 350px;
}
.breadcrumbs > *:not(:last-child) {
	margin: 0px 5px 0px 0px;
}
@media (max-width: 480px) {
	.breadcrumbs {
		display: none;
	}
}

.header {
	position: relative;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.header-top {
	background: var(--blue);
}
@media (max-width: 820px) {
	.header-top {
		display: none;
	}
}

.header-top__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;
	padding: 15px 0px;
	min-height: 60px;
}
.header-top__row > *:not(:last-child) {
	margin: 0px 10px 0px 0px;
}
@media (max-width: 820px) {
	.header-top__row > *:not(:last-child) {
		margin: 0px 0px 15px 0px;
	}
}
@media (max-width: 820px) {
	.header-top__row {
		-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;
	}
}

.header-top__title {
	font-size: 16px;
	line-height: 1.2;
	color: var(--white);
}

.header-top__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.header-top__block > *:not(:last-child) {
	margin: 0px 30px 0px 0px;
}

.header-top__phones {
	position: relative;
	padding: 0px 0px 0px 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.header-top__phones::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/tel.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 820px) {
	.header-top__phones::before {
		background: url("../img/icons/tel-b.svg") no-repeat;
		background-size: contain;
	}
}
.header-top__phones > *:not(:last-child) {
	margin: 0px 10px 0px 0px;
}
.header-top__phones > *:not(:last-child)::after {
	content: ",";
}
@media (max-width: 820px) {
	.header-top__phones > *:not(:last-child) {
		margin: 0px 0px 10px 0px;
	}
}
@media (max-width: 820px) {
	.header-top__phones {
		margin: 30px 0px 0px 0px;
		-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;
	}
}

.header-top__tel {
	position: relative;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	white-space: nowrap;
}
@media (max-width: 820px) {
	.header-top__tel {
		color: #0e2043;
	}
}

.callback__btn {
	display: none;
	font-weight: 600;
	font-size: 16px;
	color: var(--white);
	position: relative;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.callback__btn::before {
	content: "";
	position: absolute;
	top: 104%;
	left: 0;
	width: 0%;
	height: 1px;
	background: #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) {
	.callback__btn:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.callback__btn:hover::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		width: 100%;
	}
}

.header__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;
	padding: 20px 0px;
}
@media (max-width: 820px) {
	.header__row {
		margin: 0px 55px 0px 0px;
	}
}
@media (max-width: 480px) {
	.header__row {
		margin: 0px 45px 0px 0px;
	}
}

.header__logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 222px;
	        flex: 0 0 222px;
	position: relative;
	z-index: 5;
}
.header__logo img {
	width: 100%;
}
@media (max-width: 820px) {
	.header__logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 170px;
		        flex: 0 1 170px;
	}
}

.menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.menu__list li {
	margin: 0px 40px 0px 0px;
}
.menu__list li:last-child {
	margin: 0;
}
@media (max-width: 820px) {
	.menu__list {
		-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;
	}
	.menu__list li {
		margin: 0px 0px 30px 0px;
	}
}

.menu__link {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-weight: 600;
	font-size: 16px;
	color: var(--blue);
	position: relative;
}
.menu__link::before {
	content: "";
	position: absolute;
	top: 104%;
	left: 0;
	width: 0%;
	height: 1px;
	background: var(--blue);
	-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__link:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.menu__link:hover::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		width: 100%;
	}
}

.menu__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}
@media (max-width: 820px) {
	.menu__body {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background: #fff;
		-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;
		padding: 30px 40px;
		overflow: auto;
	}
	.menu__body._active {
		right: 0;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 820px) and (max-width: 820px) {
	.menu__body {
		padding: 125px 40px 75px 40px;
	}
}
@media (max-width: 820px) and (max-width: 480px) {
	.menu__body {
		padding: 100px 20px;
	}
}

.icon-menu {
	display: none;
}
@media (max-width: 820px) {
	.icon-menu {
		display: block;
		position: absolute;
		top: 50%;
		right: 30px;
		-webkit-transform: translate(0, -50%);
		    -ms-transform: translate(0, -50%);
		        transform: translate(0, -50%);
		width: 30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
	}
	.icon-menu span {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		top: calc(50% - 1px);
		left: 0px;
		position: absolute;
		width: 100%;
		height: 2px;
		background: #000;
	}
	.icon-menu span:first-child {
		top: 0px;
	}
	.icon-menu span:last-child {
		top: auto;
		bottom: 0px;
	}
	.icon-menu._active span {
		-webkit-transform: scale(0);
		    -ms-transform: scale(0);
		        transform: scale(0);
	}
	.icon-menu._active span:first-child {
		-webkit-transform: rotate(-45deg);
		    -ms-transform: rotate(-45deg);
		        transform: rotate(-45deg);
		top: calc(50% - 1px);
	}
	.icon-menu._active span:last-child {
		-webkit-transform: rotate(45deg);
		    -ms-transform: rotate(45deg);
		        transform: rotate(45deg);
		bottom: calc(50% - 1px);
	}
}
@media (max-width: 480px) {
	.icon-menu {
		right: 15px;
	}
}

/*
body {
	&._lock {
		overflow: hidden;
		.header {
			left: -7.5px;
		}
	}
}
*/
body::after {
	content: "";
	background-color: rgba(0, 0, 0, 0.8);
	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;
}

.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;
}

.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;
	width: 100%;
	max-width: 900px;
	border-radius: 20px;
}
.lock .popup__content {
	visibility: visible;
}

.popup__close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	background: url("../img/icons/close.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 480px) {
	.popup__close {
		width: 20px;
		height: 20px;
		top: 10px;
		right: 10px;
	}
}

.contact-popup .popup__content {
	max-width: 500px;
	background: #fff;
	padding: 40px;
}
.contact-popup .popup__content > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 480px) {
	.contact-popup .popup__content {
		padding: 30px 15px;
	}
}
.popup__title {
	font-size: 28px;
	text-align: center;
}
@media (max-width: 480px) {
	.popup__title {
		font-size: 22px;
	}
}

footer {
	padding: 60px 0px;
	background: #0e2043;
}

.footer__top {
	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;
	margin: 0px 0px 40px 0px;
}
.footer__top > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 760px) {
	.footer__top > *:not(:last-child) {
		margin: 0px 0px 40px 0px;
	}
}
@media (max-width: 760px) {
	.footer__top {
		-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;
		text-align: center;
	}
}

.footer__logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 222px;
	        flex: 0 1 222px;
}
.footer__logo img {
	width: 100%;
}
@media (max-width: 820px) {
	.footer__logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 170px;
		        flex: 0 1 170px;
	}
}
@media (max-width: 760px) {
	.footer__logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 200px;
	}
}

.footer__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 40px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.footer__menu a {
	font-weight: 600;
	font-size: 16px;
	color: var(--white);
}
@media (min-width: 1024px) {
	.footer__menu a:hover {
		text-decoration: underline;
	}
}
@media (max-width: 760px) {
	.footer__menu {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}

.footer__bot {
	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;
}
.footer__bot > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 760px) {
	.footer__bot > *:not(:last-child) {
		margin: 20px 0px 0px 0px;
	}
}
@media (max-width: 760px) {
	.footer__bot {
		-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;
		text-align: center;
	}
}

.footer__copy {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	color: var(--white);
}

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

.footer__phones {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0px 0px 0px 40px;
	margin: 0px 30px 0px 0px;
}
.footer__phones::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/tel.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 1024px) {
	.footer__phones::before {
		display: none;
	}
}
.footer__phones > *:not(:last-child) {
	margin: 0px 10px 0px 0px;
}
.footer__phones > *:not(:last-child)::after {
	content: ",";
}
@media (max-width: 1024px) {
	.footer__phones > *:not(:last-child) {
		margin: 0px 0px 10px 0px;
	}
}
@media (max-width: 1024px) {
	.footer__phones {
		-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;
		padding: 0;
		margin: 0;
	}
}

.footer__tel {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	line-height: 140%;
	color: var(--white);
	white-space: nowrap;
}
@media (max-width: 760px) {
	.footer__tel {
		margin: 0px 0px 30px 0px;
	}
}

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, textarea {
	width: 100%;
	height: 60px;
	padding: 10px 20px;
	border: 1px solid var(--blue);
	border-radius: 50px;
	font-size: 16px;
}
.input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #A3A3A3;
}
.input::-moz-placeholder, textarea::-moz-placeholder {
	color: #A3A3A3;
}
.input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #A3A3A3;
}
.input::-ms-input-placeholder, textarea::-ms-input-placeholder {
	color: #A3A3A3;
}
.input::placeholder, textarea::placeholder {
	color: #A3A3A3;
}
.input._form-error, textarea._form-error {
	border: 1px solid red;
}
@media (max-width: 480px) {
	.input, textarea {
		height: 50px;
	}
}

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

.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__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;
	pointer-events: none;
}

.contact-form {
	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;
}
.contact-form > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.contact-form__agree {
	display: block;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	color: var(--gray);
}

.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;
	left: 0;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	padding: 40px 0px 0px 0px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.slider-controls .button-prev,
.slider-controls .button-next {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	-webkit-transform: translate(0);
	    -ms-transform: translate(0);
	        transform: translate(0);
}
.slider-controls .button-prev {
	margin: 0px 20px 0px 0px;
}

.button-prev {
	position: absolute;
	top: 50%;
	left: 20px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 50px;
	height: 50px;
	background: url("../img/icons/p-left.svg") no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
}

.button-next {
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 50px;
	height: 50px;
	background: url("../img/icons/p-right.svg") no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: #D9D8D8;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: #F29BAB;
	border-radius: 10px;
	left: 0;
	top: 0;
}

.swiper-button-disabled {
	opacity: 0.6;
}

.product-slider {
	width: 100%;
}
.product-slider .swiper-slide {
	height: 380px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
}
.product-slider .swiper-slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 820px) {
	.product-slider .swiper-slide {
		height: 300px;
	}
}

.hero__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-radius: 10px;
	background: #f8f8f8;
	position: relative;
	z-index: 1;
}
@media (max-width: 700px) {
	.hero__row {
		-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;
		text-align: center;
	}
}

.hero__dec1 {
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	width: 500px;
}
.hero__dec1 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.hero__dec1 {
		width: calc(250px + 250 * ((100vw - 320px) / 1600));
	}
}

.hero__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 380px;
	        flex: 0 0 380px;
	padding: 90px 20px 90px 60px;
}
@media (max-width: 1260px) {
	.hero__left {
		padding: 40px 20px 40px 40px;
	}
}
@media (max-width: 700px) {
	.hero__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		padding: 40px 20px;
	}
}

.hero__title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 54px;
	margin: 0px 0px 40px 0px;
}
@media (max-width: 1919px) {
	.hero__title {
		font-size: calc(30px + 24 * ((100vw - 320px) / 1600));
	}
}

.hero__img {
	padding: 20px 0px;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 580px;
	        flex: 1 1 580px;
}
.hero__img img {
	width: 100%;
}
@media (max-width: 700px) {
	.hero__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		padding: 0px 0px 40px 0px;
	}
}

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

.products_cat {
	padding: 0;
}
.products_cat .products-item__title {
	font-size: 18px;
}
@media (max-width: 1919px) {
	.products_cat .products-item__title {
		font-size: calc(14px + 4 * ((100vw - 320px) / 1600));
	}
}

.products__title {
	margin: 0px 0px 30px 0px;
}

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

.products-item {
	padding: 10px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
}
@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 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 480px) {
	.products-item {
		padding: 7.5px;
	}
}

.products-item__row {
	border-radius: 10px;
	background: #f8f8f8;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 25px;
	height: 100%;
	min-height: 265px;
	-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__row:hover {
		background: #bababa;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.products-item__row:hover .products-item__title {
		color: #fff;
	}
}
@media (max-width: 1024px) {
	.products-item__row {
		min-height: 230px;
	}
}
@media (max-width: 820px) {
	.products-item__row {
		min-height: 150px;
	}
}
@media (max-width: 480px) {
	.products-item__row {
		padding: 20px 15px;
	}
}

.products-item__title {
	font-weight: 600;
	font-size: 20px;
	line-height: 140%;
	color: var(--blue);
	margin: 0px 0px 5px 0px;
}
@media (max-width: 1919px) {
	.products-item__title {
		font-size: calc(16px + 4 * ((100vw - 320px) / 1600));
	}
}

.products-item__img {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.products-item__img img {
	width: 100%;
}

.products-item_1 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
}
.products-item_1 .products-item__row {
	background: none;
	padding: 0;
}
@media (min-width: 1024px) {
	.products-item_1 .products-item__row:hover .products-item__img {
		background: #DEDEDE;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.products-item_1 .products-item__row:hover .products-item__title {
		color: var(--blue);
	}
}
.products-item_1 .products-item__img {
	background: #f8f8f8;
	padding: 20px;
	height: 240px;
	max-height: 240px;
	margin: 0px 0px 20px 0px;
	border-radius: 10px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.products-item_1 .products-item__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center bottom;
	   object-position: center bottom;
}
@media (max-width: 480px) {
	.products-item_1 .products-item__img img {
		-o-object-position: center;
		   object-position: center;
	}
}
@media (max-width: 1260px) {
	.products-item_1 .products-item__img {
		height: calc(120px + 200 * ((100vw - 320px) / 1600));
		max-height: calc(120px + 200 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.products-item_1 .products-item__img {
		height: calc(100px + 320 * ((100vw - 320px) / 1600));
		max-height: calc(100px + 320 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.products-item_1 .products-item__img {
		padding: 10px;
		height: calc(200px + 120 * ((100vw - 320px) / 1600));
		max-height: calc(200px + 120 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.products-item_1 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 480px) {
	.products-item_1 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.products-item__options {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	color: var(--gray);
	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: 480px) {
	.products-item__options {
		font-size: 14px;
	}
}

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

.adv__title {
	margin: 0px 0px 30px 0px;
}

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

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

.adv-item__row {
	position: relative;
}

.adv-item__img {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	height: 285px;
}
.adv-item__img::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70%;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}
.adv-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) {
	.adv-item__img {
		height: calc(170px + 115 * ((100vw - 320px) / 1600));
	}
}

.adv-item__title {
	position: absolute;
	z-index: 1;
	bottom: 0px;
	left: 0px;
	padding: 20px;
	font-weight: 600;
	font-size: 20px;
	line-height: 140%;
	color: var(--white);
	max-width: 90%;
}
@media (max-width: 1919px) {
	.adv-item__title {
		font-size: calc(16px + 4 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.adv-item__title {
		max-width: 100%;
	}
}

.product__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 60px 0px;
}
@media (max-width: 700px) {
	.product__row {
		-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;
	}
}

.product__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 380px;
	        flex: 0 0 380px;
	margin: 0px 30px 0px 0px;
	min-width: 0;
}
@media (max-width: 820px) {
	.product__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 300px;
		        flex: 0 0 300px;
	}
}
@media (max-width: 700px) {
	.product__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		max-width: 400px;
	}
}

.product__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 790px;
	        flex: 0 1 790px;
}
@media (max-width: 700px) {
	.product__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}
.product__right > *:not(:last-child) {
	margin-bottom: 30px;
}

.product__title {
	text-align: center;
}

.product__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.product__block > *:not(:last-child) {
	margin: 0px 90px 0px 0px;
}
@media (max-width: 1260px) {
	.product__block > *:not(:last-child) {
		margin: 0px 40px 0px 0px;
	}
}
@media (max-width: 700px) {
	.product__block {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}

.product__item span {
	font-size: 16px;
	line-height: 160%;
	color: var(--gray);
	display: block;
}
.product__item b {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 40px;
	line-height: 120%;
	color: var(--blue);
}
@media (max-width: 1919px) {
	.product__item b {
		font-size: calc(26px + 14 * ((100vw - 320px) / 1600));
	}
}

.product__desc {
	font-size: 16px;
	line-height: 160%;
	color: var(--gray);
}
.product__desc > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.product__subtitle {
	font-weight: 600;
	font-size: 28px;
	line-height: 140%;
	color: var(--blue);
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1919px) {
	.product__subtitle {
		font-size: calc(20px + 8 * ((100vw - 320px) / 1600));
	}
}

.product__tech {
	padding: 60px 0px;
	background: #f8f8f8;
}
.product__tech .table {
	border-radius: 10px;
	width: 100%;
	background: #fff;
	border-spacing: 0px;
	border-collapse: collapse;
	overflow: hidden;
	font-size: 16px;
	line-height: 1.2;
}
.product__tech .table tr {
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #f8f8f8;
}
.product__tech .table tr > *:not(:last-child) {
	border-right: 1px solid #f8f8f8;
}
.product__tech .table td {
	padding: 10px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: 60px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 20%;
	        flex: 0 0 20%;
	background: #fff;
	text-align: center;
}
.product__tech .table td:first-child {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	text-align: left !important;
	width: 450px;
	font-weight: 600;
}
@media (max-width: 480px) {
	.product__tech .table td:first-child {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 150px;
		        flex: 0 0 150px;
	}
}
@media (max-width: 480px) {
	.product__tech .table {
		font-size: 14px;
	}
}

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

.contacts__title {
	margin: 0px 0px 30px 0px;
}

.contacts__addr {
	display: inline-block;
	font-size: 18px;
	padding: 20px;
	border-radius: 20px;
	border: 1px solid #0e2043;
	margin: 0px 0px 30px 0px;
}
.contacts__addr > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
.contacts__addr a, .contacts__addr p {
	display: block;
	color: #0e2043;
}