@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:wght@400;500&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: "Roboto";
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

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

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

button {
	cursor: pointer;
}

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

body {
	font-size: 16px;
}
body._lock {
	overflow: hidden;
}

.wrapper {
	width: 100%;
	min-height: 100%;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
._container {
	max-width: 1330px;
	margin: 0 auto;
	padding: 0 15px;
}

.title {
	font-family: Montserrat;
	font-weight: bold;
	font-size: 30px;
	line-height: 1.2;
	text-transform: uppercase;
	color: #000000;
	position: relative;
	text-align: center;
}
.title::before {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 73px;
	height: 10px;
	background: url("../img/icons/title.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 480px) {
	.title {
		font-size: 22px;
	}
	.title::before {
		width: 50px;
	}
}

.subtitle {
	font-size: 22px;
	font-weight: 500;
	text-align: center;
	margin: 0px 0px 20px 0px;
}
@media (max-width: 480px) {
	.subtitle {
		font-size: 18px;
	}
}

.mb {
	margin: 0px 0px 89px 0px;
}
@media (max-width: 768px) {
	.mb {
		margin: 0px 0px 60px 0px;
	}
}
@media (max-width: 480px) {
	.mb {
		margin: 0px 0px 40px 0px;
	}
}

.btn {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 10px 65px 10px 34px;
	background: #FFFFFF;
	border: 3px solid #00AF9C;
	min-height: 50px;
	font-family: Montserrat;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
	color: #00B09C;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.btn::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 22px;
	height: 14px;
	background: url("../img/icons/arrow.svg") no-repeat;
	background-size: cover;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.btn:hover {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background: #E0EEED;
}
.btn:hover::before {
	right: 25px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
	.btn {
		font-size: 16px;
		padding: 10px 55px 10px 24px;
	}
	.btn::before {
		right: 20px;
	}
}
@media (max-width: 370px) {
	.btn {
		padding: 10px 45px 10px 16px;
	}
	.btn::before {
		width: 18px;
		height: 12px;
	}
}

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

.popup-callback__form .form__item {
	margin: 0px 0px 25px 0px;
	position: relative;
	border: 1px solid #E0EEED;
}
.popup-callback__form .form__btn {
	margin: 0 auto;
}

.form__error {
	position: absolute;
	bottom: -20px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	height: 20px;
	border-radius: 15px;
	color: red;
	text-align: center;
	width: 100%;
	font-size: 16px;
	padding: 3px 10px;
}

.form__sent {
	font-size: calc(15px + 5 * ((100vw - 320px) / 1600));
	position: relative;
	top: 10px;
	font-weight: bold;
	color: #00af9c;
	text-align: center;
}

.popup__form .form__error {
	position: absolute;
	bottom: -25px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	height: 20px;
	border-radius: 15px;
	color: red;
	text-align: center;
	width: 100%;
	font-size: 18px;
	padding: 3px 10px;
}
.popup__form .form__sent {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	z-index: 3;
	height: calc(100% + 50px);
	width: calc(100% + 50px);
	background-color: #dcdeff;
	color: #000476;
	text-align: center;
	font-weight: 600;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: calc(24px + 4 * ((100vw - 320px) / 1600));
	line-height: 1.3;
	border-radius: 10px;
}
.popup__form .form__sent::after {
	content: "";
	position: absolute;
	top: 15%;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 100px;
	height: 100px;
	background: url("../img/icons/ok.svg") no-repeat;
	background-size: cover;
}
@media (max-width: 480px) {
	.popup__form .form__sent::after {
		width: 80px;
		height: 80px;
	}
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	resize: none;
}

.input {
	border-radius: 0 !important;
	width: 100%;
	display: block;
	padding: 20px;
	height: 20px;
	font-size: 18px;
	background: #E0EEED;
	width: 100%;
}
.input._error {
	border: 1px solid red;
}
@media (max-width: 480px) {
	.input {
		font-size: 16px;
	}
}

textarea.input {
	height: 150px;
}
textarea.input::-webkit-input-placeholder {
	color: #000;
}
textarea.input::-moz-placeholder {
	color: #000;
}
textarea.input:-ms-input-placeholder {
	color: #000;
}
textarea.input::-ms-input-placeholder {
	color: #000;
}
textarea.input::placeholder {
	color: #000;
}

.popup {
	-webkit-overflow-scrolling: touch;
	z-index: 100;
	padding: 30px 10px;
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: visibility 0.8s ease 0s;
	-o-transition: visibility 0.8s ease 0s;
	transition: visibility 0.8s ease 0s;
	visibility: hidden;
}
.popup::before {
	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;
}
.popup.show {
	visibility: visible;
	overflow: auto;
}
.popup.show::before {
	opacity: 1;
}
.popup.show .popup__body {
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}
.popup._active {
	overflow: auto;
	visibility: visible;
}
.popup._active::before {
	opacity: 1;
}
.popup._active .popup__body {
	-webkit-transition: all 0.3s ease 0.2s;
	-o-transition: all 0.3s ease 0.2s;
	transition: all 0.3s ease 0.2s;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}
.popup__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-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__body {
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 100%;
	max-width: 800px;
}
.popup__close {
	width: 15px;
	height: 15px;
	position: absolute;
	top: 0px;
	right: 0px;
	cursor: pointer;
	z-index: 30;
	background: url("../img/icons/close.svg") 0 0 no-repeat;
	background-size: contain;
}

.popup-callback .popup__body {
	max-width: 600px;
	background: #fff;
	padding: 40px;
}
@media (max-width: 480px) {
	.popup-callback .popup__body {
		padding: 40px 20px;
	}
}
.popup-callback .popup__close {
	top: 0px;
	right: 0px;
	width: 35px;
	height: 35px;
}

.popup-callback__title {
	text-align: center;
	font-size: 22px;
	margin: 0px 0px 30px 0px;
	font-family: Montserrat;
	font-weight: 600;
	padding: 0px 40px;
}

.header {
	margin: 0px 0px 13px 0px;
	border-bottom: 2px solid #F5F5F5;
}

.header__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 900px) {
	.header__row {
		min-height: 80px;
	}
}
@media (max-width: 480px) {
	.header__row {
		min-height: 60px;
	}
}

.header__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 100%;
}

.header__logo {
	display: block;
	width: 250px;
	position: relative;
	z-index: 1;
}
.header__logo img {
	width: 100%;
}
@media (max-width: 1330px) {
	.header__logo {
		width: 200px;
	}
}
@media (max-width: 480px) {
	.header__logo {
		width: 170px;
	}
}

.header__menu {
	margin: 0px 145px 0px 0px;
	height: 100%;
}
@media (max-width: 992px) {
	.header__menu {
		margin: 0px 50px 0px 0px;
	}
}

.menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
}
.menu__list li {
	margin: 0px 45px 0px 0px;
	position: relative;
}
.menu__list li::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	opacity: 0;
	background: #00AF9C;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.menu__list li:hover::before {
	opacity: 1;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.menu__list li:last-child {
	margin: 0;
}
@media (max-width: 900px) {
	.menu__list {
		-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;
		width: 100%;
		padding: 0px 15px;
	}
	.menu__list li {
		margin: 0px 0px 40px 0px;
	}
}

.menu__link {
	font-weight: 500;
	font-size: 18px;
	line-height: 5.5;
	color: #000000;
}
@media (max-width: 1330px) {
	.menu__link {
		font-size: 16px;
	}
}
@media (max-width: 900px) {
	.menu__link {
		line-height: 1;
		font-size: 18px;
	}
}

.header__phone {
	display: block;
	font-weight: 500;
	font-size: 18px;
	color: #000000;
	position: relative;
	padding: 0px 0px 0px 29px;
}
.header__phone::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 21px;
	height: 21px;
	background: url("../img/icons/phone.svg") no-repeat;
	background-size: cover;
}
@media (max-width: 1330px) {
	.header__phone {
		font-size: 16px;
	}
}
@media (max-width: 900px) {
	.header__phone {
		margin: 0px 50px 0px 0px;
	}
}
@media (max-width: 520px) {
	.header__phone span {
		display: none;
	}
}

.menu__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	position: relative;
}
@media (max-width: 900px) {
	.menu__body {
		position: fixed;
		z-index: 2;
		top: 82px;
		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: center;
		    -ms-flex-align: center;
		        align-items: center;
		overflow: auto;
		padding: 40px 0px 0px 0px;
	}
	.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: 480px) {
	.menu__body {
		top: 62px;
	}
}

.icon-menu {
	display: none;
}
@media (max-width: 900px) {
	.icon-menu {
		display: block;
		position: absolute;
		top: 30px;
		right: 15px;
		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-color: #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 {
		top: 21px;
	}
}

.footer {
	background: #008CA7;
	padding: 50px 0px;
}

.footer__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 500px) {
	.footer__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;
	}
}

.footer__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 230px;
	        flex: 0 1 230px;
	margin: 0px 20px 0px 0px;
}
@media (max-width: 500px) {
	.footer__left {
		margin: 0px 0px 40px 0px;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 180px;
	}
}

.footer__logo {
	width: 100%;
	display: block;
}
.footer__logo img {
	width: 100%;
}

.footer__center {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	text-align: center;
	margin: 0px 20px 0px 0px;
}
@media (max-width: 500px) {
	.footer__center {
		-webkit-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        order: 3;
		margin: 0px;
	}
}

.footer__text p {
	font-size: 14px;
	line-height: 1.2;
	color: #FFFFFF;
}

.footer__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 230px;
	        flex: 0 1 230px;
	text-align: right;
}
@media (max-width: 500px) {
	.footer__right {
		margin: 0px 0px 40px 0px;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 180px;
	}
}

.footer__menu li {
	margin: 0px 0px 14px 0px;
}
.footer__menu li:last-child {
	margin: 0;
}
@media (max-width: 500px) {
	.footer__menu li {
		text-align: center;
	}
}
.footer__menu a {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
	color: #FFFFFF;
}
.footer__menu a:hover {
	text-decoration: underline;
}

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

.hero__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #F5F5F5;
	padding: 40px;
	position: relative;
}
@media (max-width: 768px) {
	.hero__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media (max-width: 480px) {
	.hero__row {
		padding: 40px 20px;
	}
}

.hero__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-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;
	margin: 0px 40px 0px 0px;
}
@media (max-width: 768px) {
	.hero__left {
		margin: 0px 0px 40px 0px;
		text-align: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}

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

.hero__title {
	font-family: Montserrat;
	font-weight: bold;
	font-size: 34px;
	line-height: 1.35;
	text-transform: uppercase;
	color: #000000;
	max-width: 616px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.hero__title._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	top: 0;
}
.hero__title span {
	font-weight: 800;
	color: #00AF9C;
}
@media (max-width: 1330px) {
	.hero__title {
		font-size: 28px;
	}
}
@media (max-width: 992px) {
	.hero__title {
		font-size: 24px;
	}
}
@media (max-width: 768px) {
	.hero__title {
		font-size: 30px;
	}
}
@media (max-width: 480px) {
	.hero__title {
		font-size: 22px;
	}
}

.hero__title_1 {
	color: #655EA1;
}

.hero__title_2 {
	color: #703D61;
}

.hero__title_3 {
	color: #E2C912;
}

.hero__subtitle {
	max-width: 515px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.hero__subtitle._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.3s;
	-o-transition: all 0.7s ease 0.3s;
	transition: all 0.7s ease 0.3s;
	top: 0;
}
.hero__subtitle p {
	font-family: Montserrat;
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 1.2;
	color: #000000;
	margin: 0px 0px 15px 0px;
}
.hero__subtitle p:last-child {
	margin: 0;
}
@media (max-width: 1330px) {
	.hero__subtitle p {
		font-size: 18px;
	}
}
@media (max-width: 480px) {
	.hero__subtitle p {
		font-size: 16px;
	}
}

.hero__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 420px;
	        flex: 0 0 420px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	right: -50px;
}
.hero__right._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	right: 0;
}
.hero__right img {
	width: 100%;
}
@media (max-width: 1330px) {
	.hero__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 320px;
		        flex: 0 0 320px;
	}
}
@media (max-width: 992px) {
	.hero__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 280px;
		        flex: 0 0 280px;
	}
}
@media (max-width: 768px) {
	.hero__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		max-width: 400px;
	}
}

.hero__right_product {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 270px;
	        flex: 0 0 270px;
	width: 270px;
	height: 270px;
	background: #fff;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.hero__right_product img {
	width: 110px;
}

.hero__decor {
	position: absolute;
	bottom: 0;
	left: 40%;
	width: 160px;
}
.hero__decor img {
	width: 100%;
}
@media (max-width: 1330px) {
	.hero__decor {
		width: 100px;
		left: 45%;
	}
}
@media (max-width: 768px) {
	.hero__decor {
		display: none;
	}
}

.hero__btn {
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.hero__btn._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.4s;
	-o-transition: all 0.7s ease 0.4s;
	transition: all 0.7s ease 0.4s;
	top: 0;
}

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

.about__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.about__row._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	top: 0;
}
@media (max-width: 768px) {
	.about__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;
	}
}

.about__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-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;
	margin: 0px 49px 0px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 216px;
	        flex: 0 0 216px;
}
.about__left img {
	width: 100%;
	margin: 0px 0px 10px 0px;
}
.about__left img:nth-child(2) {
	max-width: 144px;
}
.about__left img:last-child {
	margin: 0;
}
@media (max-width: 768px) {
	.about__left {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		margin: 0px 0px 40px 0px;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 400px;
	}
	.about__left img {
		width: 200px;
		margin: 0px 40px 0px 0px;
	}
}
@media (max-width: 480px) {
	.about__left {
		display: none;
	}
}

.about__right {
	background: #008CA7;
	padding: 28px 35px;
}
.about__right p {
	font-size: 18px;
	line-height: 135%;
	color: #FFFFFF;
	margin: 0px 0px 15px 0px;
}
.about__right p:last-child {
	margin: 0;
}
@media (max-width: 480px) {
	.about__right p {
		font-size: 16px;
	}
}
.about__right a {
	color: #fff;
	text-decoration: underline;
}
.about__right a:hover {
	text-decoration: none;
}
@media (max-width: 480px) {
	.about__right {
		padding: 20px;
	}
}

.products__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -20px;
}
@media (max-width: 1330px) {
	.products__row {
		margin: -7px;
	}
}

.products-item {
	padding: 20px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.products-item._active {
	opacity: 1;
	visibility: visible;
	top: 0;
}
.products-item:nth-child(1) {
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
}
.products-item:nth-child(1) .products-item__block {
	border: 2px solid #655EA1;
}
.products-item:nth-child(1) .products-item__title {
	color: #655EA1;
}
.products-item:nth-child(2) {
	-webkit-transition: all 0.7s ease 0.3s;
	-o-transition: all 0.7s ease 0.3s;
	transition: all 0.7s ease 0.3s;
}
.products-item:nth-child(2) .products-item__block {
	border: 2px solid #713D61;
}
.products-item:nth-child(2) .products-item__title {
	color: #713D61;
}
.products-item:nth-child(3) {
	-webkit-transition: all 0.7s ease 0.4s;
	-o-transition: all 0.7s ease 0.4s;
	transition: all 0.7s ease 0.4s;
}
.products-item:nth-child(3) .products-item__block {
	border: 2px solid #713D61;
}
.products-item:nth-child(3) .products-item__title {
	color: #713D61;
}
.products-item:nth-child(4) {
	-webkit-transition: all 0.7s ease 0.5s;
	-o-transition: all 0.7s ease 0.5s;
	transition: all 0.7s ease 0.5s;
}
.products-item:nth-child(4) .products-item__block {
	border: 2px solid #F9DB01;
}
.products-item:nth-child(4) .products-item__title {
	color: #F9DB01;
}
.products-item:hover .products-item__block {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px 11px 26px -4px rgba(0, 0, 0, 0.3);
	        box-shadow: 0px 11px 26px -4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1330px) {
	.products-item {
		padding: 7px;
	}
}
@media (max-width: 750px) {
	.products-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.products-item__block {
	padding: 20px 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-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;
	height: 100%;
}
@media (max-width: 992px) {
	.products-item__block {
		padding: 20px;
	}
}
@media (max-width: 480px) {
	.products-item__block {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}

.products-item__img {
	margin: 0px 45px 0px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 102px;
	        flex: 0 0 102px;
}
.products-item__img img {
	width: 100%;
}
@media (max-width: 992px) {
	.products-item__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 80px;
		        flex: 0 0 80px;
	}
}
@media (max-width: 480px) {
	.products-item__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 80px;
		        flex: 0 0 80px;
		margin: 0px 25px 0px 0px;
	}
}
@media (max-width: 370px) {
	.products-item__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 60px;
		        flex: 0 0 60px;
	}
}

.products-item__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-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;
	height: 100%;
}

.products-item__title {
	font-family: Montserrat;
	font-style: normal;
	font-weight: bold;
	font-size: 26px;
	line-height: 1.2;
	margin: 0px 0px 17px 0px;
}
@media (max-width: 480px) {
	.products-item__title {
		font-size: 22px;
	}
}

.products-item__subtitle {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
	color: #000000;
	margin: 0px 0px 40px 0px;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
@media (max-width: 992px) {
	.products-item__subtitle {
		font-size: 16px;
	}
}

.contacts {
	position: relative;
}

.contacts__map {
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.contacts__map._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	top: 0;
}

.contacts__content {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 100%;
	pointer-events: none;
}

.contacts-block__row {
	background: rgba(255, 255, 255, 0.8);
	-webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
	        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-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;
	padding: 50px 40px;
	width: 385px;
	max-width: 100%;
	pointer-events: auto;
}

.contacts-block__item {
	margin: 0px 0px 25px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.contacts-block__item img {
	margin: 0px 20px 0px 0px;
	width: 20px;
	height: 23px;
}
.contacts-block__item p, .contacts-block__item a {
	font-size: 16px;
	line-height: 135%;
	color: #000000;
	display: block;
}
.contacts-block__item:last-child {
	margin: 0;
}

.contacts-block__item_fb img {
	width: 30px;
	height: 32px;
}

.product__text {
	margin: 0px 0px 40px 0px;
}
.product__text p {
	font-size: 16px;
	line-height: 1.2;
	color: #000;
	margin: 0px 0px 15px 0px;
}
.product__text p span {
	font-weight: 500;
}
.product__text p:last-child {
	margin: 0;
}

.product__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
}
@media (max-width: 840px) {
	.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__row_1 .product__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 500px;
	        flex: 0 0 500px;
}
@media (max-width: 840px) {
	.product__row_1 .product__right {
		width: 500px;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.product__left {
	margin: 0px 40px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-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: 840px) {
	.product__left {
		margin: 0px 0px 40px 0px;
	}
}

.product__list {
	margin: 0px 0px 30px 0px;
}
.product__list li {
	font-family: Montserrat;
	font-size: 14px;
	line-height: 134%;
	text-transform: uppercase;
	color: #000000;
	padding: 0px 0px 0px 20px;
	margin: 0px 0px 10px 0px;
	position: relative;
}
.product__list li::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	width: 12px;
	height: 12px;
	background: #008CA7;
	border-radius: 50%;
}
.product__list li:last-child {
	margin: 0;
}
@media (max-width: 768px) {
	.product__list li {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.product__list li {
		font-size: 14px;
	}
}

.product__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 300px;
	        flex: 0 0 300px;
}
.product__right img {
	width: 100%;
}
@media (max-width: 840px) {
	.product__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 200px;
		max-width: 100%;
	}
}

.product__img img {
	width: 100%;
}

.product__pic {
	margin: 0 auto;
	width: 100%;
	text-align: center;
}
.product__pic img {
	text-align: center;
	width: 100%;
}

.product__pic_70 {
	width: 70%;
}

.product__pics4 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.product__pics4 img {
	width: 25%;
}
@media (max-width: 992px) {
	.product__pics4 img {
		width: 50%;
	}
}
@media (max-width: 480px) {
	.product__pics4 img {
		width: 100%;
	}
}

.product__pics2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.product__pics2 img {
	width: 50%;
	margin: 0px 0px 20px 0px;
}
@media (max-width: 480px) {
	.product__pics2 img {
		width: 100%;
	}
}

.product__pics_mtx1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0px 0px 30px 0px;
}
.product__pics_mtx1 img {
	width: 100%;
}

.product__buttonblock {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 40px 0px 0px 0px;
}

.btn {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 10px 65px 10px 34px;
	background: #FFFFFF;
	border: 3px solid #00AF9C;
	min-height: 50px;
	font-family: Montserrat;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
	color: #00B09C;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.btn::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 22px;
	height: 14px;
	background: url("../img/icons/arrow.svg") no-repeat;
	background-size: cover;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.btn:hover {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background: #E0EEED;
}
.btn:hover::before {
	right: 25px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.btn._active {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
	.btn {
		font-size: 16px;
		padding: 10px 55px 10px 24px;
	}
	.btn::before {
		right: 20px;
	}
}
@media (max-width: 370px) {
	.btn {
		padding: 10px 45px 10px 16px;
	}
	.btn::before {
		width: 18px;
		height: 12px;
	}
}

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

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

.videos__item {
	margin: 0px 20px;
}
.videos__item video {
	width: 100%;
}
@media (max-width: 768px) {
	.videos__item {
		margin: 0px 10px;
	}
}
@media (max-width: 600px) {
	.videos__item {
		margin: 0px 0px 10px 0px;
	}
	.videos__item:last-child {
		margin: 0;
	}
}

#scrollToTopButton {
	position: fixed;
	bottom: 20px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	border-radius: 50%;
	cursor: pointer;
	background: #fff;
	padding: 0;
	border: 0;
	width: 60px;
	height: 60px;
	-webkit-box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.3);
	        box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.3);
	font-size: xx-large;
	outline: 0;
	visibility: hidden;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	opacity: 0;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	z-index: 2;
}
#scrollToTopButton img {
	width: 60%;
}
@media (max-width: 500px) {
	#scrollToTopButton {
		left: unset;
		right: 0px;
		-webkit-transform: translate(0, 0);
		    -ms-transform: translate(0, 0);
		        transform: translate(0, 0);
	}
}

#scrollToTopButton.show {
	visibility: visible;
	-webkit-transform: scale(1) translate(-50%, 0);
	    -ms-transform: scale(1) translate(-50%, 0);
	        transform: scale(1) translate(-50%, 0);
	opacity: 1;
}