@import "../fonts/stylesheet.css";
:root {
	--font-family: "Manrope", sans-serif;
	--second-family: "Mulish", sans-serif;
	--third-family: "SF Pro Display", sans-serif;
}

* {
	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: #ececf0;
}

._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: 1170px;
	margin: 0 auto;
	padding: 0 30px;
}
@media (max-width: 480px) {
	._container {
		padding: 0 20px;
	}
}

.title {
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 50px;
	line-height: 147%;
	text-transform: uppercase;
	text-align: center;
	color: #302f2d;
}
.title span {
	color: #4628b9;
}
@media (max-width: 1170px) {
	.title {
		font-size: calc(27px + 23 * ((100vw - 320px) / 1600));
	}
}

.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: #4729b9;
	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%, #4729b9 50.5%, #d9c7f5 100%);
	background: linear-gradient(118deg, #ae5cff 0%, #4729b9 50.5%, #d9c7f5 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;
	}
}

section {
	padding: 100px 0px 0px 0px;
}
@media (max-width: 820px) {
	section {
		padding: 70px 0px 0px 0px;
	}
}

.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: #4729b9;
	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: #e3ddf7;
	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;
	}
}
@media (max-width: 480px) {
	.callback-popup .btn {
		height: 52px !important;
	}
}

.popup__title {
	font-family: var(--font-family);
	font-weight: 800;
	font-size: 35px;
	line-height: 138%;
	text-transform: uppercase;
	text-align: center;
	color: #1d1d1d;
	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: #e3ddf7;
	background-size: cover;
}
@media (max-width: 480px) {
	.callback-demo .popup__content {
		background-position: 70% center;
	}
}
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;
	color: #000;
}
.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 #000;
	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 (max-width: 480px) {
	.hero__bg img {
		-o-object-position: center 60%;
		   object-position: center 60%;
	}
}

.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 - 1170px) / 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-family: var(--second-family);
	font-weight: 700;
	font-size: 70px;
	line-height: 136%;
	text-transform: uppercase;
	color: #4628b9;
	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;
	margin: 0 !important;
}
.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: 1170px) {
	.hero__title span {
		font-size: calc(55px + 27 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1170px) {
	.hero__title {
		font-size: calc(33px + 37 * ((100vw - 320px) / 1600));
	}
}
.hero__row {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 750px;
	        flex: 0 1 750px;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
	padding: 0px 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: 1170px) {
	.hero__row {
		padding: 0px 20px 125px 20px;
		margin: 0;
	}
}
@media (max-width: 1024px) {
	.hero__row {
		padding: 0px 20px 125px 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__sub {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 33px;
	line-height: 136%;
	text-transform: uppercase;
	color: #302f2d;
	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__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: 1170px) {
	.hero__sub {
		font-size: calc(15px + 18 * ((100vw - 320px) / 1600));
	}
}

.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: 350px;
}
.hero__text._watcher-view {
	top: 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;
}

.why {
	position: relative;
	z-index: 1;
	background: #5033be;
	border-radius: 57px;
	padding: 120px 0px 0px 0px;
	margin: -120px 0px 0px 0px;
}
.why::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 30px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 57px;
	background: #ececf0;
}
@media (max-width: 480px) {
	.why::before {
		border-radius: 39px;
		top: 15px;
	}
}
@media (max-width: 1024px) {
	.why {
		margin: -80px 0px 0px 0px;
	}
}
@media (max-width: 820px) {
	.why {
		margin: -50px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	.why {
		border-radius: 39px;
	}
}

.why__dec1 {
	position: absolute;
	top: 10%;
	left: 0;
	width: 280px;
}
.why__dec1 img {
	width: 100%;
}
@media (max-width: 1170px) {
	.why__dec1 {
		display: none;
	}
}

.why__dec2 {
	position: absolute;
	top: 50%;
	right: 0;
	width: 250px;
}
.why__dec2 img {
	width: 100%;
}
@media (max-width: 1170px) {
	.why__dec2 {
		display: none;
	}
}

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

.why__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -40px -12px;
	padding: 100px 0px 0px 0px;
}
@media (max-width: 1024px) {
	.why__items {
		padding: 60px 0px 0px 0px;
	}
}

.why-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
	padding: 40px 12px;
	position: relative;
	top: 50px;
	opacity: 0;
	visibility: hidden;
}
.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;
}
@media (max-width: 700px) {
	.why-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.why-item__row {
	border: 1px solid #4628b9;
	border-radius: 36px;
	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: 0 16px 25px 16px;
	height: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@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 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
.why-item__row > *:not(:last-child) {
	margin-bottom: 10px;
}
@media (max-width: 1024px) {
	.why-item__row {
		border-radius: 25px;
	}
}

.why-item__img {
	width: 168px;
	margin: -100px 0px 0px 0px;
}
.why-item__img img {
	width: 100%;
}
@media (max-width: 1024px) {
	.why-item__img {
		width: 116px;
		margin: -60px 0px 0px 0px;
	}
}

.why-item__text {
	text-align: center;
}

.why-result {
	position: relative;
	border: 1px solid #4628b9;
	border-radius: 36px;
	padding: 20px 45px 50px 45px;
	position: relative;
	background: #e7e3f4;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.why-result._watcher-view {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	-webkit-transition: all 0.3s ease 0.5s;
	-o-transition: all 0.3s ease 0.5s;
	transition: all 0.3s ease 0.5s;
}
.why-result::before {
	content: "";
	position: absolute;
	top: -16px;
	left: -8px;
	width: 100%;
	height: 100%;
	border: 1px solid #4628b9;
	border-radius: 36px;
}
@media (max-width: 480px) {
	.why-result::before {
		left: 8px;
		top: 8px;
	}
}
@media (max-width: 480px) {
	.why-result {
		padding: 20px 0px 0px 0px;
	}
}

.why__res {
	margin: 80px 0px 0px 0px;
}
@media (max-width: 480px) {
	.why__res {
		margin: 35px 0px 0px 0px;
	}
}

.why-result__t {
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 63px;
	line-height: 136%;
	text-transform: uppercase;
	color: #4628b9;
}
@media (max-width: 820px) {
	.why-result__t {
		font-size: 43px;
	}
}
@media (max-width: 480px) {
	.why-result__t {
		padding: 0px 20px;
	}
}

.why-result__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.why-result__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: right center;
	   object-position: right center;
	border-radius: 36px;
}
@media (max-width: 480px) {
	.why-result__bg img {
		-o-object-position: center;
		   object-position: center;
	}
}
@media (max-width: 480px) {
	.why-result__bg {
		position: relative;
	}
}

@media (max-width: 480px) {
	.why-result__text {
		font-size: 16px;
		padding: 0px 20px;
	}
}

.lost {
	position: relative;
	z-index: 1;
}

.lost__dec1 {
	position: absolute;
	top: -20%;
	right: 0;
	width: 360px;
}
.lost__dec1 img {
	width: 100%;
}
@media (max-width: 1170px) {
	.lost__dec1 {
		display: none;
	}
}

.lost__title {
	text-align: left;
	max-width: 940px;
	margin: 0px 0px 50px 0px;
	position: relative;
	top: 50px;
	opacity: 0;
	visibility: hidden;
}
.lost__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) {
	.lost__title {
		margin: 0px 0px 28px 0px;
		text-align: center;
	}
}

.lost__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: -7px;
	position: relative;
}

.lost-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
	padding: 7px;
	position: relative;
	top: 50px;
	opacity: 0;
	visibility: hidden;
}
.lost-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;
}
.lost-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;
}
.lost-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;
}
.lost-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;
}
.lost-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) {
	.lost-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 600px) {
	.lost-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 80%;
		        flex: 0 0 80%;
	}
}

.lost-item__row {
	border: 1px solid #4628b9;
	border-radius: 31px;
	padding: 43px 10px 28px 10px;
	background: #f5f5f5;
	height: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.lost-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;
	}
}
.lost-item__row > *:not(:last-child) {
	margin: 0px 0px 8px 0px;
}

.lost-item__img {
	width: 62px;
}
.lost-item__img img {
	width: 100%;
}
@media (max-width: 480px) {
	.lost-item__img {
		width: 56px;
	}
}

.lost-item__t {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	line-height: 151%;
	color: #1e1e1e;
}
@media (max-width: 480px) {
	.lost-item__t {
		font-size: 18px;
	}
}

.lost-item__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	line-height: 137%;
	color: #81807d;
}
@media (max-width: 480px) {
	.lost-item__text {
		font-size: 16px;
	}
}

.assist {
	position: relative;
	z-index: 1;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}
.assist._watcher-view {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	-webkit-transition: all 0.6s ease 0.8s;
	-o-transition: all 0.6s ease 0.8s;
	transition: all 0.6s ease 0.8s;
}
.assist > ._container {
	max-width: 1324px;
}

.assist__content {
	background: #4628b9;
	padding: 60px 100px;
	border-radius: 57px;
	overflow: hidden;
}
@media (max-width: 1170px) {
	.assist__content {
		padding: 40px;
	}
}
@media (max-width: 480px) {
	.assist__content {
		border-radius: 33px;
		padding: 65px 20px;
		margin: 0px -20px;
	}
}

.assist__title {
	font-size: 55px;
	color: #fff;
	text-align: left;
}
@media (max-width: 1170px) {
	.assist__title {
		font-size: calc(30px + 25 * ((100vw - 320px) / 1600));
	}
}

.assist__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
@media (max-width: 820px) {
	.assist__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;
		gap: 20px;
	}
}

.assist__t {
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 38px;
	line-height: 136%;
	text-transform: uppercase;
	color: #fff;
	margin: 0px 0px 30px 0px;
}
@media (max-width: 1170px) {
	.assist__t {
		font-size: calc(20px + 18 * ((100vw - 320px) / 1600));
	}
}

.assist__sub {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 25px;
	line-height: 116%;
	color: #fff;
	margin: 0px 0px 45px 0px !important;
}
@media (max-width: 1170px) {
	.assist__sub {
		font-size: calc(15px + 10 * ((100vw - 320px) / 1600));
	}
}

.assist__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 546px;
	        flex: 0 1 546px;
}
.assist__left > *:not(:last-child) {
	margin: 0px 0px 30px 0px;
}
@media (max-width: 820px) {
	.assist__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

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

.assist__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 15px;
	color: #fff;
}
.assist__item img {
	width: 58px;
}
@media (max-width: 480px) {
	.assist__item img {
		width: 40px;
	}
}

.assist__block {
	border-radius: 8px;
	background: #fff;
	padding: 10px 10px 10px 30px;
	position: relative;
}
.assist__block::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 20px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 1.5px;
	height: calc(100% - 24px);
	background: #4628b9;
}

.assist__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 674px;
	        flex: 0 1 674px;
	margin: 0px -100px -60px 0px;
}
.assist__img img {
	width: 100%;
}
@media (max-width: 1170px) {
	.assist__img {
		margin: 0px -40px -40px 0px;
	}
}
@media (max-width: 820px) {
	.assist__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 520px;
		margin: 0px 0px -100px 0px;
	}
}
@media (max-width: 480px) {
	.assist__img {
		margin: 0px 0px -150px 0px;
	}
}

.process {
	position: relative;
}

.process__dec1 {
	position: absolute;
	top: -250px;
	left: 0;
	width: 500px;
	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__dec1 img {
	width: 100%;
}
.process__dec1._watcher-view {
	top: -400px;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 1s ease 0.5s;
	-o-transition: all 1s ease 0.5s;
	transition: all 1s ease 0.5s;
}
@media (max-width: 480px) {
	.process__dec1._watcher-view {
		top: -200px;
	}
}
@media (max-width: 480px) {
	.process__dec1 {
		width: 300px;
	}
}

.process__dec2 {
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	opacity: 0;
	visibility: hidden;
	top: 100px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.process__dec2 img {
	width: 100%;
}
.process__dec2._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 1s ease 0.6s;
	-o-transition: all 1s ease 0.6s;
	transition: all 1s ease 0.6s;
}
@media (max-width: 480px) {
	.process__dec2._watcher-view {
		top: 400px;
	}
}
@media (max-width: 480px) {
	.process__dec2 {
		width: 200px;
		top: 350px;
	}
}

.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__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: 150px;
	height: 95px;
	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: 31%;
	right: -28%;
}
@media (max-width: 1024px) {
	.process-item:nth-child(1)::before {
		right: -40%;
	}
}
@media (max-width: 1170px) {
	.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% + 20px);
		right: 5%;
		-ms-transform: rotate(70deg);
		-webkit-transform: rotate(70deg);
		transform: rotate(70deg);
	}
}
.process-item:nth-child(2) {
	margin: 200px 0px 0px 0px;
}
.process-item:nth-child(2)::before {
	bottom: 0%;
	right: -40%;
	-ms-transform: rotate(100deg);
	-webkit-transform: rotate(100deg);
	transform: rotate(100deg);
}
@media (max-width: 1024px) {
	.process-item:nth-child(2)::before {
		right: -60%;
	}
}
@media (max-width: 760px) {
	.process-item:nth-child(2) {
		margin: 0;
	}
	.process-item:nth-child(2)::before {
		top: calc(100% + 0px);
		right: 65%;
		-ms-transform: rotate(-130deg);
		-webkit-transform: rotate(-130deg);
		transform: rotate(-130deg);
	}
}
.process-item:nth-child(3)::before {
	top: 43%;
	right: -57%;
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
@media (max-width: 1024px) {
	.process-item:nth-child(3)::before {
		right: -70%;
	}
}
@media (max-width: 760px) {
	.process-item:nth-child(3) {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
	.process-item:nth-child(3)::before {
		top: calc(100% + 20px);
		right: 5%;
		-ms-transform: rotate(70deg);
		-webkit-transform: rotate(70deg);
		transform: rotate(70deg);
	}
}
.process-item:nth-child(4) {
	margin: 250px 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%;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		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;
	}
}

.process-item_i .process-item__num {
	font-size: 0;
	margin: 0px 0px 20px 0px;
}
.process-item_i .process-item__num img {
	width: 70px;
}
.process-item_i .process-item__text {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 30px;
	line-height: 114%;
	color: #1b1b1b;
}
@media (max-width: 1170px) {
	.process-item_i .process-item__text {
		font-size: 25px;
	}
}

.process-item__num {
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 107px;
	text-transform: uppercase;
	color: #4628b9;
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1170px) {
	.process-item__num {
		font-size: calc(78px + 22 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.process-item__num {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 480px) {
	.process-item__num {
		margin: 0px 0px 10px 0px;
	}
}

.process-item__text {
	font-size: 22px;
}
@media (max-width: 1170px) {
	.process-item__text {
		font-size: 18px;
	}
}
@media (max-width: 820px) {
	.process-item__text {
		font-size: 15px;
	}
}
@media (max-width: 480px) {
	.process-item__text {
		max-width: 220px;
	}
}

.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: #e2dbf7;
	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 0.5s;
	-o-transition: all 0.3s ease 0.5s;
	transition: all 0.3s ease 0.5s;
	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__title {
	font-family: var(--font-family);
	font-weight: 800;
	font-size: 45px;
	line-height: 140%;
	text-transform: uppercase;
	text-align: center;
	color: #000;
}
@media (max-width: 1170px) {
	.contactus__title {
		font-size: calc(25px + 20 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.contactus__title {
		font-size: 25px;
	}
}

.contactus__text {
	max-width: 560px;
}

.advant {
	position: relative;
	z-index: 1;
	background: #5033be;
	border-radius: 57px;
	padding: 120px 0px 0px 0px;
	margin: 58px 0px 0px 0px;
}
.advant::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 30px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 57px;
	background: #ececf0;
}
@media (max-width: 480px) {
	.advant::before {
		top: 15px;
		border-radius: 39px;
	}
}
.advant > ._container {
	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 .why-result {
	width: 790px;
	max-width: 100%;
}
.advant .why-result .why-result__t {
	font-size: 45px;
}
@media (max-width: 1170px) {
	.advant .why-result .why-result__t {
		font-size: calc(31px + 19 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.advant .why-result .why-result__t {
		margin: 0px 0px 10px 0px;
	}
}
@media (max-width: 480px) {
	.advant .why-result {
		padding: 30px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	.advant {
		padding: 90px 0px 0px 0px;
		border-radius: 39px;
	}
}

.advant__title {
	margin: 0px 0px 25px 0px;
	position: relative;
	top: 50px;
	opacity: 0;
	visibility: hidden;
}
.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__block {
	position: relative;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 25px;
	line-height: 128%;
	color: #1b1b1b;
	border: 1px solid #4628b9;
	border-radius: 25px;
	width: 815px;
	max-width: 100%;
	padding: 30px 30px 30px 90px;
	margin: 0px 0px 60px 0px;
	top: 50px;
	opacity: 0;
	visibility: hidden;
}
.advant__block._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;
}
.advant__block::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 30px;
	width: 45px;
	height: 45px;
	background: url("../img/icons/arrow.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 1024px) {
	.advant__block::before {
		top: 28px;
		width: 28px;
		height: 28px;
	}
}
@media (max-width: 480px) {
	.advant__block::before {
		top: 20px;
		left: 20px;
	}
}
@media (max-width: 1170px) {
	.advant__block {
		font-size: calc(15px + 10 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.advant__block {
		padding: 20px 20px 20px 70px;
	}
}
@media (max-width: 480px) {
	.advant__block {
		padding: 15px 15px 15px 60px;
		margin: 0px 0px 35px 0px;
	}
}

.advant__t {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 33px;
	line-height: 151%;
	text-transform: uppercase;
	text-align: center;
	color: #1b1b1b;
	margin: 0px 0px 50px 0px;
	position: relative;
	top: 50px;
	opacity: 0;
	visibility: hidden;
}
.advant__t._watcher-view {
	top: 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;
}
@media (max-width: 1170px) {
	.advant__t {
		font-size: calc(22px + 11 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.advant__t {
		margin: 0px 0px 40px 0px;
	}
}

.advant__items {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-columns: 2;
	   -moz-columns: 2;
	        columns: 2;
	-webkit-column-gap: 100px;
	   -moz-column-gap: 100px;
	        column-gap: 100px;
	margin: 0px 0px 60px 0px;
}
.advant__items > *:not(:last-child) {
	margin: 0px 0px 50px 0px;
}
@media (max-width: 480px) {
	.advant__items > *:not(:last-child) {
		margin: 0px 0px 18px 0px;
	}
}
@media (max-width: 1024px) {
	.advant__items {
		-webkit-column-gap: 40px;
		   -moz-column-gap: 40px;
		        column-gap: 40px;
	}
}
@media (max-width: 700px) {
	.advant__items {
		-webkit-columns: 1;
		   -moz-columns: 1;
		        columns: 1;
		margin: 0px 0px 40px 0px;
	}
}

.advant__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	top: 50px;
	opacity: 0;
	visibility: hidden;
	-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;
}
.advant__item._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	-webkit-transition: all 0.3s ease 0.5s;
	-o-transition: all 0.3s ease 0.5s;
	transition: all 0.3s ease 0.5s;
}
.advant__item img {
	width: 98px;
}
@media (max-width: 480px) {
	.advant__item img {
		width: 66px;
	}
}

.eco {
	position: relative;
}

.eco__dec1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 230px;
}
.eco__dec1 img {
	width: 100%;
}
@media (max-width: 1170px) {
	.eco__dec1 {
		width: calc(50px + 200 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.eco__dec1 {
		display: none;
	}
}

.eco__dec2 {
	position: absolute;
	top: 60%;
	right: 0;
	width: 260px;
}
.eco__dec2 img {
	width: 100%;
}
@media (max-width: 1170px) {
	.eco__dec2 {
		width: calc(50px + 230 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.eco__dec2 {
		display: none;
	}
}

.eco__title {
	margin: 0px 0px 70px 0px;
	position: relative;
	top: 50px;
	opacity: 0;
	visibility: hidden;
}
.eco__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) {
	.eco__title {
		margin: 0px 0px 40px 0px;
	}
}

.eco__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: -30px -11px;
	position: relative;
	top: 50px;
	opacity: 0;
	visibility: hidden;
}
.eco__items._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: 700px) {
	.eco__items {
		margin: -20px -11px;
	}
}

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

.eco-item__row {
	background: #f5f5f5;
	border-radius: 33px;
	padding: 22px;
	height: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.eco-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;
	}
}
.eco-item__row > *:not(:last-child) {
	margin-bottom: 5px;
}
@media (max-width: 480px) {
	.eco-item__row {
		border-radius: 26px;
	}
}

.eco-item__img {
	width: 77px;
	margin: -60px 0px 0px 0px;
}
.eco-item__img img {
	width: 100%;
}
@media (max-width: 480px) {
	.eco-item__img {
		width: 60px;
		margin: -50px 0px 0px 0px;
	}
}

.eco-item__t {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 22px;
	line-height: 151%;
	color: #1e1e1e;
}
@media (max-width: 480px) {
	.eco-item__t {
		font-size: 17px;
	}
}

.eco-item__text {
	color: #81807d;
}

.anal {
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(2);
	    -ms-transform: scale(2);
	        transform: scale(2);
}
.anal._watcher-view {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	-webkit-transition: all 0.4s ease 1s;
	-o-transition: all 0.4s ease 1s;
	transition: all 0.4s ease 1s;
}
.anal > ._container {
	max-width: 1324px;
}

.anal__content {
	background: #4628b9;
	padding: 60px 100px;
	border-radius: 57px;
	overflow: hidden;
}
@media (max-width: 1170px) {
	.anal__content {
		padding: 40px;
	}
}
@media (max-width: 480px) {
	.anal__content {
		border-radius: 33px;
		padding: 50px 20px;
		margin: 0px -20px;
	}
}

.anal__dec1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
}
.anal__dec1 img {
	width: 100%;
}
@media (max-width: 1170px) {
	.anal__dec1 {
		width: calc(50px + 270 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.anal__dec1 {
		display: none;
	}
}

.anal__dec2 {
	position: absolute;
	top: 40%;
	right: 0;
	width: 230px;
}
.anal__dec2 img {
	width: 100%;
}
@media (max-width: 1170px) {
	.anal__dec2 {
		width: calc(50px + 200 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.anal__dec2 {
		display: none;
	}
}

.anal__title {
	color: #fff;
	margin: 0px 0px 48px 0px;
	display: 4px;
	margin: 0px 0px 30px 0px;
}

.anal__items {
	-webkit-columns: 2;
	   -moz-columns: 2;
	        columns: 2;
	-webkit-column-gap: 100px;
	   -moz-column-gap: 100px;
	        column-gap: 100px;
}
.anal__items > *:not(:last-child) {
	margin: 0px 0px 55px 0px;
}
@media (max-width: 820px) {
	.anal__items > *:not(:last-child) {
		margin: 0px 0px 40px 0px;
	}
}
@media (max-width: 1024px) {
	.anal__items {
		-webkit-column-gap: 50px;
		   -moz-column-gap: 50px;
		        column-gap: 50px;
	}
}
@media (max-width: 820px) {
	.anal__items {
		-webkit-columns: 1;
		   -moz-columns: 1;
		        columns: 1;
	}
}

.anal-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #fff;
}
.anal-item img {
	width: 102px;
}
@media (max-width: 480px) {
	.anal-item img {
		width: 78px;
	}
}
.start {
	position: relative;
	padding-left: calc((100vw - 1170px) / 2 - 130px);
	padding-right: calc((100vw - 1170px) / 2 + 30px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 1170px) {
	.start {
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media (max-width: 700px) {
	.start {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}

.start__dec1 {
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
}
.start__dec1 img {
	width: 100%;
}
@media (max-width: 1024px) {
	.start__dec1 {
		display: none;
	}
}

.start__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 712px;
	        flex: 0 1 712px;
	margin: 0px 0px 0px -100px;
	position: relative;
	left: -50px;
	opacity: 0;
	visibility: hidden;
}
.start__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;
}
.start__img img {
	width: 100%;
}
@media (max-width: 700px) {
	.start__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0 -80px;
	}
}

.start__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 610px;
	        flex: 0 1 610px;
	position: relative;
	left: 50px;
	opacity: 0;
	visibility: hidden;
}
.start__right._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: 700px) {
	.start__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.start__title {
	text-align: left;
	margin: 0px 0px 50px 0px;
}
@media (max-width: 700px) {
	.start__title {
		text-align: center;
		margin: 0px 0px 20px 0px;
	}
}

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

.start__item {
	border: 0.63px solid #000;
	border-radius: 60px;
	padding: 13px 20px 13px 85px;
	position: relative;
}
.start__item::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 30px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 36px;
	height: 36px;
	background: url("../img/icons/arrow.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 480px) {
	.start__item::before {
		width: 24px;
		height: 24px;
	}
}
@media (max-width: 480px) {
	.start__item {
		padding: 10px 20px 10px 70px;
	}
}

.today {
	position: relative;
	padding: 0;
	position: relative;
	z-index: 1;
	background: #5033be;
	border-radius: 57px;
	padding: 0px 0 0 calc((100vw - 1170px) / 2);
}
.today::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 30px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 57px;
	background: -webkit-gradient(linear, right top, left top, from(#eae7f2), to(#eeeeef));
	background: -o-linear-gradient(right, #eae7f2 0%, #eeeeef 100%);
	background: linear-gradient(270deg, #eae7f2 0%, #eeeeef 100%);
}
@media (max-width: 1024px) {
	.today::before {
		background: -webkit-gradient(linear, left top, left bottom, from(#eae7f2), to(#eeeeef));
		background: -o-linear-gradient(top, #eae7f2 0%, #eeeeef 100%);
		background: linear-gradient(180deg, #eae7f2 0%, #eeeeef 100%);
	}
}
@media (max-width: 480px) {
	.today::before {
		border-radius: 39px;
		top: 15px;
	}
}

.today__content {
	padding: 80px 0px 0px 0px;
}

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

.today__right {
	padding: 60px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 700px;
	        flex: 0 1 700px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 100%;
	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__right._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__right > *:not(:last-child) {
	margin: 0px 0px 30px 0px;
}
@media (max-width: 1024px) {
	.today__right {
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		text-align: center;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		padding: 40px 0px 0px 0px;
	}
}
@media (max-width: 820px) {
	.today__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 500px;
		        flex: 0 1 500px;
		padding: 0 0 40px 0;
	}
}
@media (max-width: 700px) {
	.today__right {
		padding: 0;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}

.today__title {
	text-align: left;
	margin: 0px 0px 10px 0px;
}
@media (max-width: 820px) {
	.today__title {
		text-align: center;
	}
}
@media (max-width: 480px) {
	.today__title {
		font-size: 22px;
	}
}

.today__text {
	max-width: 600px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	margin: 0px 0px 27px 0px;
	border-radius: 17px;
	text-align: left;
}
.today__text img {
	width: 38px;
}
@media (max-width: 480px) {
	.today__text img {
		width: 28px;
	}
}
@media (max-width: 480px) {
	.today__text {
		margin: 0px 0px 35px 0px;
		font-size: 16px;
	}
}

.today__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 20px;
	margin: 0px 0px 35px 0px;
}
.today__block > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
.today__block p {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 17px;
	line-height: 147%;
	color: #81807d;
}
@media (max-width: 480px) {
	.today__block p {
		font-size: 14px;
	}
}
@media (max-width: 1024px) {
	.today__block {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}
@media (max-width: 700px) {
	.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;
	}
}
@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__addr {
	width: 580px;
	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;
	text-align: left;
}
@media (max-width: 1024px) {
	.today__addr {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: flex-today;
		    -ms-flex-align: flex-today;
		        align-items: flex-today;
		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;
	}
}

.today__tel {
	font-weight: 600;
	font-size: 25px;
	color: #5033be;
	white-space: nowrap;
	position: relative;
	padding: 0px 0px 0px 25px;
}
.today__tel::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 22px;
	height: 22px;
	background: url("../img/icons/tel.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 820px) {
	.today__tel {
		font-size: 20px;
	}
}

.today__web {
	font-weight: 600;
	font-size: 25px;
	color: #5033be;
	white-space: nowrap;
	position: relative;
	padding: 0px 0px 0px 36px;
}
.today__web::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 22px;
	height: 22px;
	background: url("../img/icons/globe.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 820px) {
	.today__web::before {
		width: 18px;
		height: 18px;
	}
}
@media (max-width: 820px) {
	.today__web {
		font-size: 20px;
		padding: 0px 0px 0px 26px;
	}
}

.today__btn {
	max-width: 415px;
	white-space: normal;
	font-size: 20px;
	height: 94px;
}
@media (max-width: 480px) {
	.today__btn {
		font-size: 14px;
		height: 68px;
	}
}

.today__img {
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 700px;
	        flex: 0 1 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;
	left: 50px;
	margin: 0px -100px 0px 0px;
}
.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: 1024px) {
	.today__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 400px;
		-ms-flex-item-align: center;
		    -ms-grid-row-align: center;
		    align-self: center;
		margin: 0 auto;
	}
}
@media (max-width: 700px) {
	.today__img {
		top: 0;
		margin: 0px -100px 0 0;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.totop {
	position: fixed;
	z-index: 100;
	bottom: 30px;
	right: calc((100vw - 1170px) / 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: 1170px) {
	.totop {
		right: 20px;
		bottom: 20px;
	}
}