@import "../fonts/stylesheet.css";
* {
	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: "Manrope";
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

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

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

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: 1150px;
	margin: 0 auto;
	padding: 0 20px;
}

.title {
	font-family: var(--font-family);
	font-weight: 800;
	font-size: 45px;
	line-height: 133%;
	text-transform: uppercase;
	color: #000;
}
@media (max-width: 1024px) {
	.title {
		font-size: 30px;
	}
}
@media (max-width: 480px) {
	.title {
		font-size: 23px;
		text-align: center;
	}
}

.btn {
	position: relative;
	z-index: 1;
	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;
	padding: 10px 20px;
	height: 50px;
	text-align: center;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background: #ae5cff;
	border-radius: 50px;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	line-height: 114%;
	text-align: center;
	color: #fff;
	overflow: hidden;
}
.btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -o-linear-gradient(332deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	background: linear-gradient(118deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@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;
	}
	.btn:hover::after {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		opacity: 1;
		visibility: visible;
	}
}

.text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 140%;
	color: #000;
}
@media (max-width: 1024px) {
	.text {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.text {
		font-size: 14px;
	}
}

.header {
	position: fixed;
	z-index: 10;
	top: 25px;
	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._fixed {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 0;
	-webkit-box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.1);
	background: #fff;
}
@media (max-width: 1024px) {
	.header {
		top: 0;
	}
}

.header__row {
	background: #fff;
	padding: 15px 20px;
	border-radius: 9px;
	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;
}
.header__row > *:not(:last-child) {
	margin: 0px 55px 0px 0px;
}
@media (max-width: 1024px) {
	.header__row > *:not(:last-child) {
		margin: 0px 20px 0px 0px;
	}
}
@media (max-width: 1024px) {
	.header__row {
		margin: 0px 55px 0px 0px;
		padding: 20px 0;
		background: none;
	}
}
@media (max-width: 480px) {
	.header__row {
		margin: 0px 45px 0px 0px;
		padding: 15px 0;
	}
}

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

.menu {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 550px;
	        flex: 0 1 550px;
}

.menu__list {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.menu__list li {
	margin: 0px 20px 0px 0px;
}
.menu__list li:last-child {
	margin: 0;
}
@media (max-width: 1024px) {
	.menu__list {
		-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;
	}
	.menu__list li {
		margin: 0px 0px 30px 0px;
	}
}
@media (max-width: 480px) {
	.menu__list li {
		margin: 0px 0px 20px 0px;
	}
}

.menu__link {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 17px;
	line-height: 176%;
	color: #000;
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
}
.menu__link::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #ff7597;
	opacity: 0;
	visibility: hidden;
	-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 {
		font-weight: 600;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.menu__link:hover::after {
		bottom: -3px;
		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__link._active {
	font-weight: 600;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.menu__link._active::after {
	bottom: -3px;
	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__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}
@media (max-width: 1024px) {
	.menu__body {
		position: fixed;
		top: 0;
		bottom: 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: 1024px) and (max-width: 1024px) {
	.menu__body {
		padding: 125px 20px 75px 20px;
	}
}
@media (max-width: 1024px) and (max-width: 480px) {
	.menu__body {
		padding: 80px 20px;
	}
}
@media (max-width: 1024px) {
	.menu__body > *:not(:last-child) {
		margin: 0px 0px 30px 0px;
	}
}
@media (max-width: 1024px) and (max-width: 480px) {
	.menu__body > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}

.icon-menu {
	display: none;
}
@media (max-width: 1024px) {
	.icon-menu {
		display: block;
		position: absolute;
		top: 50%;
		right: 20px;
		-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;
	}
}

.header__btn {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 200px;
	        flex: 0 0 200px;
	width: 200px;
	height: 45px;
}
@media (max-width: 700px) {
	.header__btn {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 45px;
		        flex: 0 0 45px;
		width: 100%;
	}
}

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: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0);
	border-radius: 50px;
	background: url("../img/icons/close.svg") no-repeat;
	background-size: 30px;
	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) {
	.popup__close:hover {
		border: 1px solid white;
		-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 {
		top: 5px;
		right: 5px;
	}
}

.callback-popup .popup__content {
	padding: 60px 50px;
	max-width: 832px;
	background: url("../img/popup/bg1.svg") no-repeat;
	background-size: cover;
}
@media (max-width: 480px) {
	.callback-popup .popup__content {
		padding: 36px 30px;
		background-position: 70% center;
	}
}
.callback-popup .contactus-form {
	width: 100%;
}
.callback-popup .contactus-form .input {
	border-radius: 50px;
}
@media (max-width: 480px) {
	.callback-popup .contactus-form .input {
		height: 52px;
	}
}
.callback-popup .btn {
	background: #ffb36e;
}
@media (max-width: 480px) {
	.callback-popup .btn {
		height: 52px !important;
	}
}

.popup__title {
	font-size: 35px;
	color: #fff;
	text-align: center;
	margin: 0px 0px 35px 0px;
}
@media (max-width: 480px) {
	.popup__title {
		font-size: 25px;
		margin: 0px 0px 20px 0px;
	}
}

.callback-demo .popup__content {
	background: url("../img/popup/bg2.svg") no-repeat;
	background-size: cover;
}
@media (max-width: 480px) {
	.callback-demo .popup__content {
		background-position: 70% center;
	}
}
.callback-demo .btn {
	background: #af5efc;
}

footer {
	background: #8E8E8E;
}

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%;
	padding: 10px 20px;
	border: 1px solid var(--blue);
	border-radius: 10px;
	height: 60px;
	position: relative;
}
.input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #acacac;
}
.input::-moz-placeholder, textarea::-moz-placeholder {
	color: #acacac;
}
.input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #acacac;
}
.input::-ms-input-placeholder, textarea::-ms-input-placeholder {
	color: #acacac;
}
.input::placeholder, textarea::placeholder {
	color: #acacac;
}
.input._form-error, textarea._form-error {
	border: 1px solid red;
	background: #ffdfdf;
}
.input._form-error::-webkit-input-placeholder, textarea._form-error::-webkit-input-placeholder {
	color: red;
}
.input._form-error::-moz-placeholder, textarea._form-error::-moz-placeholder {
	color: red;
}
.input._form-error:-ms-input-placeholder, textarea._form-error:-ms-input-placeholder {
	color: red;
}
.input._form-error::-ms-input-placeholder, textarea._form-error::-ms-input-placeholder {
	color: red;
}
.input._form-error::placeholder, textarea._form-error::placeholder {
	color: red;
}
@media (max-width: 480px) {
	.input, textarea {
		height: 44px;
	}
}

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

.form-sent-msg {
	position: fixed;
	z-index: 25;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	padding: 20px 25px;
	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);
	opacity: 0;
	visibility: hidden;
}
.form-sent-msg p {
	color: #fff;
	font-size: 22px;
	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;
	opacity: 1;
	visibility: visible;
}

.contactus-form {
	width: 542px;
	max-width: 100%;
}
.contactus-form .hidd {
	display: none;
}
.contactus-form .form__item img {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 20px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 12px;
	height: 12px;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
.contactus-form .form__item .input {
	padding: 0px 20px 0px 40px;
}
.contactus-form > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
.contactus-form .btn {
	width: 100%;
	height: 60px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
	.contactus-form .btn {
		height: 44px;
	}
}
.contactus-form .checkbox {
	margin-top: 5px;
	font-size: 14px;
	color: #fff;
}

.checkbox {
	position: relative;
	text-align: left;
}
.checkbox._form-error {
	color: red;
}
.checkbox._form-error .checkbox__label:before {
	border: 1px solid red;
}
.checkbox:not(:last-child) {
	margin-bottom: em(5);
}
.checkbox__input {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
}
.checkbox__input:checked + .checkbox__label:after {
	opacity: 1;
	visibility: visible;
}
.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 14px;
	        flex: 0 0 14px;
	width: 14px;
	height: 14px;
	border: 1px solid #fff;
	border-radius: 40px;
}
.checkbox__label::after {
	content: "";
	position: absolute;
	top: -5px;
	left: 4px;
	width: 10px;
	height: 15px;
	background: url("../img/icons/ok.svg") no-repeat;
	background-size: contain;
	opacity: 0;
	visibility: hidden;
}
.checkbox a {
	color: #000;
	text-decoration: underline;
}
@media (min-width: 1024px) {
	.checkbox a:hover {
		text-decoration: none;
	}
}

.hero {
	position: relative;
	background: #fceee7;
	padding: 100px 0px 0px 0px;
}

.hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hero__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center top;
	   object-position: center top;
}
@media (min-width: 1600px) {
	.hero__bg img {
		-o-object-position: center 20%;
		   object-position: center 20%;
	}
}

.hero__content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 0px calc((100vw - 1440px) / 2) 0px calc((100vw - 1150px) / 2 + 20px);
}
@media (max-width: 700px) {
	.hero__content {
		-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;
		gap: 18px;
	}
}

.hero__title {
	font-size: 64px;
	line-height: 122%;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.hero__title._watcher-view {
	top: 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;
}
.hero__title span {
	display: block;
	text-transform: none;
	font-size: 82px;
	background: -o-linear-gradient(332deg, #ae5cff 0%, #ffb66a 40%, #ff709e 55%);
	background: linear-gradient(118deg, #ae5cff 0%, #ffb66a 40%, #ff709e 55%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	white-space: nowrap;
	margin: 0px 0px 10px 0px;
}
@media (max-width: 1150px) {
	.hero__title span {
		font-size: calc(55px + 27 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1150px) {
	.hero__title {
		font-size: calc(34px + 30 * ((100vw - 320px) / 1600));
	}
}
.hero__row {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 580px;
	        flex: 0 1 580px;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
	padding: 55px 0px 125px 0px;
}
.hero__row > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 480px) {
	.hero__row > *:not(:last-child) {
		margin: 0px 0px 10px 0px;
	}
}
@media (max-width: 1150px) {
	.hero__row {
		padding: 55px 20px 125px 20px;
		margin: 0;
	}
}
@media (max-width: 1024px) {
	.hero__row {
		padding: 0px 20px 75px 20px;
	}
}
@media (max-width: 700px) {
	.hero__row {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		padding: 0px 20px;
		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;
	}
}

.hero__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 680px;
	        flex: 0 1 680px;
	margin: 0px -10px 0px 0px;
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	right: -50px;
}
.hero__img._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;
}
.hero__img img {
	width: 100%;
}
@media (max-width: 700px) {
	.hero__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		max-width: 420px;
		-ms-flex-item-align: center;
		    -ms-grid-row-align: center;
		    align-self: center;
	}
}

.hero__text {
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
	max-width: 456px;
}
.hero__text._watcher-view {
	top: 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;
}

.why {
	position: relative;
	z-index: 1;
	margin: -80px 0px 0px 0px;
}
.why > ._container {
	max-width: 100%;
	background: -o-linear-gradient(332deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	background: linear-gradient(118deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	border-radius: 32px;
	padding: 20px;
}
@media (max-width: 480px) {
	.why > ._container {
		padding: 15px;
	}
}
@media (max-width: 1024px) {
	.why {
		margin: -30px 0px 0px 0px;
	}
}

.why__content {
	background: #fff;
	border-radius: 20px;
	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;
	padding: 75px 20px;
}
@media (max-width: 480px) {
	.why__content {
		padding: 40px 20px;
	}
}

.why__title {
	margin: 0px 0px 48px 0px;
	max-width: 900px;
	text-align: center;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.why__title._watcher-view {
	top: 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) {
	.why__title {
		margin: 0px 0px 16px 0px;
	}
}

.why-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -10px;
	max-width: 1046px;
}

.why-item {
	padding: 10px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.why-item:nth-child(3) .why-item__block, .why-item:nth-child(4) .why-item__block {
	border-left: 1px solid #fea9b9;
}
@media (max-width: 760px) {
	.why-item:nth-child(3) .why-item__block, .why-item:nth-child(4) .why-item__block {
		border: 0;
	}
}
.why-item._watcher-view {
	top: 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;
}
.why-item:nth-child(1)._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;
}
.why-item:nth-child(2)._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;
}
.why-item:nth-child(3)._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;
}
.why-item:nth-child(4)._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;
}
@media (max-width: 760px) {
	.why-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 246px;
		        flex: 0 0 246px;
	}
}

.why-item__row {
	background: #fcf3ea;
	padding: 20px 40px;
	border-radius: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px 46px;
	-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: 1024px) {
	.why-item__row {
		padding: 20px;
	}
}
@media (min-width: 1024px) {
	.why-item__row:hover {
		-webkit-transform: scale(1.03);
		    -ms-transform: scale(1.03);
		        transform: scale(1.03);
		-webkit-transition: all 1s ease !important;
		-o-transition: all 1s ease !important;
		transition: all 1s ease !important;
	}
}
@media (max-width: 760px) {
	.why-item__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.why-item__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 100px;
	        flex: 0 0 100px;
}
.why-item__img img {
	width: 100%;
}
@media (max-width: 1024px) {
	.why-item__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 80px;
		        flex: 0 0 80px;
	}
}
@media (max-width: 760px) {
	.why-item__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 76px;
		        flex: 0 0 76px;
		width: 76px;
	}
}

.why-item__block {
	border-left: 1px solid #6494d6;
	height: 100%;
	padding: 0px 0px 0px 8px;
	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: 760px) {
	.why-item__block {
		border: 0;
		text-align: center;
		padding: 0;
	}
}

.why-item__t {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 25px;
	line-height: 124%;
	color: #000;
	margin: 0px 0px 3px 0px;
}
@media (max-width: 1024px) {
	.why-item__t {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.why-item__t {
		font-size: 17px;
	}
}

@media (max-width: 1024px) {
	.why-item__text {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.why-item__text {
		font-size: 14px;
	}
}

.grow {
	position: relative;
	margin: -30px 0px 0px 0px;
	padding: 100px 0px 125px 0px;
}
@media (max-width: 480px) {
	.grow {
		padding: 80px 0px 90px 0px;
	}
}

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

.grow__content {
	position: relative;
}

.grow__title {
	margin: 0px 0px 50px 0px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.grow__title._watcher-view {
	top: 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) {
	.grow__title {
		margin: 0px 0px 23px 0px;
	}
}

.grow-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 18px;
}

.grow-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 calc(25% - 14px);
	        flex: 0 0 calc(25% - 14px);
	position: relative;
	border-radius: 16px;
	background: #ffb36e;
	padding: 50px 20px 20px 20px;
	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;
	-ms-transform: rotate(0);
	-webkit-transform: rotate(0);
	transform: rotate(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;
	top: 50px;
}
.grow-item::before {
	content: "";
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	background: url("../img/grow/ok.svg") no-repeat;
	background-size: contain;
}
.grow-item:nth-child(2) {
	-webkit-transform: rotate(-3deg);
	    -ms-transform: rotate(-3deg);
	        transform: rotate(-3deg);
}
@media (max-width: 480px) {
	.grow-item:nth-child(2) {
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}
.grow-item:nth-child(3) {
	-webkit-transform: rotate(2deg);
	    -ms-transform: rotate(2deg);
	        transform: rotate(2deg);
}
@media (max-width: 480px) {
	.grow-item:nth-child(3) {
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}
.grow-item._watcher-view {
	top: 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;
}
.grow-item:nth-child(1)._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;
}
.grow-item:nth-child(2)._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;
}
.grow-item:nth-child(3)._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;
}
.grow-item:nth-child(4)._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;
}
@media (max-width: 1024px) {
	.grow-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 calc(50% - 10px);
		        flex: 0 0 calc(50% - 10px);
	}
}
@media (max-width: 480px) {
	.grow-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.grow-item__img {
	width: 54px;
	margin: 0px 0px 14px 0px;
}
.grow-item__img img {
	width: 100%;
}

.grow-item__t {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 20px;
	line-height: 150%;
	text-transform: uppercase;
	color: #fff;
	margin: 0px 0px 5px 0px;
}

.grow-item__text {
	color: #fff;
}

.advant {
	margin: -30px 0px 0px 0px;
	background: #fff;
}

.advant__dec {
	position: relative;
	background: -o-linear-gradient(332deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	background: linear-gradient(118deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	border-radius: 32px;
}

.advant__bg {
	position: absolute;
	background: #fff;
	border-radius: 32px 32px 0 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 20px);
}
.advant__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.advant__content {
	position: relative;
	padding: 80px 0px 130px 0px;
}
@media (max-width: 480px) {
	.advant__content {
		padding: 60px 0px 0px 0px;
	}
}

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

.advant__title {
	text-align: center;
	margin: 0px 0px 20px 0px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.advant__title._watcher-view {
	top: 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;
}
.advant__title span {
	white-space: nowrap;
	text-transform: none;
	background: -o-linear-gradient(332deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	background: linear-gradient(118deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
	.advant__title {
		font-size: 33px;
	}
}

.advant-item__sub {
	text-align: center;
	margin: 0px 0px 60px 0px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 27px;
	line-height: 122%;
	text-align: center;
	color: #000;
	max-width: 412px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.advant-item__sub._watcher-view {
	top: 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;
}
@media (max-width: 1150px) {
	.advant-item__sub {
		font-size: calc(16px + 14 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.advant-item__sub {
		display: none;
	}
}

.advant-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -8px;
}

.advant-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	padding: 8px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.advant-item._watcher-view {
	top: 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;
}
.advant-item:nth-child(1)._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;
}
.advant-item:nth-child(2)._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;
}
.advant-item:nth-child(3)._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;
}
.advant-item:nth-child(4)._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;
}
@media (max-width: 700px) {
	.advant-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 94%;
		        flex: 0 0 94%;
	}
}

.advant-item__row {
	background: #e9937f;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 15px;
	padding: 15px;
	border-radius: 12px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.advant-item__row:hover {
		-webkit-transform: scale(1.03);
		    -ms-transform: scale(1.03);
		        transform: scale(1.03);
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 480px) {
	.advant-item__row {
		-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;
	}
}

.advant-item__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 142px;
	        flex: 0 0 142px;
	height: 142px;
	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;
	border-radius: 10px;
}
.advant-item__img img {
	width: 90px;
}
@media (max-width: 1024px) {
	.advant-item__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100px;
		        flex: 0 0 100px;
		height: 100px;
	}
	.advant-item__img img {
		width: 60px;
	}
}
@media (max-width: 480px) {
	.advant-item__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 60px;
		        flex: 0 0 60px;
		height: 60px;
		width: 60px;
		border-radius: 6px;
	}
	.advant-item__img img {
		width: 38px;
	}
}

.advant-item__block > *:not(:last-child) {
	margin: 0px 0px 5px 0px;
}

.advant-item__t {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 25px;
	line-height: 120%;
	color: #fff;
}
@media (max-width: 1150px) {
	.advant-item__t {
		font-size: calc(17px + 11 * ((100vw - 320px) / 1600));
	}
}

.advant-item__text {
	color: #fff;
}

.process {
	position: relative;
	z-index: 2;
	padding: 30px 0px 0px 0px;
}
@media (max-width: 480px) {
	.process {
		padding: 50px 0px 0px 0px;
	}
}

.process__title {
	text-align: center;
	margin: 0px 0px 50px 0px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.process__title._watcher-view {
	top: 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) {
	.process__title {
		margin: 0px 0px 20px 0px;
	}
}

.process__bg {
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 100%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.process__bg._watcher-view {
	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;
}
.process__bg img {
	width: 100%;
}
@media (max-width: 480px) {
	.process__bg {
		top: 25%;
	}
}

.process__content {
	position: relative;
}

.process__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin: -25px -15px;
}
@media (max-width: 760px) {
	.process__row {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}

.process-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 25%;
	        flex: 0 1 25%;
	padding: 25px 15px;
	position: relative;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.process-item::before {
	content: "";
	position: absolute;
	width: 138px;
	height: 75px;
	background: url("../img/process/line.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 760px) {
	.process-item::before {
		width: 130px;
		height: 65px;
	}
}
.process-item:nth-child(1)::before {
	top: 90%;
	right: 0;
	-ms-transform: rotate(-140deg);
	-webkit-transform: rotate(-140deg);
	transform: rotate(-140deg);
}
@media (max-width: 1150px) {
	.process-item:nth-child(1) {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 25%;
		        flex: 0 1 25%;
	}
}
@media (max-width: 760px) {
	.process-item:nth-child(1) {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
	.process-item:nth-child(1)::before {
		top: calc(100% + 10px);
		right: 20%;
		-ms-transform: rotate(140deg);
		-webkit-transform: rotate(140deg);
		transform: rotate(140deg);
	}
}
.process-item:nth-child(2) {
	margin: 120px 0px 0px 0px;
}
.process-item:nth-child(2)::before {
	bottom: 100%;
	right: 0;
}
@media (max-width: 760px) {
	.process-item:nth-child(2) {
		margin: 0;
	}
	.process-item:nth-child(2)::before {
		top: calc(100% + 10px);
		right: 25%;
		-ms-transform: rotate(80deg);
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
	}
}
.process-item:nth-child(3)::before {
	top: 90%;
	right: 0;
	-ms-transform: rotate(-130deg);
	-webkit-transform: rotate(-130deg);
	transform: rotate(-130deg);
}
@media (max-width: 760px) {
	.process-item:nth-child(3)::before {
		top: calc(100% + 20px);
		right: 25%;
		-ms-transform: rotate(140deg);
		-webkit-transform: rotate(140deg);
		transform: rotate(140deg);
	}
}
.process-item:nth-child(4) {
	margin: 120px 0px 0px 0px;
}
@media (max-width: 760px) {
	.process-item:nth-child(4) {
		margin: 0;
	}
}
.process-item:last-child::before {
	display: none;
}
.process-item._watcher-view {
	top: 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;
}
.process-item:nth-child(1)._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;
}
.process-item:nth-child(2)._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;
}
.process-item:nth-child(3)._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;
}
.process-item:nth-child(4)._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;
}
@media (max-width: 760px) {
	.process-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.process-item__num {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 100px;
	color: #af5efc;
	margin: 0px 0px 30px 0px;
}
@media (max-width: 1150px) {
	.process-item__num {
		font-size: calc(78px + 22 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.process-item__num {
		margin: 0px 0px 20px 0px;
	}
}

.process-item__t {
	white-space: nowrap;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 18px;
	line-height: 139%;
	text-transform: uppercase;
	color: #000;
	margin: 0px 0px 5px 0px;
}
@media (max-width: 1150px) {
	.process-item__t {
		white-space: wrap;
	}
}
@media (max-width: 480px) {
	.process-item__t {
		font-size: 17px;
	}
}

.process-item__text {
	font-size: 18px;
}
@media (max-width: 820px) {
	.process-item__text {
		font-size: 14px;
	}
}

.teach {
	padding: 130px 0px 0px 0px;
}
@media (max-width: 480px) {
	.teach {
		padding: 50px 0px 0px 0px;
	}
}

.teach__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;
	gap: 40px;
}
@media (max-width: 760px) {
	.teach__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
}

.teach__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 519px;
	        flex: 0 1 519px;
	position: relative;
	z-index: 1;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	left: -50px;
}
.teach__img img {
	width: 100%;
}
.teach__img._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;
}
.teach__img::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 100%;
	left: 60%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 200%;
	height: 200%;
	background: url("../img/teach/bg.svg") no-repeat;
	background-size: contain;
	pointer-events: none;
}
@media (max-width: 1024px) {
	.teach__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 300px;
		        flex: 0 1 300px;
	}
}
@media (max-width: 760px) {
	.teach__img {
		max-width: 300px;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
	.teach__img::before {
		top: 60%;
		left: 60%;
	}
}

.teach__col {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 525px;
	        flex: 0 1 525px;
}
@media (max-width: 760px) {
	.teach__col {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.teach__title {
	margin: 0px 0px 40px -120px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	left: 50px;
}
.teach__title._watcher-view {
	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;
}
@media (max-width: 1024px) {
	.teach__title {
		margin: 0px 0px 30px 0px;
	}
}

.teach-items > *:not(:last-child) {
	position: relative;
}
.teach-items > *:not(:last-child)::before {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 1px;
	background: -webkit-gradient(linear, left top, right top, from(#ae5cff), color-stop(50%, #ffb66a), to(#ff709e));
	background: -o-linear-gradient(left, #ae5cff 0%, #ffb66a 50%, #ff709e 100%);
	background: linear-gradient(90deg, #ae5cff 0%, #ffb66a 50%, #ff709e 100%);
}

.teach-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px;
	padding: 15px 0px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.teach-item._watcher-view {
	top: 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;
}
.teach-item:nth-child(1)._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;
}
.teach-item:nth-child(2)._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;
}
.teach-item:nth-child(3)._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;
}
.teach-item:nth-child(4)._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;
}
@media (max-width: 480px) {
	.teach-item {
		padding: 10px 0px;
	}
}

.teach-item__value {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 185px;
	        flex: 0 0 185px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 69px;
	line-height: 125%;
	text-transform: uppercase;
	background: -o-linear-gradient(332deg, #ae5cff 0%, #ffb66a 40.5%, #ff709e 70%);
	background: linear-gradient(118deg, #ae5cff 0%, #ffb66a 40.5%, #ff709e 70%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.teach-item__value span {
	font-size: 25px;
	line-height: 134%;
	text-transform: uppercase;
	background: #ff759a;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
@media (max-width: 1024px) {
	.teach-item__value {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 130px;
		        flex: 0 0 130px;
		font-size: 50px;
	}
	.teach-item__value span {
		font-size: 17px;
	}
}

.teach-item__t {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 25px;
	line-height: 134%;
	text-transform: uppercase;
	color: #ff759a;
}
@media (max-width: 1024px) {
	.teach-item__t {
		font-size: 17px;
	}
}

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

.contactus__row {
	position: relative;
	border-radius: 17px;
	max-width: 910px;
	background: -o-linear-gradient(332deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	background: linear-gradient(118deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 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-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 45px 20px;
	text-align: center;
	margin: 0 auto;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.contactus__row._watcher-view {
	top: 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;
}
.contactus__row > *:not(:last-child) {
	margin: 0px 0px 25px 0px;
}
@media (max-width: 480px) {
	.contactus__row > *:not(:last-child) {
		margin: 0px 0px 16px 0px;
	}
}
@media (max-width: 480px) {
	.contactus__row {
		padding: 37px 15px;
	}
}

.contactus__dec1 {
	position: absolute;
	z-index: -1;
	top: -100px;
	right: -180px;
	width: 435px;
	height: 435px;
}
@media (max-width: 480px) {
	.contactus__dec1 {
		display: none;
	}
}

.contactus__dec2 {
	position: absolute;
	z-index: -1;
	bottom: -180px;
	left: -180px;
	width: 435px;
	height: 435px;
}
@media (max-width: 480px) {
	.contactus__dec2 {
		display: none;
	}
}

.contactus__title {
	color: #fff;
	max-width: 720px;
}
@media (max-width: 480px) {
	.contactus__title {
		font-size: 25px;
	}
}

.contactus__text {
	max-width: 560px;
}

.invest {
	position: relative;
	z-index: 1;
	margin: 70px 0px 0px 0px;
}
@media (max-width: 480px) {
	.invest {
		margin: 50px 0px 0px 0px;
	}
}

.invest__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ea927e;
	border-radius: 32px;
}
.invest__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.invest__content {
	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-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 55px 20px 60px 20px;
}

.invest__title {
	max-width: 600px;
	text-align: center;
	color: #fff;
	margin: 0px 0px 35px 0px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.invest__title._watcher-view {
	top: 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;
}
.invest__title span {
	position: relative;
	z-index: 1;
	padding: 0px 10px;
	line-height: 0;
	white-space: nowrap;
	text-transform: none;
	background: -o-linear-gradient(332deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	background: linear-gradient(118deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0px 10px 0px 0px;
}
.invest__title span::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fbeee7;
	border-radius: 9px;
}

.invest-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -6px;
	width: 100%;
}

.invest-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
	padding: 6px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.invest-item:nth-child(1) .invest-item__row::before {
	top: 30%;
}
.invest-item:nth-child(1) .invest-item__row::after {
	top: 20%;
}
@media (max-width: 480px) {
	.invest-item:nth-child(1) .invest-item__row::after {
		top: 35%;
	}
}
.invest-item:nth-child(2) .invest-item__row::before {
	top: 40%;
}
@media (max-width: 480px) {
	.invest-item:nth-child(2) .invest-item__row::before {
		top: 30%;
	}
}
.invest-item:nth-child(2) .invest-item__row::after {
	top: 0;
	right: 68px;
	-ms-transform: rotate(-80deg);
	-webkit-transform: rotate(-80deg);
	transform: rotate(-80deg);
}
@media (max-width: 1150px) {
	.invest-item:nth-child(2) .invest-item__row::after {
		top: calc(-50px + 100 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 760px) {
	.invest-item:nth-child(2) .invest-item__row::after {
		top: calc(-40px + 140 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.invest-item:nth-child(2) .invest-item__row::after {
		top: calc(0px + 290 * ((100vw - 320px) / 1600));
	}
}
.invest-item:nth-child(3) .invest-item__row::before {
	top: 20%;
}
.invest-item:nth-child(3) .invest-item__row::after {
	top: 40%;
}
.invest-item._watcher-view {
	top: 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;
}
.invest-item:nth-child(1)._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;
}
.invest-item:nth-child(2)._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;
}
.invest-item:nth-child(3)._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;
}
@media (max-width: 760px) {
	.invest-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 480px) {
	.invest-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.invest-item__row {
	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;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.invest-item__row::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 144px;
	height: 206px;
	background: url("../img/invest/star2.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 480px) {
	.invest-item__row::before {
		width: 114px;
		height: 164px;
	}
}
.invest-item__row::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 107px;
	height: 190px;
	background: url("../img/invest/star1.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 480px) {
	.invest-item__row::after {
		width: 75px;
		height: 133px;
	}
}
@media (min-width: 1024px) {
	.invest-item__row:hover {
		-webkit-transform: scale(1.03);
		    -ms-transform: scale(1.03);
		        transform: scale(1.03);
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.invest-item__shape {
	margin: 0px 0px -1px 0px;
}
.invest-item__shape img {
	width: 100%;
}

.invest-item__main {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	min-height: 300px;
	background: #fceee7;
	border-radius: 0 0 16px 16px;
	padding: 60px 20px 40px 20px;
	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) {
	.invest-item__main {
		padding: 20px;
		min-height: 180px;
	}
}

.invest-item__num {
	position: absolute;
	top: 30px;
	left: 20px;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 25px;
	line-height: 134%;
	text-transform: uppercase;
	color: #ff759a;
}
@media (max-width: 480px) {
	.invest-item__num {
		font-size: 17px;
		top: 25px;
		left: 20px;
	}
}

.invest-item__img {
	width: 74px;
	margin: 0px 0px 10px 0px;
}
.invest-item__img img {
	width: 100%;
}
@media (max-width: 820px) {
	.invest-item__img {
		width: 60px;
	}
}

.invest-item__t {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 25px;
	line-height: 120%;
	color: #000;
	margin: 0px 0px 5px 0px;
}
@media (max-width: 1024px) {
	.invest-item__t {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.invest-item__t {
		font-size: 17px;
	}
}

.splitbg {
	position: relative;
	margin: -30px 0px 0px 0px;
	padding: 30px 0px 0px 0px;
}

.splitbg__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.splitbg__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 480px) {
	.splitbg__bg img {
		-o-object-position: 40% center;
		   object-position: 40% center;
	}
}

.uniq {
	position: relative;
	padding: 40px 0px 0px 0px;
}

.uniq__title,
.value__title {
	max-width: 635px;
	text-align: center;
	margin: 0 auto 50px auto;
}
.uniq__title span,
.value__title span {
	white-space: nowrap;
	text-transform: none;
	background: -o-linear-gradient(332deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	background: linear-gradient(118deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
	.uniq__title,
.value__title {
		margin: 0px 0px 25px 0px;
	}
}

.uniq__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	gap: 50px;
}
@media (max-width: 1024px) {
	.uniq__row {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		gap: 30px;
	}
}
@media (max-width: 700px) {
	.uniq__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
}

.uniq__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 444px;
	        flex: 0 1 444px;
	position: relative;
	top: 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;
}
.uniq__img._watcher-view {
	top: 50px;
	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;
}
.uniq__img img {
	width: 100%;
}
@media (max-width: 1024px) {
	.uniq__img {
		top: 50px;
	}
	.uniq__img._watcher-view {
		top: 0px;
	}
}
@media (max-width: 700px) {
	.uniq__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.uniq__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 590px;
	        flex: 0 1 590px;
}
@media (max-width: 700px) {
	.uniq__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

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

.uniq-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.uniq-item:nth-child(1) {
	left: -150px;
}
@media (max-width: 1024px) {
	.uniq-item:nth-child(1) {
		left: 0;
	}
}
.uniq-item:nth-child(2) {
	left: -40px;
}
@media (max-width: 1024px) {
	.uniq-item:nth-child(2) {
		left: 0;
	}
}
.uniq-item:nth-child(3) {
	left: -20px;
}
@media (max-width: 1024px) {
	.uniq-item:nth-child(3) {
		left: 0;
	}
}
.uniq-item._watcher-view {
	top: 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;
}
.uniq-item:nth-child(1)._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;
}
.uniq-item:nth-child(2)._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;
}
.uniq-item:nth-child(3)._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;
}

.uniq-item__num {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 49px;
	text-transform: uppercase;
	background: -webkit-gradient(linear, left top, right top, from(#ae5cff), color-stop(40%, #ffb66a), color-stop(80%, #ff709e));
	background: -o-linear-gradient(left, #ae5cff 0%, #ffb66a 40%, #ff709e 80%);
	background: linear-gradient(90deg, #ae5cff 0%, #ffb66a 40%, #ff709e 80%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
	.uniq-item__num {
		font-size: 44px;
	}
}

.uniq-item__t {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 25px;
	line-height: 144%;
	color: #b767ef;
	margin: 0px 0px 6px 0px;
}
@media (max-width: 1024px) {
	.uniq-item__t {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.uniq-item__t {
		font-size: 17px;
	}
}

.value {
	position: relative;
	padding: 110px 0px;
}
@media (max-width: 480px) {
	.value {
		padding: 40px 0px 70px 0;
	}
}

.value__title {
	max-width: 700px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.value__title._watcher-view {
	top: 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;
}

.value__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -6px;
}

.value-item {
	padding: 6px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.value-item._watcher-view {
	top: 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;
}
.value-item:nth-child(1)._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;
}
.value-item:nth-child(2)._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;
}
.value-item:nth-child(3)._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;
}
@media (max-width: 760px) {
	.value-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 480px) {
	.value-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.value-item__row {
	background: #eb9a89;
	border-radius: 12px;
	padding: 20px;
	height: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.value-item__row > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
@media (min-width: 1024px) {
	.value-item__row:hover {
		-webkit-transform: scale(1.03);
		    -ms-transform: scale(1.03);
		        transform: scale(1.03);
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 820px) {
	.value-item__row {
		padding: 15px;
	}
}

.value-item__img {
	padding: 0px 0px 56% 0px;
}
.value-item__img img {
	width: 100%;
	border-radius: 12px;
}

.value-item__t {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 23px;
	line-height: 124%;
	color: #fff;
}
@media (max-width: 1024px) {
	.value-item__t {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.value-item__t {
		font-size: 17px;
	}
}

.value-item__text {
	color: #fff;
	font-size: 19px;
}
@media (max-width: 1024px) {
	.value-item__text {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.value-item__text {
		font-size: 14px;
	}
}

.free {
	position: relative;
	z-index: 1;
	margin: -30px 0px 0px 0px;
}
.free > ._container {
	max-width: 100%;
	background: -o-linear-gradient(332deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	background: linear-gradient(118deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	border-radius: 32px;
	padding: 20px;
}
@media (max-width: 480px) {
	.free > ._container {
		padding: 15px;
	}
}
@media (max-width: 1024px) {
	.free {
		margin: -30px 0px 0px 0px;
	}
}

.free__content {
	background: #fff;
	border-radius: 20px;
	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;
	padding: 75px 20px 50px 20px;
}
@media (max-width: 480px) {
	.free__content {
		padding: 40px 20px 20px 20px;
	}
}

.free__main {
	max-width: 1110px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px 40px;
}
@media (max-width: 760px) {
	.free__main {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.free__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 564px;
	        flex: 0 1 564px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	left: -50px;
}
.free__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;
}
.free__left > *:not(:last-child) {
	margin: 0px 0px 30px 0px;
}
@media (max-width: 760px) {
	.free__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.free__title span {
	white-space: nowrap;
	text-transform: none;
	background: -o-linear-gradient(332deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	background: linear-gradient(118deg, #ae5cff 0%, #ffb66a 50.5%, #ff709e 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.free__list h3 {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 27px;
	line-height: 137%;
	color: #000;
	margin: 0px 0px 22px 0px;
}
@media (max-width: 480px) {
	.free__list h3 {
		font-size: 17px;
		margin: 0px 0px 12px 0px;
	}
}
.free__list ul > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}
.free__list ul li {
	position: relative;
	padding: 0px 0px 0px 40px;
}
.free__list ul li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 26px;
	height: 26px;
	background: url("../img/free/ok.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 480px) {
	.free__list ul li::before {
		width: 20px;
		height: 20px;
	}
}
@media (max-width: 480px) {
	.free__list ul li {
		padding: 0px 0px 0px 32px;
	}
}

.free__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 514px;
	        flex: 0 1 514px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	left: 50px;
}
.free__img._watcher-view {
	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;
}
.free__img img {
	width: 100%;
	border-radius: 28px;
}
@media (max-width: 480px) {
	.free__img img {
		border-radius: 16px;
	}
}
@media (max-width: 760px) {
	.free__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.free__btn {
	margin: 50px 0px 0px 0px;
	height: 86px;
	width: 416px;
	max-width: 100%;
	font-size: 20px;
}
@media (max-width: 820px) {
	.free__btn {
		height: 62px;
		font-size: 14px;
		width: 300px;
	}
}
@media (max-width: 480px) {
	.free__btn {
		width: 100%;
		margin: 0 auto;
	}
}

.today {
	position: relative;
	margin: -30px 0px 0px 0px;
	padding: 30px 0px 0px 0px;
}
@media (max-width: 820px) {
	.today {
		padding: 85px 0px 0px 0px;
	}
}

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

.today__content {
	position: relative;
	margin: 0px 0px 0px calc((100vw - 1150px) / 2 + 30px);
}
@media (max-width: 1150px) {
	.today__content {
		margin: 0px;
		padding: 0px 20px;
	}
}

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

.today__left {
	padding: 60px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 690px;
	        flex: 0 1 690px;
	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;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	left: -50px;
}
.today__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: 820px) {
	.today__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 500px;
		        flex: 0 1 500px;
		padding: 0 0 40px 0;
	}
}
@media (max-width: 700px) {
	.today__left {
		padding: 0;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}

.today__title {
	line-height: 160%;
	margin: 0px 0px 30px 0px;
}
@media (max-width: 820px) {
	.today__title {
		text-align: center;
	}
}
@media (max-width: 480px) {
	.today__title {
		margin: 0px 0px 22px 0px;
	}
}

.today__text {
	margin: 0px 0px 35px 0px;
	background: #ff7d94;
	border-radius: 17px;
	padding: 18px;
	color: #fff;
	max-width: 546px;
}
@media (max-width: 480px) {
	.today__text {
		text-align: center;
		padding: 18px 15px;
		margin: 0px 0px 22px 0px;
	}
}

.today__block {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 20px;
	max-width: 546px;
	margin: 0px 0px 35px 0px;
}
@media (max-width: 480px) {
	.today__block {
		-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;
		margin: 0px 0px 20px 0px;
	}
}

.today__contacts h3 {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 119%;
	color: #000;
	margin: 0px 0px 5px 0px;
}
@media (max-width: 820px) {
	.today__contacts h3 {
		font-size: 16px;
	}
}

.today__tel {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 25px;
	color: #ab64fc;
	white-space: nowrap;
}
@media (max-width: 820px) {
	.today__tel {
		font-size: 20px;
	}
}

.today__btn {
	width: 210px;
}

.today__img {
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 600px;
	        flex: 0 1 600px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	left: 50px;
}
.today__img._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;
}
.today__img img {
	width: 100%;
}
@media (max-width: 700px) {
	.today__img {
		top: 0;
		margin: 0;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.today__addr {
	width: 536px;
	max-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 20px;
	line-height: 1.4;
	color: #a5a5a5;
	font-size: 16px;
	text-align: center;
	font-weight: 500;
}
@media (max-width: 1024px) {
	.today__addr {
		-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;
		text-align: left;
	}
}
@media (max-width: 1024px) {
	.today__addr {
		width: 400px;
	}
}
@media (max-width: 700px) {
	.today__addr {
		width: 250px;
		text-align: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		font-size: 14px;
	}
}

.totop {
	position: fixed;
	z-index: 100;
	bottom: 30px;
	right: calc((100vw - 1150px) / 2 + 20px);
	width: 52px;
	height: 52px;
	background: url("../img/icons/totop.svg") no-repeat;
	background-size: contain;
	-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);
}
.totop._active {
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.totop:hover {
		-webkit-transform: scale(1.1);
		    -ms-transform: scale(1.1);
		        transform: scale(1.1);
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 1150px) {
	.totop {
		right: 20px;
		bottom: 20px;
	}
}