@import "../fonts/stylesheet.css";
:root {
	--font-family: "Gotham Pro", sans-serif;
	--second-family: "Minion Pro", 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: "Gotham Pro";
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

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

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

.title {
	font-family: var(--second-family);
	font-weight: 500;
	font-size: 70px;
	text-transform: uppercase;
	color: #fff;
}
@media (max-width: 1680px) {
	.title {
		font-size: 50px;
	}
}
@media (max-width: 1024px) {
	.title {
		font-size: 45px;
	}
}
@media (max-width: 480px) {
	.title {
		font-size: 40px;
	}
}

.sub {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 24px;
	line-height: 1.2;
}
@media (max-width: 1680px) {
	.sub {
		font-size: 20px;
	}
}

.text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	line-height: 140%;
	color: #fff;
}
.text > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}
@media (max-width: 1680px) {
	.text {
		font-size: 16px;
	}
}

.btn {
	position: relative;
	cursor: pointer;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 10px 20px;
	border: 1px solid #313131;
	height: 48px;
	text-align: center;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	color: #313131;
	border-radius: 50px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	white-space: nowrap;
}
.btn img {
	width: 17px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 17px;
	        flex: 0 0 17px;
	margin: 0px 0px 0px 10px;
}
@media (max-width: 1024px) {
	.btn {
		font-size: 16px;
		height: 40px;
	}
}
@media (min-width: 1024px) {
	.btn:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background: #F15455;
		border: 1px solid #F15455;
		color: #fff;
	}
}

.btn_b {
	background: #313131;
	color: #fff;
}

.btn_w {
	border: 1px solid #fff;
	color: #fff;
}
.btn_w.btn_login::after {
	background: url("../img/icons/login.svg") no-repeat;
	background-size: contain;
}
@media (min-width: 1024px) {
	.btn_w:hover {
		background: #313131;
		border: 1px solid #313131;
	}
}

.btn_login {
	padding: 10px 7px 10px 20px;
}
.btn_login::after {
	margin: 0px 0px 0px 10px;
	content: "";
	width: 35px;
	height: 35px;
	background: url("../img/icons/login_b.svg") no-repeat;
	background-size: contain;
}

.header {
	position: absolute;
	z-index: 20;
	top: -120px;
	left: 0;
	width: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-animation: header 0.5s 0.3s linear forwards;
	        animation: header 0.5s 0.3s linear forwards;
}

@-webkit-keyframes header {
	from {
		top: -120px;
	}
	to {
		top: 0;
	}
}

@keyframes header {
	from {
		top: -120px;
	}
	to {
		top: 0;
	}
}
.header__row {
	background: #fff;
	position: relative;
	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;
	height: 80px;
	padding: 0px 30px;
	border-radius: 0 0 20px 20px;
}
@media (max-width: 1200px) {
	.header__row {
		height: 60px;
	}
}

.header__logo {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 100px;
	z-index: 5;
}
.header__logo img {
	width: 100%;
}
.header__logo::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: #fff;
}
@media (max-width: 1200px) {
	.header__logo::before {
		width: 100px;
		height: 100px;
	}
}
@media (max-width: 1200px) {
	.header__logo {
		width: 80px;
	}
}

.menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.menu__list li {
	margin: 0px 45px 0px 0px;
}
.menu__list li:last-child {
	margin: 0;
}
@media (max-width: 1200px) {
	.menu__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
	}
	.menu__list li {
		margin: 0px 0px 30px 0px;
	}
}

.menu__link {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	color: #313131;
	-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 {
		color: #E00000;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		text-shadow: 0px 0px 20px #E00000;
	}
}

.menu__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}
@media (max-width: 1200px) {
	.menu__body {
		position: fixed;
		top: 0;
		bottom: 0;
		right: 0;
		width: 100%;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		-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;
		opacity: 0;
		visibility: hidden;
		-webkit-backdrop-filter: blur(26px);
		        backdrop-filter: blur(26px);
	}
	.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;
		opacity: 1;
		visibility: visible;
	}
}
@media (max-width: 1200px) and (max-width: 1200px) {
	.menu__body {
		padding: 125px 40px 75px 40px;
	}
}
@media (max-width: 1200px) and (max-width: 480px) {
	.menu__body {
		padding: 100px 20px;
	}
}
@media (max-width: 1200px) {
	.menu__body > *:not(:last-child) {
		margin: 0px 0px 30px 0px;
	}
}

.icon-menu {
	display: none;
}
@media (max-width: 1200px) {
	.icon-menu {
		display: block;
		position: absolute;
		top: 50%;
		right: 30px;
		-webkit-transform: translate(0, -50%);
		    -ms-transform: translate(0, -50%);
		        transform: translate(0, -50%);
		width: 20px;
		height: 12px;
		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: #fff;
	}
	.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);
	}
	.icon-menu::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		    -ms-transform: translate(-50%, -50%);
		        transform: translate(-50%, -50%);
		width: 40px;
		height: 40px;
		background: #131313;
		border-radius: 50%;
	}
}
@media (max-width: 480px) {
	.icon-menu {
		right: 20px;
	}
}

.header__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 8px;
}
@media (max-width: 1024px) {
	.header__buttons {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}

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: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
	background: url("../img/icons/close.svg") no-repeat;
	background-size: contain;
}

.callback-popup .popup__content {
	max-width: 730px;
}
.popup-video .popup__content {
	max-width: 1500px;
}
.popup-video .popup__close {
	top: -35px;
	right: 5px;
	width: 30px;
	height: 30px;
}
@media (max-width: 1400px) {
	.popup-video .popup__close {
		right: 0px;
		top: 0px;
	}
}
.popup-video iframe, .popup-video video {
	width: 100%;
	height: calc(100vh - 100px);
}

footer {
	background: #8E8E8E;
}

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

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

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

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

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

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

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

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

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

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

.button-prev,
.button-next {
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 60px;
	height: 60px;
	cursor: pointer;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.button-prev {
	left: -90px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	background: #313131 url("../img/icons/p-left.svg") no-repeat;
	background-size: 16px;
	background-position: center;
}
@media (min-width: 1024px) {
	.button-prev:hover {
		background: #ff3744 url("../img/icons/p-left.svg") no-repeat;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background-position: center;
		background-size: 16px;
	}
}
@media (max-width: 1680px) {
	.button-prev {
		left: -15px;
	}
}

.button-next {
	right: -90px;
	background: #313131 url("../img/icons/p-right.svg") no-repeat;
	background-size: 16px;
	background-position: center;
}
@media (min-width: 1024px) {
	.button-next:hover {
		background: #ff3744 url("../img/icons/p-right.svg") no-repeat;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background-position: center;
		background-size: 16px;
	}
}
@media (max-width: 1680px) {
	.button-next {
		right: -15px;
	}
}

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

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

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

.feedb-slider {
	max-width: 1346px;
	margin: 0 auto;
	position: relative;
}
.feedb-slider .feedb-slider__container {
	border-radius: 50px;
}
@media (max-width: 820px) {
	.feedb-slider .feedb-slider__container {
		border-radius: 30px;
	}
}
@media (max-width: 700px) {
	.feedb-slider .feedb-slider__container {
		border-radius: 0;
	}
}
.feedb-slider .swiper-slide {
	position: relative;
	width: 100%;
	padding: 0px 0px 48% 0px;
	cursor: pointer;
}
.feedb-slider .swiper-slide::before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	background: url("../img/feedb/play.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;
}
@media (max-width: 1919px) {
	.feedb-slider .swiper-slide::before {
		width: calc(50px + 150 * ((100vw - 320px) / 1600));
		height: calc(50px + 150 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 700px) {
	.feedb-slider .swiper-slide img {
		border-radius: 20px;
	}
}
@media (min-width: 1024px) {
	.feedb-slider .swiper-slide:hover::before {
		-webkit-transform: translate(-50%, -50%) scale(1.1);
		    -ms-transform: translate(-50%, -50%) scale(1.1);
		        transform: translate(-50%, -50%) 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: 700px) {
	.feedb-slider .button-prev,
.feedb-slider .button-next {
		display: none;
	}
}
@media (max-width: 1680px) {
	.feedb-slider {
		padding: 0px 60px;
	}
}
@media (max-width: 700px) {
	.feedb-slider {
		padding: 0;
		margin: 0px -30px;
	}
}
@media (max-width: 480px) {
	.feedb-slider {
		margin: 0px -15px;
	}
}

.feedb-text-slider {
	position: relative;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 500px;
	        flex: 0 0 500px;
	min-width: 0;
	margin: 0px 300px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.feedb-text-slider .swiper-slide img {
	width: 100%;
}
.feedb-text-slider .feedb-text-slider__container {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 300px;
	        flex: 0 0 300px;
}
@media (max-width: 1024px) {
	.feedb-text-slider .feedb-text-slider__container {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 200px;
		        flex: 0 0 200px;
	}
}
.feedb-text-slider .button-prev {
	position: relative;
	top: 0;
	-webkit-transform: translate(0);
	    -ms-transform: translate(0);
	        transform: translate(0);
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 60px;
	        flex: 0 0 60px;
	background: #fff url("../img/icons/p-left-r.svg") no-repeat;
	background-size: 16px;
	background-position: center;
	left: 0;
}
.feedb-text-slider .button-next {
	position: relative;
	top: 0;
	-webkit-transform: translate(0);
	    -ms-transform: translate(0);
	        transform: translate(0);
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 60px;
	        flex: 0 0 60px;
	background: #fff url("../img/icons/p-right-r.svg") no-repeat;
	background-size: 16px;
	background-position: center;
	right: 0;
}
@media (max-width: 1680px) {
	.feedb-text-slider {
		margin: 0px 100px 0px 0px;
		gap: 15px;
	}
}
@media (max-width: 1024px) {
	.feedb-text-slider {
		margin: 0;
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 320px;
		        flex: 0 0 320px;
	}
}
@media (max-width: 760px) {
	.feedb-text-slider {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.bread {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 7px 32px;
}
.bread a, .bread p {
	position: relative;
}
@media (min-width: 1024px) {
	.bread a:hover {
		text-decoration: underline;
	}
}
.bread > a:first-child {
	color: #000;
}
.bread > *:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: -20px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	content: "/";
}

[data-sticky]._sticked [data-sticky-item] {
	position: fixed !important;
	bottom: auto !important;
	left: 0 !important;
	right: 0 !important;
}

.prlx__block {
	height: 100vh;
	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;
}

.prlx__item {
	width: 100px;
	height: 100px;
	position: relative;
}

.prlx__item1 {
	background: red;
}

.prlx__item2 {
	background: green;
}

.prlx__item3 {
	background: #415654;
}

.prlx__item4 {
	background: #2C82AD;
}

.prlx__item5 {
	background: #B042AD;
}

.hero {
	position: relative;
	padding: 0px 0px 150px 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;
}

.hero__content {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media (max-width: 820px) {
	.hero__content {
		padding: 150px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	.hero__content {
		padding: 130px 0px 0px 0px;
	}
}

.hero__offi {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 24px;
	line-height: 88%;
	text-transform: uppercase;
	color: #313131;
	margin: 0px 0px 14px 0px;
	position: relative;
}
@media (max-width: 480px) {
	.hero__offi {
		font-size: 20px;
	}
}

.hero__title {
	font-size: 20px;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 40px;
	line-height: 1.1;
	text-transform: uppercase;
	color: #c1121c;
	margin: 0px 0px 40px 0px;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	max-width: 550px;
}
.hero__title span {
	font-size: 52px;
}
@media (max-width: 1919px) {
	.hero__title span {
		font-size: calc(28px + 32 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1919px) {
	.hero__title {
		font-size: calc(24px + 16 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.hero__title {
		margin: 0px 0px 20px 0px;
	}
}

.hero__row {
	height: 100vh;
	min-height: 700px;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}
@media (max-width: 1024px) {
	.hero__row {
		min-height: 600px;
	}
}
@media (max-width: 820px) {
	.hero__row {
		min-height: auto;
		height: auto;
	}
}

.hero__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 8px;
	position: relative;
}
@media (max-width: 480px) {
	.hero__buttons {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}

.hero__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 40%;
	        flex: 0 0 40%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-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: 1400px) {
	.hero__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 40%;
		        flex: 0 0 40%;
	}
}
@media (max-width: 1024px) {
	.hero__left {
		padding: 0;
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 45%;
		        flex: 0 0 45%;
	}
}
@media (max-width: 820px) {
	.hero__left {
		text-align: center;
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 100%;
		        flex: 0 1 100%;
		width: 100%;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		padding: 0;
	}
}

.hero__block {
	position: absolute;
	top: 50%;
	left: 60%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
@media (max-width: 1400px) {
	.hero__block {
		left: 65%;
	}
}
@media (max-width: 820px) {
	.hero__block {
		position: relative;
		-webkit-transform: translate(0);
		    -ms-transform: translate(0);
		        transform: translate(0);
		top: 0;
		left: 0;
	}
}

.hero__bottle {
	width: 680px;
	position: relative;
	-webkit-transform: scale(0.7);
	    -ms-transform: scale(0.7);
	        transform: scale(0.7);
}
.hero__bottle img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 1919px) {
	.hero__bottle {
		width: calc(180px + 500 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.hero__bottle {
		margin: 0px 0px 20px 0px;
	}
}
.hero__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0px 0px 15px 0px;
}
.hero__buttons > *:not(:last-child) {
	margin: 0px 5px 0px 0px;
}

.hero__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	line-height: 120%;
	color: #313131;
	max-width: 377px;
	position: relative;
}

.hero__dec1,
.hero__dec2,
.hero__dec3,
.hero__dec4 {
	position: absolute;
}
.hero__dec1 img,
.hero__dec2 img,
.hero__dec3 img,
.hero__dec4 img {
	width: 100%;
}

.hero__dec1 {
	top: 5%;
	left: 0;
	width: 159px;
}
@media (max-width: 1919px) {
	.hero__dec1 {
		width: calc(50px + 110 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.hero__dec1 {
		left: -10%;
		top: 10%;
	}
}

.hero__dec2 {
	z-index: 1;
	top: 8%;
	right: -30%;
	width: 430px;
}
@media (max-width: 1919px) {
	.hero__dec2 {
		width: calc(100px + 330 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.hero__dec2 {
		right: -30%;
	}
}

.hero__dec3 {
	bottom: 0;
	right: -17%;
	width: 280px;
}
@media (max-width: 1919px) {
	.hero__dec3 {
		width: calc(80px + 200 * ((100vw - 320px) / 1600));
	}
}

.hero__dec4 {
	bottom: 0;
	left: -10%;
	width: 215px;
}
@media (max-width: 1919px) {
	.hero__dec4 {
		width: calc(60px + 155 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.hero__dec4 {
		left: -15%;
	}
}

.hero-parfums {
	padding: 100px 0px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: -15px;
}
@media (max-width: 700px) {
	.hero-parfums {
		margin: -7px;
	}
}

.hero-parfum {
	padding: 15px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
	position: relative;
}
@media (min-width: 1024px) {
	.hero-parfum:hover .hero-parfum__img {
		-webkit-transform: scale(1.1);
		    -ms-transform: scale(1.1);
		        transform: scale(1.1);
		-webkit-transition: all 0.7s ease 0s;
		-o-transition: all 0.7s ease 0s;
		transition: all 0.7s ease 0s;
	}
}
@media (max-width: 1200px) {
	.hero-parfum {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 700px) {
	.hero-parfum {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		padding: 7px;
	}
}

.hero-parfum_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;
}
.hero-parfum_1 .hero-parfum__row {
	background: -o-linear-gradient(225deg, #eb6969 0%, #e43d3d 100%);
	background: linear-gradient(225deg, #eb6969 0%, #e43d3d 100%);
}

.hero-parfum_2._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;
}
.hero-parfum_2 .hero-parfum__row {
	background: -o-linear-gradient(225deg, #2f1149 0%, #0b0b0c 100%);
	background: linear-gradient(225deg, #2f1149 0%, #0b0b0c 100%);
}

.hero-parfum_3._watcher-view {
	-webkit-transition: all 0.5s ease 0.7s;
	-o-transition: all 0.5s ease 0.7s;
	transition: all 0.5s ease 0.7s;
}
.hero-parfum_3 .hero-parfum__row {
	background: -o-linear-gradient(225deg, #dd936f 0%, #5f2408 100%);
	background: linear-gradient(225deg, #dd936f 0%, #5f2408 100%);
}

.hero-parfum_4._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;
}
.hero-parfum_4 .hero-parfum__row {
	background: -o-linear-gradient(225deg, #fb6ac6 0%, #b12f82 100%);
	background: linear-gradient(225deg, #fb6ac6 0%, #b12f82 100%);
}
@media (max-width: 700px) {
	.hero-parfum_4 .hero-parfum__img {
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
}

.hero-parfum_5._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;
}
.hero-parfum_5 .hero-parfum__row {
	background: -o-linear-gradient(225deg, #b06afb 0%, #4c2fb1 100%);
	background: linear-gradient(225deg, #b06afb 0%, #4c2fb1 100%);
}
.hero-parfum_5 .hero-parfum__img {
	margin: 0px;
	width: 380px;
}
@media (max-width: 1680px) {
	.hero-parfum_5 .hero-parfum__img {
		width: 320px;
	}
}

.hero-parfum__row {
	border-radius: 30px;
	overflow: hidden;
	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-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.hero-parfum__block {
	position: relative;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	padding: 50px 20px 20px 20px;
	text-align: center;
	max-width: 440px;
	margin: 0 auto;
}
.hero-parfum__block > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}
@media (max-width: 480px) {
	.hero-parfum__block {
		padding: 35px 15px 15px 15px;
	}
}

.hero-parfum__name {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 40px;
	line-height: 110%;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
}
@media (max-width: 1919px) {
	.hero-parfum__name {
		font-size: calc(28px + 12 * ((100vw - 320px) / 1600));
	}
}

.hero-parfum__text {
	font-size: 15px;
}

.hero-parfum__tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 10px;
}

.hero-parfum__tag {
	border: 1px solid #fff;
	border-radius: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	text-align: center;
	color: #fff;
	height: 40px;
	padding: 10px 20px;
	white-space: nowrap;
}

.hero-parfum__img {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	margin: -60px 0px 0px 0px;
}
.hero-parfum__img img {
	width: 100%;
}

.about {
	position: relative;
	margin-top: -280px;
	padding-top: 300px;
	padding-bottom: 50px;
}
@media (min-width: 1921px) {
	.about {
		margin-top: -300px;
	}
}
@media (max-width: 1200px) {
	.about {
		margin-top: -350px;
	}
}

.about__dec1 {
	position: absolute;
	z-index: 1;
	top: 80px;
	right: 600px;
	width: 270px;
	top: -180px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.about__dec1._watcher-view {
	top: 80px;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.7s;
	-o-transition: all 0.5s ease 0.7s;
	transition: all 0.5s ease 0.7s;
}
.about__dec1 img {
	width: 100%;
}
@media (min-width: 1921px) {
	.about__dec1 {
		right: 750px;
	}
}
@media (max-width: 1919px) {
	.about__dec1 {
		right: calc(-150px + 750 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1200px) {
	.about__dec1 {
		width: 200px;
		right: calc(-300px + 900 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.about__dec1 {
		right: 0px;
	}
}
@media (max-width: 480px) {
	.about__dec1 {
		width: 150px;
		top: 180px;
	}
}

.about__dec2 {
	position: absolute;
	z-index: 1;
	top: 250px;
	right: 50px;
	width: 130px;
}
.about__dec2 img {
	width: 100%;
}
@media (max-width: 1200px) {
	.about__dec2 {
		right: unset;
		left: 100px;
		top: 300px;
	}
}
@media (max-width: 760px) {
	.about__dec2 {
		left: 20px;
		width: 80px;
	}
}

.about__dec3 {
	position: absolute;
	z-index: 1;
	bottom: -100px;
	right: 50px;
	width: 280px;
}
.about__dec3 img {
	width: 100%;
}
@media (max-width: 1200px) {
	.about__dec3 {
		bottom: -50px;
		right: 0px;
	}
}
@media (max-width: 760px) {
	.about__dec3 {
		width: 180px;
	}
}

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

.about__content {
	position: relative;
}

.about__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media (max-width: 1200px) {
	.about__row {
		-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;
	}
}

.about__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 890px;
	        flex: 0 0 890px;
	position: relative;
	margin: 0px 100px 0px 0px;
}
@media (max-width: 1200px) {
	.about__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: -50px 0px 50px 0px;
	}
}
@media (max-width: 760px) {
	.about__left {
		margin: -100px 0px 50px 0px;
		z-index: 1;
	}
}

.about__bg2 {
	position: relative;
}
.about__bg2 img {
	width: 100%;
}
@media (max-width: 1680px) {
	.about__bg2 {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 1024px) {
	.about__bg2 {
		display: none;
	}
}

.about__block {
	position: absolute;
	top: 50%;
	left: 80px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 550px;
}
@media (max-width: 1024px) {
	.about__block {
		position: relative;
		z-index: 1;
		background: #ff3743;
		top: 0;
		left: 0;
		-webkit-transform: translate(0);
		    -ms-transform: translate(0);
		        transform: translate(0);
		width: 100%;
		padding: 40px 30px;
		border-radius: 6px;
	}
}
@media (max-width: 480px) {
	.about__block {
		padding: 40px 15px;
	}
}

.about__sub {
	color: #fff;
	opacity: 0.8;
	margin: 0px 0px 15px 0px;
}

.about__title {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1680px) {
	.about__title {
		margin: 0px 0px 20px 0px;
	}
}

.about__who {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 88%;
	color: #fff;
	margin: 0px 0px 15px 0px;
}

.about__text {
	font-size: 14px;
}

.about__btn {
	margin: 20px 0px 0px 0px;
}
@media (max-width: 1680px) {
	.about__btn {
		margin: 30px 0px 0px 0px;
	}
}

.about__img1 {
	position: absolute;
	top: 0;
	right: -30px;
	-webkit-transform: translate(0, 0%);
	    -ms-transform: translate(0, 0%);
	        transform: translate(0, 0%);
	width: 280px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.about__img1 img {
	width: 100%;
}
@media (max-width: 1024px) {
	.about__img1 {
		display: none;
	}
}
.about__img2 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 530px;
	        flex: 0 1 530px;
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
	margin: 0px 0px -50px 0px;
}
.about__img2 img {
	width: 100%;
}
@media (max-width: 1430px) {
	.about__img2 {
		display: none;
	}
}
@media (max-width: 1200px) {
	.about__img2 {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 320px;
		-ms-flex-item-align: center;
		    -ms-grid-row-align: center;
		    align-self: center;
		margin: 0 auto;
	}
}
@media (max-width: 1024px) {
	.about__img2 {
		display: block;
	}
}
@media (max-width: 480px) {
	.about__img2 {
		width: 80%;
	}
}

.book {
	position: relative;
	padding: 130px 0px 80px 0px;
}
@media (max-width: 760px) {
	.book {
		padding: 50px 0px 0px 0px;
	}
}

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

.book__content {
	position: relative;
}

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

.book__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 1010px;
	        flex: 0 1 1010px;
	position: relative;
	margin: 0px 40px 0px 0px;
}
@media (max-width: 760px) {
	.book__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 150px 0px 0px 0px;
	}
}

.book__dec1 {
	position: absolute;
	z-index: 1;
	top: -120px;
	left: -8%;
	width: 250px;
}
.book__dec1 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.book__dec1 {
		top: calc(-150px + 30 * ((100vw - 320px) / 1600));
		width: calc(100px + 150 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1680px) {
	.book__dec1 {
		left: -20px;
	}
}
@media (max-width: 760px) {
	.book__dec1 {
		top: calc(-120px + -130 * ((100vw - 320px) / 1600));
		width: calc(100px + 250 * ((100vw - 320px) / 1600));
	}
}

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

.book__dec3 {
	position: absolute;
	z-index: 1;
	bottom: 50px;
	right: 0;
	width: 345px;
}
.book__dec3 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.book__dec3 {
		width: calc(100px + 245 * ((100vw - 320px) / 1600));
		bottom: calc(-70px + 120 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 760px) {
	.book__dec3 {
		width: calc(130px + 215 * ((100vw - 320px) / 1600));
		bottom: 30px;
	}
}

.book__dec4 {
	position: absolute;
	z-index: 1;
	bottom: 100px;
	left: -5%;
	width: 290px;
}
.book__dec4 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.book__dec4 {
		width: calc(80px + 210 * ((100vw - 320px) / 1600));
		bottom: calc(-50px + 150 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 760px) {
	.book__dec4 {
		width: calc(100px + 190 * ((100vw - 320px) / 1600));
		bottom: calc(50px + 50 * ((100vw - 320px) / 1600));
	}
}

.book__img {
	position: relative;
	top: 180px;
	left: -5%;
	-webkit-transform: scale(1.8);
	    -ms-transform: scale(1.8);
	        transform: scale(1.8);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.book__img img {
	width: 100%;
}
@media (max-width: 1919px) {
	.book__img {
		top: calc(0px + 180 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1680px) {
	.book__img {
		left: 0;
	}
}

.book__right {
	position: relative;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 552px;
	        flex: 0 1 552px;
}
@media (max-width: 760px) {
	.book__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.book__sub {
	color: #fff;
	opacity: 0.8;
	margin: 0px 0px 20px 0px;
}

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

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

.whatuneed {
	position: relative;
	background: #fff;
	padding: 100px 0px;
}
@media (max-width: 480px) {
	.whatuneed {
		padding: 50px 0px;
	}
}

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

.whatuneed__img1 {
	position: relative;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 465px;
	        flex: 0 1 465px;
}
.whatuneed__img1 img {
	width: 100%;
}
@media (max-width: 1680px) {
	.whatuneed__img1 {
		padding: 0px 40px;
	}
}
@media (max-width: 1200px) {
	.whatuneed__img1 {
		padding: 0;
	}
}
@media (max-width: 760px) {
	.whatuneed__img1 {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 70%;
	}
}

.whatuneed__dec1 {
	position: absolute;
	top: 40%;
	left: 45%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 100%;
}
.whatuneed__dec1 img {
	width: 100%;
}

.whatuneed__content {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 530px;
	        flex: 0 0 530px;
	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;
	text-align: center;
	padding: 0px 40px;
}
@media (max-width: 1024px) {
	.whatuneed__content {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 400px;
		        flex: 0 0 400px;
	}
}
@media (max-width: 760px) {
	.whatuneed__content {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		padding: 0;
		margin: 0px 0px 40px 0px;
	}
}

.whatuneed__title {
	color: #313131;
	margin: 0px 0px 30px 0px;
}
@media (max-width: 480px) {
	.whatuneed__title {
		margin: 0px 0px 20px 0px;
	}
}

.whatuneed__text {
	color: #5f5f5f;
	margin: 0px 0px 50px 0px;
}
@media (max-width: 480px) {
	.whatuneed__text {
		margin: 0px 0px 30px 0px;
	}
}

.whatuneed__img2 {
	position: relative;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 410px;
	        flex: 0 1 410px;
}
.whatuneed__img2 img {
	width: 100%;
}
@media (max-width: 820px) {
	.whatuneed__img2 {
		display: none;
	}
}

.whatuneed__dec2 {
	position: absolute;
	top: 20%;
	left: 55%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 140%;
}
.whatuneed__dec2 img {
	width: 100%;
}

.feromon {
	position: relative;
	padding-top: 100px;
}

.feromon__dec1 {
	position: absolute;
	top: -70px;
	left: 0;
	width: 85%;
	min-width: 700px;
}
.feromon__dec1 img {
	width: 100%;
}
@media (max-width: 1024px) {
	.feromon__dec1 {
		width: 100%;
		top: -20px;
	}
}

.feromon__bg {
	min-width: 1920px;
	position: relative;
}
.feromon__bg img {
	width: 100%;
}
@media (max-width: 1919px) {
	.feromon__bg {
		margin-top: calc(-300px + 300 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.feromon__bg {
		margin-top: calc(-200px + 200 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.feromon__bg {
		left: -110%;
	}
}

.feromon__content {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	z-index: 1;
	width: 100%;
	padding: 200px 0px;
}
@media (max-width: 820px) {
	.feromon__content {
		top: 45%;
	}
}
@media (max-width: 760px) {
	.feromon__content {
		top: 500px;
	}
}
@media (max-width: 480px) {
	.feromon__content {
		padding: 50px 0px;
		top: 440px;
	}
}

.feromon__row {
	position: relative;
	top: 50px;
	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;
}
@media (max-width: 760px) {
	.feromon__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.feromon__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 530px;
	        flex: 0 0 530px;
	margin: 0px 30px 0px 0px;
}
@media (max-width: 1024px) {
	.feromon__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 400px;
		        flex: 0 0 400px;
	}
}
@media (max-width: 900px) {
	.feromon__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 300px;
		        flex: 0 0 300px;
	}
}
@media (max-width: 760px) {
	.feromon__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px 0px 30px 0px;
	}
}

.feromon__sub {
	color: #fff;
	opacity: 0.8;
	margin: 0px 0px 20px 0px;
}

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

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

.feromon__right {
	padding: 0px 200px 0 0;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 800px;
	        flex: 0 1 800px;
	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;
}
@media (max-width: 1680px) {
	.feromon__right {
		padding: 0px 100px;
	}
}
@media (max-width: 820px) {
	.feromon__right {
		padding: 0px 70px;
	}
}
@media (max-width: 760px) {
	.feromon__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.feromon__img {
	position: relative;
	max-width: 390px;
}
.feromon__img img {
	width: 100%;
}
@media (max-width: 760px) {
	.feromon__img {
		width: 70%;
	}
}

.feromon__dec2 {
	position: absolute;
	top: 60%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 190%;
}
.feromon__dec2 img {
	width: 100%;
}

.aboutparf {
	position: relative;
	padding: 0px 0px 100px 0px;
}
@media (max-width: 760px) {
	.aboutparf {
		padding: 70px 0px 100px 0px;
	}
}
@media (max-width: 480px) {
	.aboutparf {
		padding: 0px 0px 50px 0px;
	}
}

.aboutparf__dec1 {
	position: absolute;
	top: 0;
	left: 10%;
	width: 150px;
}
.aboutparf__dec1 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.aboutparf__dec1 {
		width: calc(70px + 80 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.aboutparf__dec1 {
		top: -50px;
	}
}
@media (max-width: 760px) {
	.aboutparf__dec1 {
		display: none;
	}
}

.aboutparf__dec2 {
	position: absolute;
	top: -50px;
	right: 10%;
	width: 230px;
}
.aboutparf__dec2 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.aboutparf__dec2 {
		width: calc(110px + 120 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.aboutparf__dec2 {
		top: -100px;
	}
}
@media (max-width: 760px) {
	.aboutparf__dec2 {
		display: none;
	}
}

.aboutparf__sub {
	color: #e22923;
	margin: 0px auto 20px auto;
	text-align: center;
	max-width: 500px;
}

.aboutparf__title {
	color: #313131;
	margin: 0px 0px 55px 0px;
	text-align: center;
}

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

.aboutparf__item {
	padding: 20px 10px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
}

.aboutparf__img {
	height: 500px;
	margin: 0px 0px 50px 0px;
}
.aboutparf__img img {
	height: 100%;
}
@media (max-width: 1680px) {
	.aboutparf__img {
		height: 400px;
	}
}
@media (max-width: 1200px) {
	.aboutparf__img {
		height: 300px;
	}
}
@media (max-width: 820px) {
	.aboutparf__img {
		height: 200px;
		margin: 0px 0px 30px 0px;
	}
}
@media (max-width: 480px) {
	.aboutparf__img {
		margin: 0px 0px 20px 0px;
	}
}

.aboutparf__name {
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 40px;
	line-height: 88%;
	text-align: center;
	color: #313131;
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1024px) {
	.aboutparf__name {
		font-size: 30px;
	}
}
@media (max-width: 480px) {
	.aboutparf__name {
		margin: 0px 0px 10px 0px;
	}
}

.aboutparf__text {
	color: #5f5f5f;
}

.orig {
	background: #ffdfea;
	padding: 200px 0px;
	position: relative;
}
@media (max-width: 1680px) {
	.orig {
		padding: 100px 0px;
	}
}

.orig__dec1 {
	position: absolute;
	top: 50px;
	right: 0;
	width: 60%;
	mix-blend-mode: color-dodge;
}
.orig__dec1 img {
	width: 100%;
}
@media (max-width: 1024px) {
	.orig__dec1 {
		width: 80%;
	}
}

.orig__row {
	position: relative;
	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;
}
@media (max-width: 1024px) {
	.orig__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		text-align: center;
	}
}

.orig__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 665px;
	        flex: 0 1 665px;
	margin: 0px 60px 0px 0px;
}
@media (max-width: 1024px) {
	.orig__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px 0px 40px 0px;
	}
}

.orig__sub {
	color: #e22923;
	margin: 0px 0px 20px 0px;
}

.orig__title {
	color: #313131;
	margin: 0px 0px 30px 0px;
}
@media (max-width: 480px) {
	.orig__title {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 420px) {
	.orig__title {
		font-size: 36px;
	}
}
@media (max-width: 360px) {
	.orig__title {
		font-size: 30px;
	}
}

.orig__text {
	margin: 0px 0px 50px 0px;
	color: #5f5f5f;
}
@media (max-width: 480px) {
	.orig__text {
		margin: 0px 0px 30px 0px;
	}
}

.orig__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 840px;
	        flex: 0 1 840px;
	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;
}
@media (max-width: 1024px) {
	.orig__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.orig__img1 {
	position: relative;
	width: 60%;
	margin-bottom: -170px;
}
.orig__img1 img {
	width: 100%;
}
@media (max-width: 1680px) {
	.orig__img1 {
		margin-bottom: calc(-30px + -140 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.orig__img1 {
		width: 50%;
		margin-bottom: calc(-80px + -100 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.orig__img1 {
		margin-bottom: -70px;
		width: 60%;
	}
}

.orig__img2 img {
	width: 100%;
}
@media (max-width: 1024px) {
	.orig__img2 {
		max-width: 600px;
	}
}

.map {
	padding: 200px 0px;
	position: relative;
}
@media (max-width: 1024px) {
	.map {
		padding: 100px 0px;
	}
}

.map__dec1 {
	position: absolute;
	top: 40px;
	left: 7%;
	width: 100px;
}
.map__dec1 img {
	width: 100%;
}
@media (max-width: 480px) {
	.map__dec1 {
		width: 60px;
		left: 10px;
	}
}

.map__dec2 {
	position: absolute;
	top: -120px;
	right: 20%;
	width: 260px;
}
.map__dec2 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.map__dec2 {
		width: calc(150px + 110 * ((100vw - 320px) / 1600));
		top: calc(-60px + -60 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.map__dec2 {
		right: 10%;
	}
}

.map__title {
	color: #313131;
	margin: 0px 0px 30px 0px;
}

.map__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 760px) {
	.map__row {
		-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;
	}
}

.map__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 1220px;
	        flex: 0 1 1220px;
	position: relative;
	left: -140px;
	margin: 0px 20px 0px 0px;
}
.map__img img {
	width: 100%;
}
@media (max-width: 1680px) {
	.map__img {
		left: -30px;
	}
}
@media (max-width: 760px) {
	.map__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		left: 0;
		margin: 30px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	.map__img {
		-webkit-transform: scale(1.6);
		    -ms-transform: scale(1.6);
		        transform: scale(1.6);
		margin: 70px 100px 0px 0px;
	}
}

.map__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 525px;
	        flex: 0 1 525px;
	text-align: right;
}
@media (max-width: 760px) {
	.map__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		text-align: center;
	}
}

.map__sub {
	color: #e22923;
	margin: 0px 0px 20px 0px;
}

.map__text {
	color: #5f5f5f;
}

.buy {
	position: relative;
	z-index: 1;
	margin-top: 150px;
}

.buy__dec1 {
	position: absolute;
	top: -200px;
	left: 10%;
	width: 75px;
}
.buy__dec1 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.buy__dec1 {
		width: calc(40px + 35 * ((100vw - 320px) / 1600));
	}
}

.buy__dec2 {
	position: absolute;
	top: -360px;
	left: 15%;
	width: 250px;
}
.buy__dec2 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.buy__dec2 {
		width: calc(100px + 150 * ((100vw - 320px) / 1600));
		top: calc(-200px + -160 * ((100vw - 320px) / 1600));
	}
}

.buy__dec3 {
	position: absolute;
	top: -300px;
	right: 12%;
	width: 250px;
}
.buy__dec3 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.buy__dec3 {
		width: calc(100px + 150 * ((100vw - 320px) / 1600));
		top: calc(-150px + -150 * ((100vw - 320px) / 1600));
	}
}

.buy__bg {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 100%;
	min-width: 2220px;
}
.buy__bg img {
	width: 100%;
}
@media (max-width: 760px) {
	.buy__bg {
		left: 60%;
	}
}

.buy__content {
	position: relative;
}
@media (max-width: 760px) {
	.buy__content {
		top: 100px;
	}
}

.buy__title {
	font-size: 50px;
	margin: 0px 0px 30px 0px;
}
@media (max-width: 1680px) {
	.buy__title {
		font-size: 40px;
	}
}
@media (max-width: 1024px) {
	.buy__title {
		font-size: 45px;
	}
}
@media (max-width: 760px) {
	.buy__title {
		margin: 0px 0px 20px 0px;
		font-size: 36px;
	}
}

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

.buy__img1 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 394px;
	        flex: 0 1 394px;
}
.buy__img1 img {
	width: 100%;
}
@media (max-width: 760px) {
	.buy__img1 {
		display: none;
	}
}

.buy__center {
	text-align: center;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 785px;
	        flex: 0 1 785px;
	margin: 0px 20px;
}
@media (max-width: 760px) {
	.buy__center {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px 0px 40px 0px;
	}
}

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

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

.feedb {
	position: relative;
	padding-top: 220px;
}
@media (min-width: 1921px) {
	.feedb {
		padding-top: 600px;
	}
}

.feedb__dec1 {
	position: absolute;
	z-index: 1;
	top: 130px;
	left: 5%;
	width: 215px;
}
.feedb__dec1 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.feedb__dec1 {
		width: calc(100px + 115 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.feedb__dec1 {
		top: 110px;
	}
}

.feedb__dec2 {
	position: absolute;
	z-index: 1;
	top: 160px;
	right: 10%;
	width: 90px;
}
.feedb__dec2 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.feedb__dec2 {
		width: calc(50px + 40 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.feedb__dec2 {
		top: 100px;
	}
}

.feedb__bg {
	position: absolute;
	bottom: -100px;
	left: 0;
	width: 100%;
	min-width: 1920px;
}
.feedb__bg img {
	width: 100%;
}
@media (max-width: 1024px) {
	.feedb__bg {
		min-width: 1150px;
		bottom: 0;
	}
}
@media (max-width: 760px) {
	.feedb__bg {
		bottom: 0;
		min-width: 1700px;
		left: -60%;
	}
}
@media (max-width: 480px) {
	.feedb__bg {
		left: -150%;
	}
}

.feedb__content {
	position: relative;
}

.feedb__video {
	margin: 0px 0px 80px 0px;
}
@media (max-width: 820px) {
	.feedb__video {
		margin: 0px 0px 50px 0px;
	}
}

.feedb__title {
	text-align: center;
	margin: 0px 0px 60px 0px;
	color: #313131;
}

.feedb__btn {
	margin: 50px 0px 0px 0px;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
}

.feedb-text__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 820px) {
	.feedb-text__row {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}
@media (max-width: 760px) {
	.feedb-text__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		text-align: center;
	}
}

.feedb-text__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 500px;
	        flex: 0 1 500px;
	margin: 0px 50px 0px 100px;
}
@media (max-width: 1024px) {
	.feedb-text__left {
		margin: 0px 50px 0px 0px;
	}
}
@media (max-width: 820px) {
	.feedb-text__left {
		padding: 20px 0px 0px 0px;
	}
}
@media (max-width: 760px) {
	.feedb-text__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px 0px 40px 0px;
	}
}

.feedb-text__title {
	color: #fff;
	margin: 0px 0px 50px 0px;
}
@media (max-width: 820px) {
	.feedb-text__title {
		margin: 0px 0px 30px 0px;
	}
}

.feedb__dec3 {
	position: absolute;
	z-index: 0;
	bottom: -150px;
	left: 568px;
	width: 250px;
}
.feedb__dec3 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.feedb__dec3 {
		width: calc(70px + 180 * ((100vw - 320px) / 1600));
		left: calc(-25px + 593 * ((100vw - 320px) / 1600));
		bottom: calc(0px + -150 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.feedb__dec3 {
		display: none;
	}
}

.deliver {
	position: relative;
	padding: 300px 0px 0px 0px;
}
.deliver .about__dec1 {
	top: 0;
	right: 5%;
	-ms-transform: rotate(-120deg);
	-webkit-transform: rotate(-120deg);
	transform: rotate(-120deg);
}
.deliver .about__dec2 {
	top: 140px;
	right: 90%;
	width: 110px;
	-ms-transform: rotate(-150deg);
	-webkit-transform: rotate(-150deg);
	transform: rotate(-150deg);
}

.deliver__dec3 {
	position: absolute;
	z-index: 2;
	bottom: 200px;
	left: 200px;
	width: 450px;
}
.deliver__dec3 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.deliver__dec3 {
		width: calc(150px + 300 * ((100vw - 320px) / 1600));
		left: calc(-120px + 320 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1680px) {
	.deliver__dec3 {
		bottom: 100px;
	}
}
@media (max-width: 1024px) {
	.deliver__dec3 {
		bottom: -250px;
	}
}
@media (max-width: 700px) {
	.deliver__dec3 {
		left: 0;
		bottom: -150px;
	}
}

.deliver__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
@media (max-width: 820px) {
	.deliver__row > *:not(:last-child) {
		margin-bottom: 150px;
	}
}
@media (max-width: 760px) {
	.deliver__row > *:not(:last-child) {
		margin-bottom: 350px;
	}
}
@media (max-width: 480px) {
	.deliver__row > *:not(:last-child) {
		margin-bottom: 150px;
	}
}

.deliver-block {
	position: relative;
	max-width: 890px;
	padding: 170px 230px 170px 95px;
}
@media (max-width: 1680px) {
	.deliver-block {
		padding: 110px;
		max-width: 790px;
	}
}
@media (max-width: 820px) {
	.deliver-block {
		padding: 80px;
		margin: 0px -30px;
	}
}
@media (max-width: 700px) {
	.deliver-block {
		margin: 0px;
		padding: 30px 0px;
	}
}

.deliver-block_2 {
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
	max-width: 1020px;
	padding: 170px 230px 170px 150px;
}
@media (max-width: 1680px) {
	.deliver-block_2 {
		padding: 110px;
		max-width: 820px;
	}
}
@media (max-width: 820px) {
	.deliver-block_2 {
		padding: 80px;
	}
}
@media (max-width: 700px) {
	.deliver-block_2 {
		padding: 30px 0px;
	}
}
@media (max-width: 700px) and (max-width: 700px) {
	.deliver-block_2 .deliver-block__bg {
		min-width: 1100px;
	}
}

.deliver-block__bg {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 100%;
}
.deliver-block__bg img {
	width: 100%;
}
@media (max-width: 700px) {
	.deliver-block__bg {
		min-width: 800px;
	}
}

.deliver-block__content {
	position: relative;
	min-height: 520px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media (max-width: 480px) {
	.deliver-block__content {
		min-height: 200px;
	}
}

.deliver__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0px 0px 30px 0px;
}
.deliver__title img {
	width: 60px;
	margin: 0px 20px 0px 0px;
}
@media (max-width: 820px) {
	.deliver__title {
		margin: 0px 0px 20px 0px;
	}
}

.deliver-block__dec1 {
	position: absolute;
	bottom: 40%;
	left: 60%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 1150px;
}
.deliver-block__dec1 img {
	width: 100%;
}
@media (max-width: 1680px) {
	.deliver-block__dec1 {
		width: 900px;
	}
}
@media (max-width: 1400px) {
	.deliver-block__dec1 {
		display: none;
	}
}

.deliver__bg {
	pointer-events: none;
	position: absolute;
	bottom: -400px;
	left: 0;
	width: 50%;
}
.deliver__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center bottom;
	   object-position: center bottom;
}
@media (max-width: 1200px) {
	.deliver__bg {
		width: 100%;
	}
}

.famous {
	position: relative;
	z-index: 1;
	margin-top: 50px;
	padding: 280px 0px;
}
@media (min-width: 1921px) {
	.famous {
		margin-top: 250px;
	}
}
@media (max-width: 760px) {
	.famous {
		margin-top: 150px;
	}
}
@media (max-width: 480px) {
	.famous {
		padding: 200px 0px;
	}
}

.famous__bg {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	height: 100%;
}
.famous__bg img {
	height: 100%;
	min-width: 100vw;
}
@media (max-width: 760px) {
	.famous__bg {
		left: 100%;
	}
}

.famous__content {
	position: relative;
}

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

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

.famous__blocktitle {
	margin: 0px 0px 50px 0px !important;
}
.famous__blocktitle > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 760px) {
	.famous__blocktitle {
		margin: 0px 0px 40px 0px !important;
	}
}

.famous__title {
	font-size: 50px;
}
@media (max-width: 480px) {
	.famous__title {
		font-size: 40px;
	}
}

.famous__text {
	font-size: 16px;
}

._up {
	text-transform: uppercase;
}

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

.famous__img {
	max-width: 390px;
}
.famous__img img {
	width: 100%;
}
@media (max-width: 760px) {
	.famous__img {
		max-width: 70%;
		position: relative;
		top: 0;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
	}
}

.famous__dec1 {
	position: absolute;
	bottom: -20px;
	left: 25%;
	width: 200px;
}
.famous__dec1 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.famous__dec1 {
		width: calc(100px + 100 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.famous__dec1 {
		left: 15%;
		bottom: 50px;
	}
}

.famous__dec2 {
	position: absolute;
	bottom: -100px;
	right: 20%;
	width: 250px;
}
.famous__dec2 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.famous__dec2 {
		width: calc(100px + 150 * ((100vw - 320px) / 1600));
		bottom: calc(0px + -100 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.famous__dec2 {
		right: 10%;
		bottom: 50px;
	}
}

.quest {
	position: relative;
	padding: 0 0 200px 0px;
}
@media (max-width: 820px) {
	.quest {
		padding: 150px 0px;
	}
}

.quest__bg {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 100%;
	min-width: 1620px;
}
.quest__bg img {
	width: 100%;
}
@media (max-width: 820px) {
	.quest__bg {
		min-width: 1200px;
	}
}
@media (max-width: 700px) {
	.quest__bg {
		min-width: 1000px;
	}
}

.quest__row {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 820px;
	        flex: 0 0 820px;
	position: relative;
	min-height: 1300px;
}
@media (max-width: 1440px) {
	.quest__row {
		min-height: 1000px;
	}
}
@media (max-width: 820px) {
	.quest__row {
		min-height: 600px;
	}
}
@media (max-width: 700px) {
	.quest__row {
		min-height: 300px;
	}
}

.quest__block {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 820px;
	height: 820px;
	z-index: 1;
	border-radius: 50%;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
}
.quest__block > * {
	max-width: 526px;
}
.quest__block > *:not(:last-child) {
	margin: 0px 0px 30px 0px;
}
@media (max-width: 820px) {
	.quest__block {
		width: 600px;
		height: 600px;
	}
}
@media (max-width: 700px) {
	.quest__block {
		border-radius: 30px;
		max-width: 100%;
		height: auto;
		padding: 60px 20px;
	}
}

.quest__circle {
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 65%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 820px;
	height: 820px;
	z-index: 1;
	border-radius: 50%;
	background: #fde9ee;
}
@media (max-width: 820px) {
	.quest__circle {
		width: 600px;
		height: 600px;
	}
}
@media (max-width: 700px) {
	.quest__circle {
		display: none;
	}
}

.quest__circle_2 {
	left: 35%;
}

.quest__dec2 {
	position: absolute;
	top: 10%;
	left: -7%;
	width: 200px;
}
.quest__dec2 img {
	width: 100%;
}
@media (max-width: 820px) {
	.quest__dec2 {
		width: 150px;
		top: 5%;
	}
}
@media (max-width: 700px) {
	.quest__dec2 {
		top: -60px;
		width: 120px;
	}
}

.quest__dec3 {
	position: absolute;
	bottom: 0;
	right: -5%;
	width: 240px;
}
.quest__dec3 img {
	width: 100%;
}
@media (max-width: 820px) {
	.quest__dec3 {
		width: 170px;
		right: 0;
	}
}
@media (max-width: 700px) {
	.quest__dec3 {
		width: 120px;
		bottom: -100px;
	}
}

.quest__dec4 {
	position: absolute;
	top: 75%;
	left: 0;
	width: 230px;
}
.quest__dec4 img {
	width: 100%;
}
@media (max-width: 700px) {
	.quest__dec4 {
		display: none;
	}
}

.quest__dec5 {
	width: 399px;
	position: absolute;
	z-index: 1;
	top: 50%;
	right: 200px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
}
.quest__dec5 img {
	width: 100%;
}
@media (max-width: 1680px) {
	.quest__dec5 {
		right: calc(-300px + 580 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.quest__dec5 {
		width: 300px;
		right: -100px;
	}
}
@media (max-width: 700px) {
	.quest__dec5 {
		display: none;
	}
}

.quest__title {
	color: #313131;
}

.quest__text {
	color: #313131;
}

.faq {
	position: relative;
	margin: -100px 0px 0px 0px;
}
.faq .block {
	border: 1px solid #ffcad4;
	border-radius: 20px;
	padding: 0;
	overflow: hidden;
}
.faq .block__item {
	border-bottom: 1px solid #ffcad4;
	padding: 0px 40px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
}
.faq .block__item::after {
	content: "";
	position: absolute;
	top: 35px;
	right: 40px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #313131 url("../img/icons/p-left.svg") no-repeat;
	background-size: 16px;
	background-position: center;
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 820px) {
	.faq .block__item::after {
		top: 19px;
		right: 30px;
		width: 40px;
		height: 40px;
		background-size: 10px;
	}
}
@media (max-width: 480px) {
	.faq .block__item::after {
		right: 20px;
	}
}
.faq .block__item._active {
	background: #fcf0f0;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.faq .block__item._active::after {
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background: #ff3743 url("../img/icons/p-left.svg") no-repeat;
	background-size: 16px;
	background-position: center;
}
@media (max-width: 820px) {
	.faq .block__item._active::after {
		background-size: 10px;
	}
}
@media (max-width: 820px) {
	.faq .block__item {
		padding: 0px 30px;
	}
}
@media (max-width: 480px) {
	.faq .block__item {
		padding: 0px 20px;
	}
}
.faq .block__title {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 32px;
	line-height: 88%;
	text-transform: uppercase;
	color: #313131;
	width: 100%;
	text-align: left;
	padding: 50px 80px 50px 0;
}
@media (max-width: 820px) {
	.faq .block__title {
		font-size: 26px;
		padding: 30px 80px 30px 0;
	}
}
@media (max-width: 480px) {
	.faq .block__title {
		font-size: 20px;
	}
}
.faq .block__text {
	padding: 0px 0px 40px 0px;
	line-height: 140%;
	color: #5f5f5f;
}
.faq .block__text a {
	color: #5f5f5f;
}
@media (max-width: 480px) {
	.faq .block__text {
		padding: 0px 0px 20px 0px;
	}
}
@media (max-width: 820px) {
	.faq {
		margin: 0;
	}
}
@media (max-width: 480px) {
	.faq {
		padding: 50px 0px 0px 0px;
	}
}

.faq__title {
	color: #313131;
	text-align: center;
	margin: 0px 0px 50px 0px;
}
@media (max-width: 480px) {
	.faq__title {
		margin: 0px 0px 30px 0px;
	}
}

.contactus {
	position: relative;
	padding: 200px 0px 100px 0px;
}
.contactus ._container {
	position: relative;
}
@media (max-width: 480px) {
	.contactus {
		padding: 100px 0px 0px 0px;
	}
}

.contactus__dec1 {
	position: absolute;
	top: -150px;
	left: 0;
	width: 220px;
}
.contactus__dec1 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.contactus__dec1 {
		width: calc(100px + 120 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.contactus__dec1 {
		top: -50px;
		left: 20px;
	}
}

.contactus__dec2 {
	position: absolute;
	top: -150px;
	right: 0;
	width: 180px;
}
.contactus__dec2 img {
	width: 100%;
}
@media (max-width: 1919px) {
	.contactus__dec2 {
		width: calc(100px + 80 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.contactus__dec2 {
		top: -70px;
		right: 20px;
	}
}

.contactus__bg {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 100%;
	min-width: 1600px;
}
.contactus__bg img {
	width: 100%;
}
@media (max-width: 480px) {
	.contactus__bg {
		left: -50%;
	}
}

.contactus__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-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
	min-height: 840px;
	padding: 100px 0px;
}
.contactus__content > * {
	max-width: 732px;
}

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

.contactus__text {
	margin: 0px 0px 50px 0px;
}

.contactus__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 50px;
}

.contactus__contacts {
	white-space: nowrap;
}
.contactus__contacts > * {
	display: block;
}
.contactus__contacts > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}

.contactus__tel {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 40px;
	line-height: 88%;
	text-transform: uppercase;
	color: #fff;
}
@media (max-width: 480px) {
	.contactus__tel {
		font-size: 30px;
	}
}

.contactus__mail {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	color: #fff;
}

.contactus__icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}

.contactus__icon {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 60px;
	        flex: 0 0 60px;
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	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;
}