@font-face {
	font-family: 'Druk';
	src: url('../fonts/src/DrukTextWideMedium.woff2') format('woff2'),
		url('../fonts/src/DrukTextWideMedium.woff') format('woff'),
		url('../fonts/src/DrukTextWideMedium.ttf') format('ttf');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/src/Montserrat-Regular.woff2') format('woff2'),
		url('../fonts/src/Montserrat-Regular.woff') format('woff'),
		url('../fonts/src/Montserrat-Regular.ttf') format('ttf');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/src/Montserrat-Medium.woff2') format('woff2'),
		url('../fonts/src/Montserrat-Medium.woff') format('woff'),
		url('../fonts/src/Montserrat-Medium.ttf') format('ttf');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/src/Montserrat-SemiBold.woff2') format('woff2'),
		url('../fonts/src/Montserrat-SemiBold.woff') format('woff'),
		url('../fonts/src/Montserrat-SemiBold.ttf') format('ttf');
	font-weight: 600;
	font-style: normal;
}
body {
	background-color: #000;
	font-family: 'Montserrat', sans-serif;
	color: #fff;
}
.container {
	max-width: 1220px;
	padding: 0 10px;
	margin: 0 auto;
}
.title {
	font-size: 70px;
	margin-bottom: 70px;
}
.subtitle {
	font-size: 25px;
	color: #707070;
	max-width: 450px;
	line-height: 145%;
}
.faq__item.faq__item--active .faq__ans {
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	max-height: 500px;
	padding-top: 30px;
	padding-left: 45px;
	padding-right: 100px;
}
.faq__item.faq__item--active .faq__quest {
	border-color: #ff7a00;
}
.faq__item.faq__item--active .faq__quest-krest {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.faq__item.faq__item--active .faq__quest-krest svg path {
	fill: #ff7a00;
}
.hd.hd--active .hd__burger span {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}
.hd.hd--active .hd__burger span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.hd.hd--active .hd__burger span:nth-child(2) {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}
.hd.hd--active .hd__burger span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.hd.hd--active .hd__nav {
	display: block;
}
.modal {
	display: none;
	position: fixed;
	z-index: 1111;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
	opacity: 0;
	-webkit-transition: opacity 1s;
	transition: opacity 1s;
}
.modal-content {
	background-color: #000;
	margin: 25px auto;
	padding: 20px;
	border: 1px solid #707070;
	border-radius: 50px;
	width: 50%;
}
.modal-content p {
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 14px;
	text-align: center;
}
.preloader {
	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;
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000;
	z-index: 9999;
}
.bar {
	fill: #fff;
	-webkit-animation: changeColor 4s infinite;
	animation: changeColor 4s infinite;
}
@-webkit-keyframes changeColor {
	0%,
	95% {
		fill: #fff;
	}
	20%,
	30% {
		fill: #e38200;
	}
	40%,
	50% {
		fill: #e38200;
	}
	60%,
	70% {
		fill: #e38200;
	}
	95.1%,
	100% {
		fill: #fff;
	}
}
@keyframes changeColor {
	0%,
	95% {
		fill: #fff;
	}
	20%,
	30% {
		fill: #e38200;
	}
	40%,
	50% {
		fill: #e38200;
	}
	60%,
	70% {
		fill: #e38200;
	}
	95.1%,
	100% {
		fill: #fff;
	}
}
.bar:nth-child(1) {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.bar:nth-child(2) {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.bar:nth-child(3) {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.animation {
	opacity: 0;
}
.show {
	-webkit-animation: show 0.8s ease-in-out forwards;
	animation: show 0.8s ease-in-out forwards;
}
@-webkit-keyframes show {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-60px);
		transform: translateX(-60px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes show {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-60px);
		transform: translateX(-60px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.animationright {
	opacity: 0;
}
.showr {
	-webkit-animation: showr 0.8s ease-in-out forwards;
	animation: showr 0.8s ease-in-out forwards;
}
@-webkit-keyframes showr {
	0% {
		opacity: 0;
		-webkit-transform: translateX(60px);
		transform: translateX(60px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes showr {
	0% {
		opacity: 0;
		-webkit-transform: translateX(60px);
		transform: translateX(60px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: none;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.slick-track:before,
.slick-track:after {
	content: '';
	display: table;
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}
[dir='rtl'] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid rgba(0, 0, 0, 0);
}
.slick-arrow.slick-hidden {
	display: none;
}
@media (max-width: 1500px) {
	.ab::before {
		left: -275px;
	}
}
@media (max-width: 1300px) {
	.slick-dots {
		margin-left: 30px;
	}
	.ab__title {
		font-size: 60px;
	}
	.ab__subtitle {
		font-size: 22px;
		max-width: 760px;
	}
}
@media (max-width: 1200px) {
	.faq {
		max-height: 1200px;
		margin-bottom: 100px;
	}
	.faq__inner {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 100px;
	}
	.faq__box {
		width: 100%;
	}
}
@media (max-width: 1050px) {
	body.lock {
		overflow: hidden;
	}
	.hd__nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		min-height: 100vh;
		background-color: rgba(0, 0, 0, 0.97);
		z-index: 2;
	}
	.hd__btn {
		display: none;
	}
	.hd__burger {
		display: block;
		width: 35px;
		height: 35px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		position: relative;
		background-color: rgba(0, 0, 0, 0);
		border: none;
		cursor: pointer;
	}
	.hd__burger span {
		position: absolute;
		background-color: #fff;
		height: 2px;
		-webkit-transition: all 0.4s;
		transition: all 0.4s;
	}
	.hd__burger span:nth-child(1) {
		-webkit-transform: translateY(-8px);
		-ms-transform: translateY(-8px);
		transform: translateY(-8px);
		width: 25px;
	}
	.hd__burger span:nth-child(2) {
		width: 20px;
	}
	.hd__burger span:nth-child(3) {
		-webkit-transform: translateY(8px);
		-ms-transform: translateY(8px);
		transform: translateY(8px);
		width: 25px;
	}
	.hd__nav-link {
		font-size: 25px;
	}
	ul.hd__nav-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;
		padding-top: 120px;
		padding-right: 50px;
	}
	.tor__box-item span {
		font-size: 40px;
	}
}
@media (max-width: 950px) {
	.ab__title {
		font-size: 45px;
	}
	.ab__subtitle {
		font-size: 21px;
		max-width: 540px;
	}
	.ab::before {
		bottom: -330px;
		left: -355px;
	}
	.tor {
		padding-top: 500px;
	}
	.tor__box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 35px;
	}
	.tor__box-item {
		width: 100%;
	}
	.tor__inner {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.tor__inner-title {
		font-size: 55px;
	}
	.tor__inner-text {
		margin-bottom: 100px;
	}
	.tor__inner-img {
		width: 100%;
	}
	.tor__inner-img-mor {
		margin: 0 auto;
	}
	.title {
		font-size: 50px;
	}
	.subtitle {
		font-size: 21px;
	}
}
@media (max-width: 650px) {
	.preloader svg {
		height: 57px;
		width: 55px;
	}
	.ab__title {
		text-align: start;
		font-size: 41px;
	}
	.ab__subtitle {
		max-width: 100%;
		text-align: start;
		font-size: 17px;
	}
	.ab__inner {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.ab__mouse {
		display: none;
	}
	.ab__btnbox {
		width: 100%;
	}
	.ab__btnbox-btn {
		width: 50%;
	}
	.ab__count {
		margin-left: 40px;
		padding-right: 30px;
	}
	.tor__inner-title {
		font-size: 35px;
		padding-right: 35px;
	}
	.tor__inner-subtitle {
		font-size: 20px;
	}
	.tor__inner-img-mor {
		max-width: 300px;
	}
	.faq__sbsbsb {
		font-size: 20px;
	}
	.faq__quest {
		font-size: 17px;
		padding-left: 35px;
		padding-right: 20px;
	}
	.faq__ans {
		padding-left: 35px;
		line-height: 145%;
	}
	.footer__nav {
		display: none;
	}
	.footer__logo {
		display: none;
	}
	.footer__text {
		display: block;
		color: #707070;
		font-weight: 700;
	}
	.footer__inner {
		padding: 20px 0;
	}
	.title {
		font-size: 35px;
	}
	.subtitle {
		font-size: 20px;
		padding-right: 35px;
	}
	.modal-content {
		width: 90%;
	}
}
@media (max-width: 500px) {
	.ab::before {
		content: url(../img/dist/decorbg2.svg);
		left: -237px;
		bottom: -185px;
	}
	.tor {
		padding-top: 300px;
	}
	.tor__box-item {
		min-height: 310px;
	}
	.tor__box-item span {
		font-size: 30px;
	}
	.tor__box-title {
		font-size: 16px;
		font-weight: 500;
	}
	.tor__box-tele {
		width: 294px;
	}
	.tor__box-m3ga {
		font-size: 11px;
		top: 93px;
		right: 50px;
	}
	.faq__ans {
		padding-right: 50px;
	}
}
@media (max-width: 450px) {
	.faq__item.faq__item--active .faq__ans {
		padding-right: 30px;
		padding-left: 35px;
	}
	.hd__nav-link {
		font-size: 20px;
	}
	ul.hd__nav-list {
		padding-right: 40px;
	}
	.ab__btnbox {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.ab__btnbox-btn {
		width: 100%;
	}
	.ab__btnbox-btn span {
		font-size: 15px;
	}
	.ab__inner {
		padding-top: 75px;
	}
	.ab__title {
		font-size: 33px;
	}
	.ab__subtitle {
		font-size: 17px;
		padding-right: 15px;
	}
	.tor {
		padding-bottom: 100px;
	}
	.tor__inner-title {
		font-size: 30px;
	}
	.tor__inner-subtitle {
		font-size: 18px;
		margin-bottom: 50px;
	}
	.tor__inner-btn {
		width: 100%;
	}
	.tor__inner-btn span {
		font-size: 15px;
	}
	.tor__inner-link span {
		font-size: 14px;
	}
	.faq {
		margin-bottom: 100px;
	}
	.faq__quest {
		font-size: 14px;
		line-height: 135%;
	}
	.faq__ans {
		font-size: 14px;
	}
	.faq__sbsbsb {
		margin-bottom: 50px;
	}
	.faq .title {
		margin-bottom: 50px;
	}
}
@media (max-width: 385px) {
	.subtitle {
		font-size: 18px;
	}
}
@media (max-width: 354px) {
	.faq {
		margin-bottom: 100px;
	}
	.reva__rev {
		font-size: 14px;
	}
}
@media (max-width: 350px) {
	.faq__quest {
		font-size: 13px;
	}
} /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
}
main {
	display: block;
}
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}
a {
	background-color: rgba(0, 0, 0, 0);
}
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}
b,
strong {
	font-weight: bolder;
}
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
img {
	border-style: none;
}
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}
button,
input {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
	outline: 1px dotted ButtonText;
}
fieldset {
	padding: 0.35em 0.75em 0.625em;
}
legend {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}
progress {
	vertical-align: baseline;
}
textarea {
	overflow: auto;
}
[type='checkbox'],
[type='radio'] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
	height: auto;
}
[type='search'] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}
[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}
details {
	display: block;
}
summary {
	display: list-item;
}
template {
	display: none;
}
[hidden] {
	display: none;
}
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
*,
*::after,
*::before {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}
ul[class],
ol[class] {
	padding: 0;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}
ul[class] {
	list-style: none;
}
img {
	max-width: 100%;
	display: block;
}
input,
button,
textarea,
select {
	font: inherit;
}
a {
	text-decoration: none;
}
.slick-slide {
	padding: 0 10px;
}
.slick-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 7px;
	-webkit-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transform: translateY(50px);
}
.slick-dots button {
	color: rgba(0, 0, 0, 0);
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: rgba(0, 0, 0, 0);
	border: none;
	width: 35px;
	height: 35px;
}
.slick-dots button::after {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	position: absolute;
	background-color: #707070;
}
.slick-active button {
	border-radius: 50%;
	width: 35px;
	background-color: rgba(0, 0, 0, 0);
	height: 35px;
	border: 1px solid #707070;
} /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
}
main {
	display: block;
}
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}
a {
	background-color: rgba(0, 0, 0, 0);
}
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}
b,
strong {
	font-weight: bolder;
}
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
img {
	border-style: none;
}
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}
button,
input {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
	outline: 1px dotted ButtonText;
}
fieldset {
	padding: 0.35em 0.75em 0.625em;
}
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}
progress {
	vertical-align: baseline;
}
textarea {
	overflow: auto;
}
[type='checkbox'],
[type='radio'] {
	box-sizing: border-box;
	padding: 0;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
	height: auto;
}
[type='search'] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}
[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}
details {
	display: block;
}
summary {
	display: list-item;
}
template {
	display: none;
}
[hidden] {
	display: none;
}
html {
	box-sizing: border-box;
}
*,
*::after,
*::before {
	box-sizing: inherit;
}
ul[class],
ol[class] {
	padding: 0;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}
ul[class] {
	list-style: none;
}
img {
	max-width: 100%;
	display: block;
}
input,
button,
textarea,
select {
	font: inherit;
}
a {
	text-decoration: none;
}
@font-face {
	font-family: 'Druk';
	src: url('../fonts/src/DrukTextWideMedium.woff2') format('woff2'),
		url('../fonts/src/DrukTextWideMedium.woff') format('woff'),
		url('../fonts/src/DrukTextWideMedium.ttf') format('ttf');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/src/Montserrat-Regular.woff2') format('woff2'),
		url('../fonts/src/Montserrat-Regular.woff') format('woff'),
		url('../fonts/src/Montserrat-Regular.ttf') format('ttf');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/src/Montserrat-Medium.woff2') format('woff2'),
		url('../fonts/src/Montserrat-Medium.woff') format('woff'),
		url('../fonts/src/Montserrat-Medium.ttf') format('ttf');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/src/Montserrat-SemiBold.woff2') format('woff2'),
		url('../fonts/src/Montserrat-SemiBold.woff') format('woff'),
		url('../fonts/src/Montserrat-SemiBold.ttf') format('ttf');
	font-weight: 600;
	font-style: normal;
}
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: none;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.slick-track:before,
.slick-track:after {
	content: '';
	display: table;
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}
[dir='rtl'] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid rgba(0, 0, 0, 0);
}
.slick-arrow.slick-hidden {
	display: none;
}
body {
	background-color: #000;
	font-family: 'Montserrat', sans-serif;
	color: #fff;
}
.container {
	max-width: 1220px;
	padding: 0 10px;
	margin: 0 auto;
}
.title {
	font-size: 70px;
	margin-bottom: 70px;
}
.subtitle {
	font-size: 25px;
	color: #707070;
	max-width: 450px;
	line-height: 145%;
}
.faq__item.faq__item--active .faq__ans {
	visibility: visible;
	opacity: 1;
	transition-delay: 0s;
	max-height: 500px;
	padding-top: 30px;
	padding-left: 45px;
	padding-right: 100px;
}
.faq__item.faq__item--active .faq__quest {
	border-color: #ff7a00;
}
.faq__item.faq__item--active .faq__quest-krest {
	transform: rotate(180deg);
}
.faq__item.faq__item--active .faq__quest-krest svg path {
	fill: #ff7a00;
}
.hd.hd--active .hd__burger span {
	transform: translateY(0);
}
.hd.hd--active .hd__burger span:nth-child(1) {
	transform: rotate(45deg);
}
.hd.hd--active .hd__burger span:nth-child(2) {
	transform: scale(0);
}
.hd.hd--active .hd__burger span:nth-child(3) {
	transform: rotate(-45deg);
}
.hd.hd--active .hd__nav {
	display: block;
}
.modal {
	display: none;
	position: fixed;
	z-index: 1111;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: opacity 1s;
}
.modal-content {
	background-color: #000;
	margin: 25px auto;
	padding: 20px;
	border: 1px solid #707070;
	border-radius: 50px;
	width: 50%;
}
.modal-content p {
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 14px;
	text-align: center;
}
.preloader {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000;
	z-index: 9999;
}
.bar {
	fill: #fff;
	animation: changeColor 4s infinite;
}
@keyframes changeColor {
	0%,
	95% {
		fill: #fff;
	}
	20%,
	30% {
		fill: #e38200;
	}
	40%,
	50% {
		fill: #e38200;
	}
	60%,
	70% {
		fill: #e38200;
	}
	95.1%,
	100% {
		fill: #fff;
	}
}
.bar:nth-child(1) {
	animation-delay: 0s;
}
.bar:nth-child(2) {
	animation-delay: 0.2s;
}
.bar:nth-child(3) {
	animation-delay: 0.4s;
}
.animation {
	opacity: 0;
}
.show {
	animation: show 0.8s ease-in-out forwards;
}
@keyframes show {
	0% {
		opacity: 0;
		transform: translateX(-60px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
.animationright {
	opacity: 0;
}
.showr {
	animation: showr 0.8s ease-in-out forwards;
}
@keyframes showr {
	0% {
		opacity: 0;
		transform: translateX(60px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
.hd__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 15px 0;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.hd__burger {
	display: none;
	position: relative;
	z-index: 88;
}
.hd__logo {
	max-width: 120px;
	position: relative;
	z-index: 88;
}
.hd__nav-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 50px;
}
.hd__nav-link {
	color: #fff;
	text-transform: uppercase;
	font-size: 17px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.hd__nav-link:hover {
	color: #ff7a00;
}
.hd__btn {
	display: block;
	text-transform: uppercase;
	font-size: 16px;
	width: 175px;
	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;
	gap: 10px;
	border: 1px solid #ff7a00;
	color: #fff;
	height: 50px;
	border-radius: 10px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.hd__btn:hover {
	border-color: #707070;
}
.ab {
	position: relative;
}
.ab::before {
	content: url(../img/dist/decorbg.svg);
	position: absolute;
	left: -10px;
	bottom: -270px;
}
.ab__inner {
	padding-top: 100px;
	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;
}
.ab__title {
	font-size: 80px;
	margin-bottom: 20px;
	text-align: center;
}
.ab__subtitle {
	font-size: 24px;
	text-align: center;
	color: #707070;
	max-width: 1000px;
	margin-bottom: 50px;
}
.ab__btnbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	margin-bottom: 50px;
}
.ab__btnbox-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 250px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 10px;
	text-transform: uppercase;
	border-radius: 10px;
	height: 60px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.ab__btntor {
	color: #707070;
	border: 2px solid #707070;
}
.ab__btntor:hover {
	border-color: #ff7a00;
}
.ab__btnclear {
	color: #fff;
	background-color: #ff7a00;
	border: 2px solid #ff7a00;
}
.ab__btnclear:hover {
	background-color: rgba(0, 0, 0, 0);
}
.ab__count {
	font-size: 21px;
	margin-bottom: 50px;
	position: relative;
}
.ab__count::before {
	content: url(../img/dist/dot.svg);
	position: absolute;
	left: -40px;
	top: -2px;
}
.ab__count span {
	font-weight: 700;
	margin-right: 15px;
}
.ben {
	padding-top: 500px;
}
.ben__title {
	margin-bottom: 20px;
}
.ben__subtitle {
	margin-bottom: 100px;
}
.ben__inner {
	display: flex;
	align-items: center;
	gap: 20px;
}
.ben__item {
	padding: 40px 30px;
	border-top: 2px solid #ff7a00;
	border-radius: 20px;
	background-color: #0d0d0d;
	min-height: 350px;
}
.ben__item-img {
	margin-bottom: 25px;
}
.ben__item-title {
	margin-bottom: 15px;
	font-size: 19px;
}
.ben__item-subtitle {
	font-size: 16px;
	line-height: 135%;
	color: #919191;
}
.tor {
	padding-top: 150px;
	padding-bottom: 200px;
}
.tor__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 100px;
}
.tor__box-item {
	width: 49%;
	min-height: 400px;
	background-color: #0d0d0d;
	padding: 20px 20px;
	border-radius: 10px;
}
.tor__box-item:nth-child(2) {
	border-radius: 10px 10px 10px 0;
}
.tor__box-firstitem {
	position: relative;
}
.tor__box-phone {
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 0 0 10px 0;
}
.tor__box-m3ga {
	position: absolute;
	right: 60px;
	top: 145px;
}
.tor__box-title {
	color: #ff7a00;
	font-size: 18px;
	margin-bottom: 20px;
}
.tor__box-item span {
	font-size: 55px;
	font-weight: 600;
	display: block;
}
.tor__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.tor__inner-text {
	width: 750px;
}
.tor__inner-subtitle {
	font-size: 25px;
	display: block;
	margin-bottom: 100px;
}
.tor__inner-title {
	font-size: 65px;
	margin-bottom: 50px;
}
.tor__inner-list {
	margin-bottom: 65px;
}
.tor__inner-item {
	max-width: 630px;
	background-color: #0d0d0d;
	margin-bottom: 10px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 55px;
}
.tor__inner-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 10px 0 60px;
	position: relative;
}
.tor__inner-link::before {
	content: url(../img/dist/dot.svg);
	position: absolute;
	left: 15px;
	top: 2px;
}
.tor__inner-link span {
	color: #fff;
}
.tor__inner-link div {
	background-color: rgba(106, 106, 106, 0.25);
	width: 34px;
	height: 34px;
	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;
	border-radius: 50%;
}
.tor__inner-btn {
	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;
	gap: 10px;
	text-transform: uppercase;
	width: 213px;
	height: 55px;
	color: #fff;
	border-radius: 10px;
	background-color: #ff7a00;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	border: 2px solid #ff7a00;
}
.tor__inner-btn:hover {
	background-color: rgba(0, 0, 0, 0);
}
.faq {
	min-height: 850px;
}
.faq__sbsbsb {
	font-size: 26px;
	display: block;
	margin-bottom: 100px;
}
.faq__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 50px;
}
.faq__textbox {
	width: 450px;
}
.faq__box {
	width: 800px;
}
.faq__item {
	margin-bottom: 20px;
}
.faq__quest {
	font-size: 18px;
	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;
	text-transform: uppercase;
	gap: 20px;
	padding-left: 45px;
	padding-right: 30px;
	border-radius: 100px;
	border: 1px solid #707070;
	height: 70px;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.faq__quest-krest {
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.faq__ans {
	line-height: 135%;
	color: #707070;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
	max-height: 0;
}
.reva {
	padding-bottom: 150px;
}
.reva__subtitle {
	margin-bottom: 100px;
}
.reva__inner {
	max-width: 1240px;
	margin: 0 auto;
}
.reva__rev {
	line-height: 135%;
	font-size: 15px;
}
.reva__item {
	border: 1px solid #707070;
	border-radius: 30px;
	min-height: 350px;
	padding: 30px;
	position: relative;
}
.reva__item-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px;
}
.reva__item-author {
	color: #ff7a00;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 600;
}
.reva__item-blockstar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5px;
}
.reva__date {
	position: absolute;
	bottom: 30px;
	font-size: 13px;
	color: #707070;
}
.footer {
	padding: 20px 0;
	border-top: 1px solid #707070;
}
.footer__text {
	display: none;
}
.footer__logo {
	max-width: 120px;
}
.footer__inner {
	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;
}
.footer__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
}
.footer__link {
	color: #707070;
	text-transform: uppercase;
	font-size: 16px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	font-weight: 500;
}
.footer__link:hover {
	color: #ff7a00;
}
@media (max-width: 1500px) {
	.ab::before {
		left: -275px;
	}
}
@media (max-width: 1300px) {
	.slick-dots {
		margin-left: 30px;
	}
	.ab__title {
		font-size: 60px;
	}
	.ab__subtitle {
		font-size: 22px;
		max-width: 760px;
	}
}
@media (max-width: 1200px) {
	.faq {
		max-height: 1200px;
		margin-bottom: 100px;
	}
	.faq__inner {
		flex-wrap: wrap;
		gap: 100px;
	}
	.faq__box {
		width: 100%;
	}
}
@media (max-width: 1050px) {
	body.lock {
		overflow: hidden;
	}
	.hd__nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		min-height: 100vh;
		background-color: rgba(0, 0, 0, 0.97);
		z-index: 2;
	}
	.hd__btn {
		display: none;
	}
	.hd__burger {
		display: block;
		width: 35px;
		height: 35px;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		position: relative;
		background-color: rgba(0, 0, 0, 0);
		border: none;
		cursor: pointer;
	}
	.hd__burger span {
		position: absolute;
		background-color: #fff;
		height: 2px;
		transition: all 0.4s;
	}
	.hd__burger span:nth-child(1) {
		transform: translateY(-8px);
		width: 25px;
	}
	.hd__burger span:nth-child(2) {
		width: 20px;
	}
	.hd__burger span:nth-child(3) {
		transform: translateY(8px);
		width: 25px;
	}
	.hd__nav-link {
		font-size: 25px;
	}
	ul.hd__nav-list {
		flex-direction: column;
		align-items: flex-end;
		padding-top: 120px;
		padding-right: 50px;
	}
	.tor__box-item span {
		font-size: 40px;
	}
}
@media (max-width: 950px) {
	.ab__title {
		font-size: 45px;
	}
	.ab__subtitle {
		font-size: 21px;
		max-width: 540px;
	}
	.ab::before {
		bottom: -330px;
		left: -355px;
	}
	.ben__inner {
		flex-direction: column;
		gap: 25px;
	}
	.tor {
		padding-top: 500px;
	}
	.tor__box {
		flex-wrap: wrap;
		gap: 35px;
	}
	.tor__box-item {
		width: 100%;
	}
	.tor__inner {
		flex-wrap: wrap;
	}
	.tor__inner-title {
		font-size: 55px;
	}
	.tor__inner-text {
		margin-bottom: 100px;
	}
	.tor__inner-img {
		width: 100%;
	}
	.tor__inner-img-mor {
		margin: 0 auto;
	}
	.title {
		font-size: 50px;
	}
	.subtitle {
		font-size: 21px;
	}
}
@media (max-width: 650px) {
	.preloader svg {
		height: 57px;
		width: 55px;
	}
	.ab__title {
		text-align: start;
		font-size: 41px;
	}
	.ab__subtitle {
		max-width: 100%;
		text-align: start;
		font-size: 17px;
	}
	.ab__inner {
		align-items: flex-start;
	}
	.ab__mouse {
		display: none;
	}
	.ab__btnbox {
		width: 100%;
	}
	.ab__btnbox-btn {
		width: 50%;
	}
	.ab__count {
		margin-left: 40px;
		padding-right: 30px;
	}
	.tor__inner-title {
		font-size: 35px;
		padding-right: 35px;
	}
	.tor__inner-subtitle {
		font-size: 20px;
	}
	.tor__inner-img-mor {
		max-width: 300px;
	}
	.faq__sbsbsb {
		font-size: 20px;
	}
	.faq__quest {
		font-size: 17px;
		padding-left: 35px;
		padding-right: 20px;
	}
	.faq__ans {
		padding-left: 35px;
		line-height: 145%;
	}
	.footer__nav {
		display: none;
	}
	.footer__logo {
		display: none;
	}
	.footer__text {
		display: block;
		color: #707070;
		font-weight: 700;
	}
	.footer__inner {
		padding: 20px 0;
	}
	.title {
		font-size: 35px;
	}
	.subtitle {
		font-size: 20px;
		padding-right: 35px;
	}
	.modal-content {
		width: 90%;
	}
}
@media (max-width: 500px) {
	.ab::before {
		content: url(../img/dist/decorbg2.svg);
		left: -237px;
		bottom: -185px;
	}
	.ben {
		padding-top: 300px;
	}
	.tor {
		padding-top: 100px;
	}
	.tor__box-item {
		min-height: 310px;
	}
	.tor__box-item span {
		font-size: 30px;
	}
	.tor__box-title {
		font-size: 16px;
		font-weight: 500;
	}
	.tor__box-tele {
		width: 294px;
	}
	.tor__box-m3ga {
		font-size: 11px;
		top: 93px;
		right: 50px;
	}
	.faq__ans {
		padding-right: 50px;
	}
}
@media (max-width: 450px) {
	.faq__item.faq__item--active .faq__ans {
		padding-right: 30px;
		padding-left: 35px;
	}
	.hd__nav-link {
		font-size: 20px;
	}
	ul.hd__nav-list {
		padding-right: 40px;
	}
	.ab__btnbox {
		flex-direction: column;
	}
	.ab__btnbox-btn {
		width: 100%;
	}
	.ab__btnbox-btn span {
		font-size: 15px;
	}
	.ab__inner {
		padding-top: 75px;
	}
	.ab__title {
		font-size: 33px;
	}
	.ab__subtitle {
		font-size: 17px;
		padding-right: 15px;
	}
	.tor {
		padding-bottom: 100px;
	}
	.tor__inner-title {
		font-size: 30px;
	}
	.tor__inner-subtitle {
		font-size: 18px;
		margin-bottom: 50px;
	}
	.tor__inner-btn {
		width: 100%;
	}
	.tor__inner-btn span {
		font-size: 15px;
	}
	.tor__inner-link span {
		font-size: 14px;
	}
	.faq {
		margin-bottom: 100px;
	}
	.faq__quest {
		font-size: 14px;
		line-height: 135%;
	}
	.faq__ans {
		font-size: 14px;
	}
	.faq__sbsbsb {
		margin-bottom: 50px;
	}
	.faq .title {
		margin-bottom: 50px;
	}
}
@media (max-width: 385px) {
	.subtitle {
		font-size: 18px;
	}
}
@media (max-width: 354px) {
	.faq {
		margin-bottom: 100px;
	}
	.reva__rev {
		font-size: 14px;
	}
}
@media (max-width: 350px) {
	.faq__quest {
		font-size: 13px;
	}
}
