* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

.showModal,
.showError {
	overflow: hidden;
}

body {
	font-size: 16px;
	line-height: 1.5;
	font-family: "Scada", sans-serif;
	color: #222629;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

.container {
	position: relative;
	overflow: hidden;
	opacity: 1;
}

/* section {
	overflow-x: hidden;
} */
.limit {
	position: relative;
	max-width: 320px;
	width: 100%;
	padding: 0 20px;
	display: block;
	margin: 0 auto;
	z-index: 0;
}

section {
	position: relative;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	border: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	-webkit-font-smoothing: subpixel-antialiased;
}

ul li {
	list-style-type: none;
}

a {
	text-decoration: none;
	outline: none;
}

button {
	outline: none;
}

.btn,
.s-title,
.subtitle {
	font-family: "Oswald", sans-serif;
}

.s-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.15;
	max-width: 75%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 25px;
}

.subtitle {
	font-size: 34px;
	font-weight: 500;
}

[lang="ru"] .s-title {
	max-width: 100%;
}

.btn {
	position: relative;
	display: table;
	margin: 15px auto;
	padding: 15px 40px 20px;
	max-width: 100%;

	background-color: transparent;
	border: 3px solid #222629;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	color: #222629;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	-webkit-transition: 0.5s ease all;
	-o-transition: 0.5s ease all;
	transition: 0.5s ease all;
	cursor: pointer;
	outline: none;
	z-index: 5;
}

.btn:hover {
	background-color: #222629;
	color: #fff;
}

.btn.btn--white {
	border-color: #fff;
	color: #fff;
}

.btn.btn--white:hover {
	border-color: #fcb813;
	color: #fcb813;
}

.btn.btn--red {
	max-width: 264px;
	border-color: #e63e21;
	color: #e63e21;
	text-transform: none;
}

.btn.btn--red:hover {
	background-color: #e63e21;
	color: #222629;
}

.btn.btn--main {
	max-width: 540px;
	border-color: #e63e21;
	background-color: #e63e21;
	line-height: 1.1;
	color: #fff;
	text-transform: none;
}

.btn.btn--main:hover {
	border-color: #e63e21;
	color: #e63e21;
	background-color: transparent;
}

/* Animation */
@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fade-in-up {
	0% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fade-in-up {
	0% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

@-webkit-keyframes fade-in-right {
	0% {
		-webkit-transform: translateX(50px) translateY(50px) scale(0.5);
		transform: translateX(50px) translateY(50px) scale(0.5);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(0) scale(1);
		transform: translateX(-50%) translateY(0) scale(1);
		opacity: 1;
	}
}

@keyframes fade-in-right {
	0% {
		-webkit-transform: translateX(50px) translateY(50px) scale(0.5);
		transform: translateX(50px) translateY(50px) scale(0.5);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(0) scale(1);
		transform: translateX(-50%) translateY(0) scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes fade-in-left {
	0% {
		-webkit-transform: translateX(-100px) translateY(50px) scale(0.5);
		transform: translateX(-100px) translateY(50px) scale(0.5);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(0) scale(1);
		transform: translateX(-50%) translateY(0) scale(1);
		opacity: 1;
	}
}

@keyframes fade-in-left {
	0% {
		-webkit-transform: translateX(-100px) translateY(50px) scale(0.5);
		transform: translateX(-100px) translateY(50px) scale(0.5);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(0) scale(1);
		transform: translateX(-50%) translateY(0) scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes zoom-in {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes zoom-in {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.zoomIn {
	-webkit-animation-name: zoom-in;
	animation-name: zoom-in;
}

@-webkit-keyframes shine-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}

	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}

@keyframes shine-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}

	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}

/* Header */
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	z-index: 15;
	padding: 5px 0;
	-webkit-transition: 0.5s ease all;
	-o-transition: 0.5s ease all;
	transition: 0.5s ease all;
}

.header.show {
	position: fixed;
	height: 60px;
	padding: 5px 0;
	background-color: rgba(0, 0, 0, 0.75);
}

.header.show .nav__btn span {
	background-color: #fff;
}

.header.show .nav__btn.opened span {
	background-color: #000;
}

.header__content {
	display: table;
	width: 100%;
	height: 50px;
	table-layout: fixed;
}

.header__logo,
.header__menu {
	display: table-cell;
	vertical-align: middle;
}

.header__logo {
	position: relative;
	width: 150px;
	height: 30px;
	z-index: 10;
}

.header__logo .logo {
	display: block;
	background-image: url(../images/logo.svg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: contain;
	background-size: contain;
	width: 150px;
	height: 30px;
}

.header__menu {
	text-align: right;
	position: relative;
	z-index: 2;
}

.menu__inner {
	display: inline-block;
	vertical-align: middle;
	position: fixed;
	max-width: 320px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 0px;
	left: 50%;
	width: 100%;
	padding: 90px 20px 30px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition-property: visibility, opacity, background-color;
	-o-transition-property: visibility, opacity, background-color;
	transition-property: visibility, opacity, background-color;
	-webkit-transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
	-o-transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.nav__list {
	margin: 0 auto;
}

.nav__list .btn {
	margin-top: 120px;
	color: #222629;
	border: 1px solid #222629;
	display: table;
	width: auto;
	text-transform: none;
	font-family: Scada;
	font-size: 16px;
	padding: 15px 24px;
	font-weight: 400;
	margin-left: 0;
	line-height: normal;
}

.nav__list .btn:hover {
	color: #e33e21;
	border-color: #e33e21;
	background-color: transparent;
}

.menu__inner.opened {
	opacity: 1;
	visibility: visible;
	background-color: #fff;
}

.menu__inner.opened .nav__item {
	opacity: 1;
}

.nav__item {
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 30px;
	opacity: 0;
	font-family: "Scada", sans-serif;
	font-size: 16px;
	font-weight: normal;
	text-align: left;
	color: #222629;
	border: none;
	background-color: transparent;
	outline: none;
	cursor: pointer;
	-webkit-transition: 0.5s ease all;
	-o-transition: 0.5s ease all;
	transition: 0.5s ease all;
}

.nav__item:hover,
.nav__item.active {
	color: #e63e21;
}

.nav__btn {
	padding: 10px 0;
	line-height: 1;
	display: block;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	top: 48%;
	right: 0;
	background-color: transparent;
	border: none;
	z-index: 2;
}

.nav__btn span {
	display: block;
	width: 22px;
	height: 3px;
	margin-bottom: 5px;
	position: relative;
	background-color: #fff;
	z-index: 1;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition: background-color 0.35s, opacity 0.35s, -webkit-transform 0.35s;
	transition: background-color 0.35s, opacity 0.35s, -webkit-transform 0.35s;
	-o-transition: background-color 0.35s, opacity 0.35s, transform 0.35s;
	transition: background-color 0.35s, opacity 0.35s, transform 0.35s;
	transition: background-color 0.35s, opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

.nav__btn span:last-child {
	margin-bottom: 0;
}

.nav__btn.opened {
	background-color: transparent;
}

.nav__btn.opened span {
	background-color: #000;
}

.nav__btn.opened span:first-child {
	-webkit-transform: translateY(8px) rotate(45deg) translateZ(0);
	transform: translateY(8px) rotate(45deg) translateZ(0);
}

.nav__btn.opened span:nth-child(2) {
	opacity: 0;
}

.nav__btn.opened span:nth-child(3) {
	-webkit-transform: translateY(-8px) rotate(-45deg) translateZ(0);
	transform: translateY(-8px) rotate(-45deg) translateZ(0);
}

.lang {
	display: inline-block;
	vertical-align: middle;
	margin-right: 40px;
	padding: 0;
	background-color: transparent;
	border: none;
	width: 30px;
	height: 26px;
	text-align: left;
	font-weight: bold;
	line-height: 26px;
	cursor: pointer;
	text-transform: capitalize;
	color: #fcb813;
	overflow: visible;
	position: relative;
}

.lang::after {
	content: "";
	position: absolute;
	display: block;
	right: 0;
	top: 48%;
	border-top: 3px solid #fcb813;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}

.language_box {
	display: none;
	line-height: 1;
	position: absolute;
	right: 51px;
	top: 70%;
	-webkit-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background-color: transparent;
}

.language_box .select_language {
	display: block;
	padding: 0px;
	-webkit-transition: 0.5s ease all;
	-o-transition: 0.5s ease all;
	transition: 0.5s ease all;
}

.language_box .select_language:nth-of-type(1) {
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.language_box .select_language:last-of-type {
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.language_box .select_language span {
	vertical-align: middle;
	font-size: 16px;
	font-weight: bold;
	font-family: inherit;
	color: #fcb813;
}

.language_box .select_language:hover {
	text-decoration: none;
}

.language_box .select_language:hover span {
	color: #e63e21;
}

[data-lang-status="ar"] {
	direction: rtl;
}

[data-lang-status="ar"] .header__content {
	direction: ltr;
}

[data-lang-status="ar"] .language_box .select_language[data-lang-switcher="ar"] {
	display: none;
}

[data-lang-status="ar"] .language_box .select_language[data-lang-switcher="en"] {
	display: block;
}

[data-lang-status="ar"] .about__list li {
	padding-left: 0;
	padding-right: 50px;
}

[data-lang-status="ar"] .about__list li:before {
	top: 10px;
	left: auto;
	right: 0;
}

[data-lang-status="en"] {
	direction: ltr;
}

[data-lang-status="en"] .language_box .select_language[data-lang-switcher="ar"] {
	display: block;
}

[data-lang-status="en"] .language_box .select_language[data-lang-switcher="en"] {
	display: none;
}

/* section Top */
.top {
	position: relative;
	padding: 60px 0 0;
	background: url('../images/top_bg.jpg') top center no-repeat;
	background-size: cover;
}

.top:before {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	background: linear-gradient(0deg, #222629 0%, rgba(34, 38, 41, 0) 77.79%);
	height: 100%;
	z-index: 1;
}

.top .limit {
	z-index: 2;
}

.top__content {
	display: flex;
	flex-direction: column;
}

.top__info {
	display: flex;
	flex-direction: column;
}

.top__label {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0 7px;
	margin: 10px auto 0;
}

.top__label:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%) skewX(-10deg);
	background: #fff;
}

.top__label span {
	position: relative;
	z-index: 2;
	font-size: 16px;
	line-height: 1.13;
	padding: 10px;
}

[lang="ru"] .top__label span {
	font-size: 14px;
}

.top__title {
	margin-top: 20px;
	text-align: center;
	font-family: "Oswald", sans-serif;
	font-size: 40px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.13;
}

[lang="ru"] .top__title {
	font-size: 32px;
}

.top__title--yellow {
	color: #fcb813;
}

.top__title--white {
	margin-top: 11px;
	color: #fff;
}

.top__title--red {
	position: relative;
	margin: 11px 0 20px;
	color: #e63e21;
}

.top__title--red span {
	position: relative;
	z-index: 3;
}

.top__title--red:before {
	content: attr(data-text);
	position: absolute;
	width: 100%;
	left: 50%;
	top: 9px;
	transform: translateX(-50%);
	color: transparent;
	-webkit-text-stroke: 1px #e63e21;
	text-stroke: 1px #e63e21;
	opacity: 0.5;
	z-index: 2;
}

.top__title--red:after {
	content: attr(data-text);
	position: absolute;
	width: 100%;
	left: 50%;
	top: 18px;
	transform: translateX(-50%);
	color: transparent;
	-webkit-text-stroke: 1px #e63e21;
	text-stroke: 1px #e63e21;
	opacity: 0.3;
	z-index: 1;
}

.top__content .btn--main {
	margin-top: 20px;
	font-size: 18px;
}

.top__gallery {
	position: relative;
	padding: 15px 0 8px;
	margin-top: 20px;
	user-select: none;
}

.top__gallery:before {
	content: '';
	position: absolute;
	width: 1000px;
	top: 0;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(45deg, rgba(230, 62, 33, 0) 51.04%, #e63e21 100%), #FCB813;
	z-index: 2;
}

.top__img {
	position: absolute;
	width: 66px;
	height: 66px;
	bottom: 0;
	left: -30px;
	transform: translateY(50%);
	animation: rotateImg 60s linear infinite;
	z-index: 2;
}

@keyframes rotateImg {
	0% {
		transform: translateY(50%) rotate(0deg);
	}

	100% {
		transform: translateY(50%) rotate(-360deg);
	}
}

.top__decor {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	right: 0;
	z-index: 1;
}

.gallery {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	gap: 5px;
	transition: transform 0.5s;
	width: 170px;
	margin: 0 auto;
	z-index: 3;
}

.gallery:before {
	content: '';
	position: absolute;
	top: 0;
	left: -30px;
	width: 220%;
	height: 100%;
	z-index: 10;
}

@media (min-width: 1920px) {
	.gallery {
		transform: translateX(46px) !important;
	}
}

.gallery__item {
	flex: 0 0 16px;
	overflow: hidden;
	transform: skewX(-11deg);
	transition: flex-basis 0.5s;
}

.gallery__item.show {
	flex-basis: 170px;
}

.gallery__item img {
	height: 166px;
	position: relative;
	max-width: none;
	transform: translate(-50%, -50%) skewX(10deg);
	top: 50%;
	left: 50%;
}

.gallery__nav {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-top: 9px;
	z-index: 2;
	text-align: center;
}

.gallery__prev,
.gallery__next {
	transition: opacity .25s;
	height: 22px;
	width: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.gallery__prev svg,
.gallery__next svg {
	display: block;
	width: 22px;
	height: 8px;
	stroke: #222629;
	transition: stroke .25s;
}

.gallery__next svg {
	transform: scale(-1, 1);
}

.gallery__prev.disable,
.gallery__next.disable {
	opacity: .5;
	cursor: default;
}

/*
.top__pretitle {
  position: relative;
  z-index: 3;
  font-size: 16px;
  text-align: center;
}

.top__title {
  position: relative;
  z-index: 3;
  text-align: center;
}

.top__img {
  left: 50%;
  width: 820px;
  transform: translateX(-57%);
  position: relative;
  max-width: none;
  margin-top: -25px;
}

.top__img-hill {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.top__img-ironman,
.ironman-coin {
  display: none;
}

.coin {
  display: none;
}

.top__title .s-title {
  line-height: 1.25;
}

.top__title .s-title span {
  display: block;
}

.top__title .subtitle {
  margin: 15px auto 32px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
}

.top__title .subtitle span:nth-child(1) {
  color: #fcb813;
}

.top__title .subtitle span:nth-child(2) {
  color: #e63e21;
}
*/
.window-wrapper {
	position: relative;
	padding: 30px 15px 0;
}

.arrow-wrapper {
	padding: 0 0 15px;
	text-align: center;
	margin-top: -40px;
}

.arrow-down {
	display: inline-block;
	padding: 7px;
	background-color: transparent;
	border: solid #222629;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: ro8tate(45deg);
	cursor: pointer;
	outline: none;
	-webkit-transition: 0.5s ease all;
	-o-transition: 0.5s ease all;
	transition: 0.5s ease all;
}

.arrow-down:hover {
	border-color: #fcb813;
}

.statistic {
	background: #222629;
	padding: 50px 0 20px;
	color: #fff;
}

.statistic__title {
	font-family: Oswald;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	text-align: center;
	position: relative;
	z-index: 1;
	margin-bottom: 15px;
}

.map__container {
	width: 100%;
	margin-top: -40px;
	height: 338px;
	zoom: 0.8;
}

.statistic__map {
	height: 328px;
	width: 665px;
	position: relative;
	margin: auto;
	margin-left: -95px;
	z-index: 5;
}

.statistic__map img {
	max-height: 100%;
	max-width: 100%;
}

.statistic__map-small {
	position: absolute;

	transition: 0.3s;
}

.statistic__map-caption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #e33e21;
	opacity: 1;
	font-size: 18px;
	font-weight: 600;
	z-index: 1;
	display: block;
	line-height: 1;
	transition: 0.3s;
	font-family: "Oswald";
	background-color: #fff;
	padding: 3px 8px 5px;
}

.statistic__map-caption::before {
	content: "";
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-right-color: #ffffff;
	position: absolute;
	bottom: -3px;
	right: -5px;
	transform: rotate(135deg);
}

.statistic__map-usa .statistic__map-caption {
	left: 64%;
	top: 65%;
}

.statistic__map-latam .statistic__map-caption {
	left: 73%;
	top: 49%;
}

.statistic__map-europe .statistic__map-caption {
	top: 57%;
	left: 58%;
}

.statistic__map-africa .statistic__map-caption {
	top: 33%;
	left: 49%;
}

.statistic__map-mena .statistic__map-caption {
	top: 33%;
	left: 49%;
}

.statistic__map-asia .statistic__map-caption {
	top: 47%;
	left: 33%;
}

.statistic__map-small img {
	transition: 0.3s;
	opacity: 0;
}

.statistic__map-small.show img,
.statistic__map-small:hover img {
	opacity: 0.4;
}

.statistic__map-usa {
	top: 49px;
	left: 0px;
	width: 202px;
}

.statistic__map-latam {
	top: 147px;
	width: 153px;
	left: 92px;
}

.statistic__map-asia {
	left: 364px;
	top: 14px;
	width: 299px;
}

.statistic__map-africa {
	top: 166px;
	left: 283px;
	width: 123px;
}

.statistic__map-mena {
	top: 142px;
	left: 288px;
	width: 131px;
}

.statistic__map-europe {
	top: 17px;
	left: 268px;
	width: 174px;
}

.statistic__facts {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
	z-index: 10;
	position: relative;
}

.statistic__fact {
	font-size: 18px;
	line-height: 1.1;
	font-family: Oswald;
	max-width: 50%;
	margin-top: -30px;
	z-index: 1;
}

.statistic__fact:nth-child(4),
.statistic__fact:nth-child(2) {
	align-self: flex-end;
}

.statistic__fact:nth-child(3) {
	padding-left: 20px;
}

.statistic__fact:nth-child(4) {
	padding-right: 20px;
	max-width: 45%;
}

.statistic__fact b {
	font-size: 50px;
	display: block;
	color: #fcb813;
}

.statistic__fact span {
	display: inline-block;
}

.statistic__fact b,
.statistic__fact span {
	transition: 0.3s;
}

.statistic__fact:hover b {
	color: transparent;
	-webkit-text-stroke: 1px #ffffff;
	/* Толщина и цвет обводки */
	text-stroke: 1px #ffffff;
	/* Толщина и цвет обводки (стандартное свойство) */
}

/* section About */
.about {
	padding: 50px 0 30px;
}

.about p {
	text-align: center;
}

.about__list li {
	position: relative;

	margin-bottom: 30px;

	font-weight: 500;
	text-align: center;
	font-family: "Scada", sans-serif;
}

.about__list li:last-child {
	margin-bottom: 0;
}

.about__item-title {
	font-family: Oswald;
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 10px;
	transition: 0.3s;
}

.about__item-title .to-scroll {
	color: #fcb813;
	text-decoration: underline dashed;
}

.about__item-title .to-scroll:hover {
	text-decoration: none;
}

.about__item.active .about__item-title {
	color: #e33e21;
}

.about__item-pers {
	margin: auto;
	display: table;
	margin-bottom: 10px;
}

.about__item-pers img {
	max-height: 240px;
	max-width: 170px;
}

.about__list {
	margin-bottom: 50px;
}

.about__pre-button {
	margin-top: 60px;
	color: #fcb813;
}

[lang="ru"] .about__outro br {
	display: none;
}

.about__outro span {
	background-color: #fcb813;
	position: relative;
	left: 6px;
}

.about__outro span span {
	left: -6px;
}

.about__outro span b {
	position: relative;
	left: 3px;
	font-weight: 400;
}

/* section How */
.how {
	padding: 50px 0 30px;
	text-align: center;
	background-color: #222629;
}

.how .s-title {
	color: #fff;
	text-align: center;
	font-size: 36px;
}

.how .btn {
	max-width: 210px;
	text-transform: none;
}

.how__list {
	padding: 40px 0 55px;
}

.how__list-item {
	text-align: center;
	margin-bottom: 30px;
	position: relative;
}

.how__list-item p {
	color: #fff;
	max-width: 180px;
	margin: auto;
}

.item__img img {
	display: block;
	margin: auto;
	width: 100px;
}

.item__img--a {
	color: rgba(255, 255, 255, 0.2);
	font-family: Oswald;
	font-size: 80px;
	font-style: normal;
	font-weight: 600;
	line-height: 1;
	transition: 0.3s;
	margin-bottom: -23px;
}

.how__list-item .item__caption {
	font-family: "Oswald", sans-serif;
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	transition: 0.3s;
	letter-spacing: 1.2px;
}

.how__list-item .item__caption b {
	display: block;
	color: rgba(255, 255, 255, 0.07);
	font-size: 47px;
	margin-top: -21px;
	margin-bottom: -57px;
	opacity: 0;
}

.how__list-item:hover .item__caption b {
	opacity: 1;
}

.how__list-item.item--3 .item__caption {
	color: #fcb813;
}

.how__list-item.item--3 .item__caption span {
	transition: 0.3s;
	color: #e63e21;
}

.how__list-item.item--1::after {
	content: "";
	position: absolute;
	top: 340px;
	right: 0px;
	height: 132px;
	width: 32px;
	display: block;
	background: url(../images/how-arrow.svg) no-repeat center/contain;
	transform: scale(-1);
}

.how__list-item.item--2::after {
	content: "";
	position: absolute;
	top: -260px;
	left: 10px;
	height: 132px;
	width: 32px;
	display: block;
	background: url(../images/how-arrow.svg) no-repeat center/contain;
}

.how__list-item.item--2 p {
	max-width: 160px;
	margin: 0 auto;
}

.how__list-item.item--2 {
	margin-bottom: 0;
}

.how__list-item.item--3 {
	margin-bottom: 25px;
}

.how__list .item--1:hover .item__caption,
.how__list .item--1:hover .item__img {
	color: #fcb813;
}

.how__list .item--1:hover .item__img--a {
	color: rgba(252, 182, 19, 0.2);
}

.how__list .item--2:hover .item__caption,
.how__list .item--2:hover .item__img {
	color: #e33e21;
}

.how__list .item--2:hover .item__img--a {
	color: rgba(227, 62, 33, 0.203);
}

.how__list .item--3:hover .item__caption,
.how__list .item--3:hover .item__caption span {
	color: #fff;
}

.how__list .item--3 .item__img {
	fill: #fcb813;
	width: 100px;
	height: 71.058px;
	display: block;
	margin: auto;
}

.how__list .item--3:hover .item__img {
	fill: #e33e21;
}

.how__list .item--3 .item__img svg {
	max-width: 100%;
	max-height: 100%;
	margin-bottom: 45px;
}

.how__list-item .item__caption b {
	display: block;
	color: rgba(255, 255, 255, 0.07);
	font-size: 35px;
	margin-top: -15px;
	margin-bottom: -25px;
	opacity: 1;
}

.how__outro {
	color: #fcb813;
}

/* section COD */
.cod {
	padding: 50px 0 0;
}

.cod .s-title {
	text-align: center;
	margin-bottom: 20px;
	font-size: 36px;
	font-weight: 600;
}

.cod p {
	text-align: center;
	position: relative;
}

.cod p span {
	position: absolute;
	text-transform: uppercase;
	top: -35px;
	text-align: center;
	color: rgba(34, 38, 41, 0.104);
	left: 0;
	width: 100%;
	font-family: Oswald;
	font-size: 44px;

	font-weight: 600;
	line-height: 130%;
	/* 83.2px */
	letter-spacing: 0.64px;
	text-transform: uppercase;
	opacity: 1;
}

.cod p mark {
	background-color: #fcb813;
	position: relative;
	left: 6px;
}

.cod p mark mark {
	left: -6px;
}

.cod p mark mark mark {
	left: 3px;
}

.cod__list-item:hover p span {
	opacity: 1;
}

.cod .btn {
	max-width: 210px;
	text-transform: none;
}

.cod__list {
	padding: 40px 0;
}

.cod__list-item {
	position: relative;
	text-align: center;
	margin-bottom: 60px;
}

.cod__list-item .item__img {
	width: 87.998px;
	height: 114.397px;
	margin: 0 auto 20px;
	transition: 0.3s;
}

.cod__list-item .item__img path {
	transition: 0.3s;
}

.cod__list-item:hover .grey {
	fill: #ccc;
}

.cod__list-item:hover .red {
	fill: #e33e21;
}

.cod__list-item:hover .yellow {
	fill: #fcb813;
}

.cod__list-item fonts.yellow {
	position: relative;
	padding: 0 3px;
}

.cod__list-item fonts.yellow::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	transition: 0.3s;
	background-color: #fcb813;
	z-index: -1;
}

.cod__list-item:hover fonts.yellow::before {
	width: 100%;
}

.cod__list-item.item--1 .item__img {
	width: 115px;
	height: 115px;
}

.cod__list-item.item--2 .item__img {
	width: 96.798px;
	height: 110.877px;
}

.cod__list-item.item--3 {
	margin-bottom: 0;
}

.cod__list-item.item--3 p {
	max-width: 240px;
	margin: 0 auto;
}

.cod__list-item+.cod__list-item:before {
	content: "";
	position: absolute;
	top: -40px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 33px;
	height: 18px;
	background-image: url(../images/cod-arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	transform: translateX(-50%) rotate(90deg);
}

.cod-why {
	padding: 20px 0 0;
}

.cod-why .subtitle {
	text-align: center;
	font-family: Oswald;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 110%;
}

.cod-why__list {
	padding: 40px 0 10px;
	position: relative;
}

.cod-why__list-item {
	text-align: center;
	margin-bottom: 40px;
}

.cod-why__list-item .item__img {
	width: 94px;
	height: 147px;
	margin: auto;
	position: relative;
}

.cod-why__list-item .item__img img {
	position: absolute;
	width: 100%;
}

.cod-why__list-item .item__img img:nth-child(2) {}

.cod-why__list-item .item__img img:nth-child(3),
.cod-why__list-item .item__img img:nth-child(4),
.cod-why__list-item .item__img img:nth-child(5) {
	opacity: 0;
}

.cod-why__list-item .item__caption {
	font-family: "Oswald", sans-serif;
	font-size: 30px;
	font-weight: 600;
}

/* section Profit */
.profit {
	padding: 48px 0 60px;
	background-color: #222629;
	color: #fff;
}

.profit__title {
	font-family: Oswald;
	font-size: 36px;
	font-weight: 600;
	line-height: 110%;
	/* 39.6px */
	letter-spacing: -0.36px;
	text-align: center;
	margin-bottom: 48px;
}

.profit__step {
	position: relative;
	margin-bottom: 50px;
}

.step__img {
	max-width: 280px;
	max-height: 283px;
	margin: auto;
	margin-bottom: 15px;
}

.profit__step:last-child {
	margin-bottom: 0;
}

.profit__step .btn {
	margin: 20px auto;
}

.profit__step p {
	margin-top: 15px;
}

.profit__step .step__caption b {
	transition: 0.3s;
	display: initial;
}

.tags-caption {
	color: #fcb813;
}

.profit__step:hover .step__caption b {
	color: #fcb813;
}

.tip-footnote {
	padding-left: 90px;
	position: relative;
	display: block;
	font-size: 15px;
}

[lang="ru"] .tip-footnote {
	padding-left: 70px;
}

.tip-footnote b {
	color: #fcb813;
	position: absolute;
	left: 0;
	top: -3px;
	padding: 3px 8px;
	border-radius: 4px;
	display: block;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.06);
}

.profit__step .tags {
	padding: 10px 0;
}

.profit__step .tag {
	display: inline-block;
	vertical-align: middle;
}

.profit__step .tags .tag span {
	display: inline-block;
	font-size: 14px;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	line-height: 140%;
	text-align: center;
	padding: 2px 9px;
	background-color: #383b3e;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	margin-right: 8px;
	margin-bottom: 8px;
	border: 2px solid #383b3e;
	transition: background-color .5s;
	cursor: pointer;
}

.profit__step .tags .tag span::before {
	content: "";
	height: 1em;
	/* display: inline-block; */
	vertical-align: middle;
}

.profit__step .tags .tag span:hover {
	background-color: transparent;
}

.profit__step .no-margin {
	margin-top: 0;
}

.top-offers-block {
	padding: 48px 0 50px;
	background: url(../images/waves.svg) no-repeat left bottom/100% auto,
		url(../images/profit-back-desk.jpg) repeat-y center top/ 100% auto;
	position: relative;
}

.tip-footnote {
	margin: 15px 0;
	color: #909294;
}

.tip-footnote b {
	color: #fcb813;
}

.step__caption {
	font-family: "Oswald", sans-serif;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #fcb813;
	line-height: 1.1;
}

.step__caption b {
	color: #fff;
}

.payment-list {
	padding-top: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	max-width: 600px;
}

.payment-list li {
	background-color: #fff;
	border-radius: 4px;
	margin-right: 6px;
	margin-bottom: 6px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;

	padding: 0 15px;
}

.top-offers .subtitle {
	font-family: Oswald;
	font-size: 36px;
	text-align: center;
	font-weight: 600;
	line-height: 110%;
	margin-bottom: 32px;
}

.top-offers p {
	text-align: center;
	margin-bottom: 48px;
}

.offers__list-item {
	width: 100%;
	text-align: center;
	padding: 0 5px 40px;
}

@media only screen and (min-width: 992px) {
	.offers__list-item {
		width: 50%;
	}
}

.offers__list-item p {
	font-size: 12px;
	color: #002942;
}

.offer__link {
	color: #fff;
	display: flex;
	max-width: 290px;
	margin: 0 auto;
	flex-direction: column;
	height: 100%;
}

.offer__caption {
	margin-bottom: 10px;
	line-height: 1;
}

.offer__link .offer__caption,
.offer__link .offer__reward {
	font-family: "Oswald", sans-serif;
	font-size: 30px;
	font-weight: 600;
	color: #222629;
}

.offer__link .offer__reward {
	color: #fcb813;
}

.offers__product {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	color: #222629;
	font-size: 18px;
}

.offers__product-left,
.offers__product-right {
	width: 50%;
	padding: 0 10px;
	margin-bottom: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.offers__product-price {
	color: #e33e21;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 1;
	margin-top: 5px;
}

.offers__product-name {
	margin-bottom: 16px;
	font-family: "Oswald", "Rubik", sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: #222629;
}

.offers__product-area {
	border-radius: 50px;
	background: #e33e21;
	font-size: 15px;
	font-family: "Oswald", "Rubik", sans-serif;
	font-weight: 600;
	color: #fff;
	padding: 8px 20px;
	display: inline-block;
	margin-top: auto;
	margin-bottom: 0;
}

.offers__product-img img {
	display: block;
	margin: auto;
	width: auto;
	height: 100px;

	max-width: none;
	image-rendering: crisp-edges;
	image-rendering: -moz-crisp-edges;
	/* Firefox */
	-ms-interpolation-mode: nearest-neighbor;
	/* IE */
}

.offers__product-vertical {
	background-color: #656565;
	color: #fff;
	padding: 5px 15px;
	border-radius: 50px;
	line-height: 1;
	margin: auto;
	margin-top: 5px;
	display: table;
}

/* section Contacts */
.contacts {
	padding: 90px 0 0;
	text-align: center;
}

.contacts .s-title {
	font-size: 36px;
	max-width: none;
	font-weight: 600;
	line-height: 110%;
	/* 39.6px */
	letter-spacing: -0.36px;
	margin: 20px 0;
}

.contacts__top {
	padding: 20px 0 0;
}

.contacts__top .pretitle span {
	background-color: #fcb813;
	position: relative;
	left: 6px;
}

.contacts__top .pretitle span span {
	left: -6px;
}

.contacts__top .pretitle span span span {
	left: 3px;
}

.contacts__bottom {
	padding: 5px 0 50px;
}

.contacts__bottom .subtitle {
	margin: 0px auto 10px;
	font-size: 20px;
}

.contacts__bottom .mail-link {
	display: block;
	font-family: "Oswald", sans-serif;
	font-size: 30px;
	font-weight: 600;
	color: #222629;
	margin-bottom: 95px;
}

.contacts__bottom .mail-link:hover {
	color: #e63e21;
}

.subscribe__list {
	padding: 20px 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.subscribe__list li {
	width: 50%;
	margin-bottom: 30px;
}

.subscribe__list li a {
	font-family: "Oswald", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #222629;
	position: relative;
}

.subscribe__list li a img {
	width: 80px;
	height: 80px;
	opacity: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.3s;
	position: absolute;
	margin: 0;
	max-width: none;
	max-height: none;
}

.subscribe__list li a:hover img {
	opacity: 1;
}

.subscribe__list li a:hover span {
	opacity: 0;
}

/* Footer */
.footer {
	padding: 20px 0 50px;
	text-align: center;
	border-top: 1px solid rgba(34, 38, 41, 0.1);
	font-size: 12px;
}

.footer__content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.footer__link,
.copyright {
	width: 50%;
}

.footer .footer__link {
	color: #222629;
	text-align: right;
}

.footer .footer__link:hover {
	color: #e63e21;
}

.footer .copyright {
	text-align: left;
}

/* Modal */
.modal {
	position: relative;
	width: 300px;
	max-width: 100%;
	/* height: 420px; */
	margin: 0 auto;
	padding: 30px 20px;
	background: #fff;
	cursor: default;
}

.modal__close {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
	right: 0;
	cursor: pointer;
}

.modal__close:before,
.modal__close:after {
	content: "";
	position: absolute;
	width: 22px;
	height: 4px;
	background: #000;
	top: 50%;
	left: 50%;
	margin: -2px 0 0 -11px;
	-webkit-transform: rotateZ(45deg);
	-ms-transform: rotate(45deg);
	transform: rotateZ(45deg);
}

.modal__close:after {
	-webkit-transform: rotateZ(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotateZ(-45deg);
}

.modal__table {
	display: table;
	width: 100%;
	height: 100%;
}

.modal__cell {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 10px;
}

.modal__box {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: -1;
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;
	cursor: pointer;
	overflow-y: scroll;
}

.modal__title {
	font-size: 22px;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	padding: 15px 0 10px;
	line-height: 1;
}

.modal__login {
	text-align: center;
	padding-bottom: 20px;
}

.modal__login a {
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	color: #000;
	line-height: 1.25;
}

.modal__login span {
	display: inline-block;
	color: #e63e21;
}

.error {
	position: relative;
	width: 280px;
	margin: 0 auto;
	padding: 30px 20px;
	background: #fff;
	cursor: default;
}

.error__table {
	display: table;
	width: 100%;
	height: 100%;
}

.error__cell {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 10px;
}

.error__box {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: -1;
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;
	cursor: pointer;
	overflow-y: scroll;
}

.error__text {
	font-size: 14px;
	line-height: 1;
	color: red;
}

.form {
	display: block;
	overflow-y: auto;
	height: -webkit-calc(100% - 92px);
	height: calc(100% - 92px);
}

.form__box {
	padding: 0 5px;
}

.form__label {
	font-family: "Oswald", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	padding-bottom: 5px;
}

.form__hint {
	color: red;
	margin: 10px 0;
	font-family: "Scada", "Rubik", sans-serif;
	font-size: 12px;
	line-height: 1.4;
}

.form__select:before {
    content: '';
    position: absolute;
    border: 5px solid transparent;
    border-top: 8px solid #000000;
    border-bottom: 0;
    top: 50%;
    right: 25px;
    margin-top: 6px;
    z-index: 0;
}

.form__select {
    border: 1px solid #000;
}

.form__select select {
    background: transparent;
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    font-size: 14px;
    border: none;
    line-height: 19px;
    padding: 10px;
    appearance: none;
}

.form__select option {
    color: #000;
    padding: 0 10px;
}
.form__label b,
.form__text b{
    color: red;
}

.form__input,
.form__textarea {
	border: 1px solid #000;
	-webkit-border-radius: 0;
	border-radius: 0;
	width: 100%;
	font-family: "Scada", sans-serif;
	font-size: 14px;
	line-height: 1.4;
	padding: 10px;
	-webkit-appearance: none;
}

.form__textarea {
	height: 75px;
}

.form__block,
.form__left {
	position: relative;
	margin-bottom: 24px;
}

.form__checkbox {
	opacity: 0;
	position: absolute;
}

.form__checkbox+label {
	position: relative;
	display: inline-block;
	border: 1px solid #000;
	width: 12px;
	height: 12px;
	margin-right: 5px;
	cursor: pointer;
}

.form__checkbox+label:before {
	content: "";
	position: absolute;
	width: 4px;
	height: 8px;
	border-bottom: 2px solid #000;
	border-right: 2px solid #000;
	top: 50%;
	left: 50%;
	margin: -5px 0 0 -2px;
	-webkit-transform: rotateZ(45deg);
	-ms-transform: rotate(45deg);
	transform: rotateZ(45deg);
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.form__checkbox:checked+label:before {
	opacity: 1;
}

.form__text {
	font-size: 16px;
	line-height: 1.4;
	color: #000;
}

.form__text a {
	color: #000;
	text-decoration: underline;
}

.form__text a:hover {
	text-decoration: none;
}

.form__button {
	width: 100%;
}

.but {
	-webkit-border-radius: 50px;
	border-radius: 50px;
	display: block;
	width: 90%;
	margin: 0 auto;
	padding: 20px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	border: 2px solid #000;
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	font-size: 20px;
	cursor: pointer;
	background: #000;
	color: #fff;
	-webkit-transition: color 0.3s, background-color 0.3s, opacity 1s,
		-webkit-transform 1s;
	transition: color 0.3s, background-color 0.3s, opacity 1s,
		-webkit-transform 1s;
	-o-transition: color 0.3s, background-color 0.3s, opacity 1s, -o-transform 1s;
	-o-transition: color 0.3s, background-color 0.3s, opacity 1s, transform 1s;
	transition: color 0.3s, background-color 0.3s, opacity 1s, transform 1s;
	transition: color 0.3s, background-color 0.3s, opacity 1s, transform 1s,
		-webkit-transform 1s;
	outline: none;
}

.but:hover {
	background: #fff;
	color: #000;
}

.but[disabled] {
	background: gray;
	border-color: gray;
	color: #fff;
	opacity: 0.5;
}

.about__caption {
	font-size: 36px;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	line-height: 1.1;
	margin-bottom: 35px;
}

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

/*==========  Mobile First  ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
	.window-wrapper:after {
		border: 6px solid #222629;
		border-top: none;
		top: 150px;
	}

	.window--right .front {
		bottom: 15px;
	}

	.window--right .back,
	.window--right .front,
	.window--right:before {
		width: 280px;
	}
}

@media (min-width: 340px) {
	.statistic__map {
		margin-left: -75px;
	}
}

@media (min-width: 400px) {
	.statistic__map {
		margin-left: -25px;
	}

	.top__decor:before {
		content: '';
		position: absolute;
		width: 556px;
		height: 556px;
		background: radial-gradient(50% 50% at 50% 50%, #FCB813 0%, rgba(252, 184, 19, 0) 100%);
		left: 100%;
		margin-left: -120px;
	}

	.top__decor:after {
		content: '';
		position: absolute;
		width: 556px;
		height: 556px;
		background: radial-gradient(50% 50% at 50% 50%, #E63E21 0%, rgba(230, 62, 33, 0) 100%);
		right: 100%;
		margin-right: -140px;
	}
}

@media (min-width: 500px) {
	.statistic__map {
		margin: auto;
	}

}


/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
	body {
		font-size: 24px;
	}

	body.overflow {
		overflow: auto;
	}

	.limit {
		max-width: 990px;
		padding: 0 15px;
	}

	.btn {
		max-width: 215px;
		font-size: 32px;
		padding: 12px 20px;
	}

	.btn.btn--main {
		padding: 20px 40px 28px 37px;
		font-size: 28px;
	}

	.btn.btn--main:hover {
		/* padding-left: 60px; */
		/* padding-right: 60px; */
	}

	.s-title {
		font-size: 100px;
		max-width: none;
	}

	.subtitle {
		font-size: 62px;
	}

	.decor-wrapper {
		position: absolute;
		width: 100%;
		height: 100%;
	}

	.decor {
		position: absolute;
	}

	.decor span {
		display: block;
		background-repeat: no-repeat;
		background-position: center;
		-webkit-background-size: contain;
		background-size: contain;
	}

	.header__logo {
		width: 206px;
		vertical-align: middle;
	}

	.header__logo .logo {
		width: 206px;
		height: 32px;
	}

	.header.show {
		height: 80px;
		padding: 0;
	}

	.header.show .nav__item {
		color: #fff;
	}

	.header.show .nav__list .btn {
		border-color: #fff;
	}

	.header.show .nav__list .btn:hover {
		border-color: #e63e21;
	}

	.header.show .nav__item:hover,
	.header.show .nav__item.active {
		color: #e63e21;
	}

	.header.show .lang {
		color: #fff;
	}

	.header.show .lang::after {
		border-top: 3px solid #fff;
	}

	.header.show .language_box .select_language:hover span {
		color: #e63e21;
	}

	.header.show .language_box .select_language span {
		color: #fff;
	}

	.header__content {
		height: 80px;
		padding-left: 25px;
	}

	.header {
		height: 80px;
		padding: 0;
	}

	.header .limit {
		max-width: 1885px;
	}

	.lang {
		font-size: 16px;
		margin-top: 10px;
		margin-left: 15px;
		margin-right: 0;
		color: #222629;
	}

	.lang::after {
		border-top: 3px solid #222629;
	}

	.language_box {
		right: 11px;
	}

	.language_box .select_language span {
		color: #222629;
	}

	.nav__btn {
		display: none;
	}

	.menu__inner {
		padding: 0;
		position: static;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
		max-width: 100%;
		height: 100%;
		width: -webkit-calc(100% - 60px);
		width: calc(100% - 60px);
		visibility: visible;
		opacity: 1;
	}

	.menu__inner.opened {
		background: none;
	}

	.nav__list {
		font-size: 0;
		display: inline-block;
		padding: 14px 0;
		padding-right: 0;
	}

	.nav__item {
		display: inline-block;
		width: auto;
		font-size: 14px;
		opacity: 1;
		margin: 0;
		padding: 0 7px;
		/*color: #222629;*/
		color: #fff;
	}

	[lang="ru"] .nav__item {
		padding: 0 6px;
		letter-spacing: -1px;
	}

	.top {
		padding-top: 175px;
	}

	.top__content {
		position: relative;
		flex-direction: row;
		justify-content: space-between;
		z-index: 3;
	}

	.top__info {
		flex-basis: 43%;
	}

	.top__gallery {
		flex-basis: 55%;
		margin: 0;
	}

	.top__label {
		margin: 0 -50px;
	}

	[lang="ru"] .top__label {
		margin: 0 -25px;
	}

	.top__label span {
		font-size: 16px;
		padding: 20px 10px;
	}

	[lang="ru"] .top__label span {
		font-size: 20px;
	}

	.top__label:before {
		width: 2500px;
		transform: translate(0, -50%) skewX(-10deg);
		right: 0;
	}

	.top__label br {
		display: none;
	}

	[lang="ru"] .top__label br {
		display: block;
	}

	.top__title {
		margin: 30px 0;
		font-size: 60px;
	}

	[lang="ru"] .top__title {
		font-size: 48px;
	}

	.top__title--red:before {
		top: 10px;
	}

	.top__title--red:after {
		top: 20px;
	}

	.top__content .btn--main {
		margin-top: 10px;
		margin-bottom: -40px;
		font-size: 24px;
	}

	.top__gallery {
		padding-top: 30px;
		padding-bottom: 0;
	}

	.top__gallery:before {
		transform: skewX(-11deg);
		left: -23px;
		transform-origin: bottom left;
		width: 120%;
	}

	.top__gallery:after {
		content: '';
		position: absolute;
		width: 120%;
		bottom: -14px;
		height: 30px;
		transform: skewX(-10deg);
		left: 14%;
		transform-origin: bottom left;
		width: 120%;
		background: #fff;
		z-index: 1;
	}

	.gallery {
		margin-left: 0;
		width: 306px;
		transform: translateX(75px) !important;
	}

	.gallery:before {
		display: none;
	}

	.gallery__item.show {
		flex-basis: 306px;
	}

	.gallery__item img {
		height: 300px;
	}

	.gallery__nav {
		gap: 30px;
		margin-top: 25px;
		width: 306px;
		margin-left: 50px;
	}

	[lang="ru"] .gallery__nav {
		margin-top: 17px;
	}

	.gallery__prev,
	.gallery__next {
		width: 44px;
		height: 17px;
	}

	.gallery__prev svg,
	.gallery__next svg {
		width: 44px;
		height: 17px;
	}

	.gallery__prev:not(.disable):hover svg,
	.gallery__next:not(.disable):hover svg {
		stroke: #e63e21
	}

	.top__img {
		width: 100px;
		height: 100px;
		left: -50px;
	}


	/*

  .top__pretitle {
    font-size: 32px;
    -webkit-animation: fade-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
    animation: fade-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
    margin-bottom: 20px;
  }

  [lang="ru"] .top__pretitle {
    font-size: 30px;
  }

  .top__pretitle p {
    display: inline;
  }

  .top__title .s-title {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 25px;
    background-color: #fff;
  }

  .top__title .s-title span {
    display: inline;
  }

  .top__title .subtitle {
    font-size: 100px;
    max-width: 87%;
    margin: -5px auto 0;
    padding-top: 10px;
    padding-bottom: 40px;
    background-color: #fff;
  }

  [lang="ru"] .top__title .subtitle {
    max-width: 100%;
  }

  .top__img-hill {
    position: absolute;
    bottom: -63px;
    left: -270px;
    transform: none;
    z-index: 1;
  }

  .top__img {
    width: 1920px;
    height: 306px;
    max-width: none;
    left: 50%;
    margin-top: -70px;
    position: relative;
    transform: translateX(-50%);
  }

  .coin {
    display: block;
    position: absolute;
    top: -100px;
    opacity: 0;
    z-index: 3;
  }

  .coin1 {
    left: 0;
  }

  .coin2 {
    left: 10%;
  }

  .coin3 {
    left: 20%;
  }

  .coin4,
  .coin9 {
    left: 30%;
  }

  .coin5 {
    left: 40%;
  }

  .coin6 {
    left: 50%;
  }

  .coin7,
  .coin10 {
    left: 60%;
  }

  .coin8 {
    left: 70%;
  }

  .coin1 {
    left: 3%;
  }

  .coin2 {
    left: 12%;
  }

  .coin3 {
    left: 24%;
  }

  .coin4,
  .coin9 {
    left: 36%;
  }

  .coin5 {
    left: 42%;
  }

  .coin6 {
    left: 54%;
  }

  .coin7,
  .coin10 {
    left: 67%;
  }

  .coin8 {
    left: 71%;
  }

  .top__img-ironman {
    position: absolute;
    bottom: 210px;
    right: -300px;
    width: 370px;
    display: block;
    z-index: 3;
  }

  .ironman-coin {
    position: absolute;
    bottom: 678px;
    right: -15px;
    z-index: 10;
    opacity: 0;
    display: block;
  }

  */

	.window-wrapper {
		margin-top: 30px;
		padding: 50px 15px 0;
	}

	.window-wrapper:after {
		display: none;
	}

	.window {
		position: absolute;
		top: 0;
		width: 380px;
		height: 100%;
	}

	.window:after {
		content: "";
		position: absolute;
		top: 250px;
		left: 0;
		width: 100%;
		height: -webkit-calc(100% - 252px);
		height: calc(100% - 252px);
		border: 12px solid #222629;
		border-top: none;
		z-index: 3;
	}

	.window:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 380px;
		max-width: 100%;
		height: 252px;
		background-image: url(../images/window-head.png);
		z-index: 2;
	}

	.window.window--left {
		left: -135px;
	}

	.window.window--middle {
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		left: 50%;
	}

	.window.window--right {
		left: auto;
		right: -135px;
	}

	.window--left .adcombo-logo,
	.window--left .back,
	.window--left .front {
		position: absolute;
		background-repeat: no-repeat;
		background-position: center;
		-webkit-background-size: contain;
		background-size: contain;
	}

	.window--left .adcombo-logo {
		background-image: url(../images/window-logo.png);
		width: 93px;
		height: 65px;
		top: 136px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		-webkit-animation: fade-in-left 1.25s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
		animation: fade-in-left 1.25s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
		-webkit-animation-delay: 0.5s;
		animation-delay: 0.5s;
		opacity: 0;
	}

	.window--left .back {
		background-image: url(../images/window-back1.png);
		width: 215px;
		height: 215px;
		bottom: 15px;
		left: 0;
		-webkit-animation: fade-in-up 1.25s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
		animation: fade-in-up 1.25s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
	}

	.window--left .front {
		background-image: url(../images/window-front1.png);
		width: 380px;
		height: 66px;
		bottom: 10px;
		left: 0;
		z-index: 1;
	}

	.window--middle .front {
		position: absolute;
		background-image: url(../images/window-front2.png);
		background-repeat: no-repeat;
		background-position: center;
		-webkit-background-size: contain;
		background-size: contain;
		width: 380px;
		height: 66px;
		bottom: 10px;
		left: 0;
		z-index: 1;
	}

	.window--right .moon {
		width: 59px;
		height: 64px;
		top: 132px;
		-webkit-animation: fade-in-right 1.25s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
		animation: fade-in-right 1.25s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
		-webkit-animation-delay: 0.5s;
		animation-delay: 0.5s;
		opacity: 0;
	}

	.window--right .back {
		background-image: url(../images/window-back2.png);
		width: 198px;
		height: 214px;
		left: auto;
		right: 10px;
		bottom: 17px;
		-webkit-animation: fade-in-up 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
		animation: fade-in-up 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
	}

	.window--right .front {
		background-image: url(../images/window-front3.png);
		width: 380px;
		max-width: 100%;
		height: 65px;
		bottom: 10px;
	}

	.arrow-wrapper {
		padding: 0 0 20px;
		margin-top: -50px;
	}

	.arrow-down {
		padding: 14px;
	}

	.about {
		padding: 130px 0 125px;
	}

	.about .decor--1 {
		top: 115px;
		left: -146px;
	}

	.about .decor--1 span {
		background-image: url(../images/person-1.png);
		width: 352px;
		height: 352px;
	}

	.about .decor--2 {
		top: 133px;
		right: -84px;
	}

	.about .decor--2 span {
		background-image: url(../images/person-2.png);
		width: 352px;
		height: 352px;
	}

	.about .btn {
		margin: 25px auto;
	}

	.about__caption {
		margin: 0 auto;
		font-size: 100px;
		margin-bottom: 60px;
		/* max-width: 660px; */
	}

	[lang="ru"] .about__caption {
		max-width: 950px;
	}

	.about__list li {
		font-size: 24px;
		line-height: 1.3;
		margin-bottom: 50px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 50px;
	}

	.about__list li:before {
		width: 42px;
		height: 41px;
		top: 10px;
		left: 55px;
	}

	.about__item-pers,
	.about__title-desc {
		width: 100%;
	}

	.about__item.active .about__title-desc {
		position: relative;
	}

	.about__item .about__title-desc::after {
		content: "";
		background-color: #000;
		height: 1px;
		width: 0;
		transition: 0.6s;
		display: block;
		margin-top: 20px;
	}

	.about__item.active .about__title-desc::after {
		width: 100%;
	}

	.about__item-pers {
		text-align: center;
	}

	.about__item-pers img {
		margin: auto;
		max-width: 293px;
		max-height: 400px;
	}

	.about__title-desc p,
	.about__title-desc {
		text-align: left;
	}

	.about__list li:nth-child(even) .about__item-pers {
		order: 1;
	}

	.about__list li:nth-child(even) .about__item-desc {
		order: 2;
	}

	.about__item-title {
		font-size: 66px;
		font-weight: 600;
		margin-bottom: 30px;
		line-height: 1.1;
	}

	[lang="ru"] .about__item-title {
		font-size: 60px;
	}

	.about__outro {
		max-width: 750px;
		margin-left: auto;
		margin-right: auto;
		transition: 0.3s;
	}

	.about__outro span {
		display: inline-block;
		position: relative;
		background: none;
		left: auto !important;
	}

	.about__outro>span {
		padding: 0 3px;
	}

	.about__outro span b {
		position: relative;
		z-index: 1;
		font-weight: 400;
		left: auto !important;
	}

	.about__outro>span::before {
		content: "";
		background-color: #fcb813;
		transition: 0.3s;
		top: 3px;
		width: 0;
		position: absolute;
		bottom: 3px;
		left: 0;
		display: inline;
	}

	.about__outro:hover span::before {
		width: 100%;
	}

	.about__outro:hover {
		color: rgba(0, 0, 0, 0.2);
		font-weight: 400;
	}

	.about__outro:hover span {
		color: #000;
	}

	.statistic {
		padding: 150px 0 90px;
	}

	.statistic__title {
		font-size: 40px;
		margin: auto;
		margin-bottom: 150px;
		max-width: 760px;
	}

	.statistic__fact {
		font-size: 40px;
		font-weight: 600;
	}

	.map__container {
		width: 100%;
		overflow-x: visible;
		padding-top: 0;
		margin-top: 0;
		height: auto;
	}

	.statistic__map-caption {
		opacity: 0;
		font-size: 23px;
	}

	.statistic__map-small:hover .statistic__map-caption {
		opacity: 1;
	}

	.statistic__map-usa .statistic__map-caption {
		left: 43%;
		top: 66%;
	}

	.statistic__map-latam .statistic__map-caption {
		left: 73%;
		top: 47%;
	}

	.statistic__map-europe .statistic__map-caption {
		top: 58%;
		left: 63%;
	}

	.statistic__map-mena .statistic__map-caption {
		top: 33%;
		left: 47%;
	}

	.statistic__map-africa .statistic__map-caption {
		top: 37%;
		left: 62%;
	}

	.statistic__map-asia .statistic__map-caption {
		top: 39%;
		left: 43%;
	}

	.statistic__map-usa {
		top: -5px;
		left: -1px;
		width: 487px;
	}

	.statistic__map-latam {
		top: 186px;
		left: 138px;
		width: 260px;
	}

	.statistic__map-asia {
		left: 363px;
		top: 9px;
		width: 508px;
	}

	.statistic__map-africa {
		top: 142px;
		left: 268px;
		width: 210px;
	}

	.statistic__map-europe {
		top: 5px;
		left: 263px;
		width: 296px;
	}

	.statistic__fact b {
		font-size: 120px;
	}

	.statistic__facts {
		flex-direction: row;
		flex-wrap: wrap;
		margin-top: -300px;
		position: relative;
		z-index: 5;
	}

	.statistic__fact:nth-child(1) {
		order: 2;
		text-align: right;
	}

	.statistic__fact:nth-child(2) {
		order: 4;
		text-align: right;
	}

	.statistic__fact:nth-child(3) {
		order: 1;
	}

	.statistic__fact:nth-child(4) {
		order: 3;
	}

	.statistic__fact:nth-child(4),
	.statistic__fact:nth-child(3),
	.statistic__fact {
		width: 50%;
		max-width: none;
		padding: 0;
		margin-bottom: 70px;
	}

	.statistic__fact:nth-child(4) span {
		max-width: 280px;
	}

	.statistic__map {
		width: 1119.996px;
		height: 551.902px;
		margin: auto;
		margin-top: -220px;
	}

	.statistic__map-usa {
		top: 86px;
		left: 0;
	}

	.statistic__map-latam {
		top: 250px;
		left: 157px;
		z-index: 10;
	}

	.statistic__map-asia {
		left: 611px;
		top: 22px;
	}

	.statistic__map-africa {
		top: 278px;
		left: 476px;
		z-index: 10;
	}

	.statistic__map-mena {
		top: 236px;
		left: 484px;
		z-index: 10;
		width: 229px;
	}

	.statistic__map-europe {
		top: 27px;
		left: 448px;
	}

	.statistic__btn {
		margin-top: -180px;
	}

	.statistic__map-small.show img {
		opacity: 0;
	}

	.how {
		padding: 130px 0 90px;
	}

	.how .s-title {
		font-size: 120px;
		margin-bottom: 35px;
	}

	.how__list-item.item--2 p,
	.how__list-item p {
		max-width: 230px;
	}

	.how .btn {
		max-width: 290px;
		margin-top: 30px;
	}

	[lang="ru"] .how .btn {
		white-space: nowrap;
	}

	.how__list {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.how__list-item {
		position: relative;
		width: 33.33%;
		padding: 0 50px;
		padding-top: 145px;
	}

	.how__list .item--3 .item__img {
		width: 152.5px;
		height: 108.363px;
	}

	.how__list-item .item__img {
		position: absolute;
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		font-size: 180px;
	}

	.how__list-item.item--3 .how__arrow-after,
	.how__list-item.item--3 .how__arrow-before {
		position: absolute;
		top: 160px;
		/*background-image: url(../images/how-arrow.png);*/
		background-position: center;
		background-repeat: no-repeat;
		-webkit-background-size: contain;
		background-size: contain;
		width: 113px;
		height: 53px;
	}

	.how__list-item.item--3 .how__arrow-before {
		left: 10px;
	}

	.how__list-item.item--3 .how__arrow-after {
		right: 15px;
		-webkit-transform: scale(-1, 1);
		-ms-transform: scale(-1, 1);
		transform: scale(-1, 1);
	}

	.how__list-item.item--3 p {
		max-width: 310px;
		margin: 0 auto;
	}

	.how__list-item .item__caption {
		font-size: 40px;
		letter-spacing: 0.4px;
		margin-bottom: 20px;
	}

	[lang="ru"] .how__list-item .item__caption {
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		display: table;
	}

	.how__list-item.item--2 {
		-webkit-box-ordinal-group: 2;
		-webkit-order: 1;
		-ms-flex-order: 1;
		order: 1;
	}

	.how__list-item.item--3 .item__caption {
		margin: 0 0 20px;
	}

	.how__list-item .item__caption b {
		font-size: 45px;
		margin-top: -21px;
		margin-bottom: -53px;
		opacity: 0;
	}

	.how__list-item:hover .item__caption b {
		opacity: 1;
	}

	.how__list-item.item--1::after {
		top: 178px;
		right: -57px;
		width: 132px;
		height: 32px;
		background: url(../images/how-arrow-desktop2.svg) no-repeat;
		transform: scaleX(-1);
	}

	.how__list-item.item--2::after {
		top: 178px;
		left: -74px;
		width: 132px;
		height: 32px;
		background: url(../images/how-arrow-desktop2.svg) no-repeat center/contain;
	}

	.cod {
		padding: 130px 0 90px;
	}

	.cod__intro {
		max-width: 700px;
		margin: 0 auto 30px;
	}

	.cod .s-title,
	.cod-why .subtitle {
		margin-bottom: 50px;
		font-size: 100px;
		font-weight: 600;
	}

	.cod-why .subtitle span {
		display: block;
	}

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

	.cod__list-item {
		width: 33%;
	}

	.cod__list-item .item__img {
		min-height: 145px;
		margin-bottom: 30px;
	}

	.cod__list-item p {
		padding: 0 35px;
	}

	.cod__list-item.item--1 .item__img {
		width: 133.33px;
		height: 167.996px;
	}

	.cod__list-item.item--2 .item__img {
		width: 146.663px;
		height: 167.996px;
	}

	.cod__list-item.item--3 .item__img {
		width: 133.33px;
		height: 173.329px;
	}

	.cod__list-item.item--3 p {
		max-width: 100%;
	}

	.cod p span {
		top: -45px;

		font-size: 64px;

		opacity: 0;
	}

	.cod__list-item:hover p span {
		opacity: 1;
	}

	.cod__list-item+.cod__list-item:before {
		top: 80px;
		left: -5%;
		transform: none;
		width: 59px;
		height: 25px;
	}

	.cod-why__list {
		padding: 80px 0;
		max-width: 960px;
		margin: 0 auto;
	}

	.cod-why__list-item {
		text-align: left;
		padding-left: 95px;
		margin-bottom: 70px;
		min-height: 130px;

		-webkit-transition: 0.5s ease all;
		-o-transition: 0.5s ease all;
		transition: 0.5s ease all;
	}

	.cod-why__list-item .item__img {
		width: 136px;
		height: 212px;
		position: absolute;
		left: 40px;
		top: 80px;
	}

	.cod-why__list-item .item__img img {
		transition: 0.2s;
	}

	.cod-why__list-item .item__img:hover img:nth-child(2) {
		opacity: 0;
	}

	.cod-why__list-item .item__img img:nth-child(3),
	.cod-why__list-item .item__img img:nth-child(4),
	.cod-why__list-item .item__img img:nth-child(5) {
		opacity: 1;
	}

	.cod-why__list-item .item__img img:nth-child(3) {
		width: 47.444px;
		height: 46.965px;
		top: 0;
		right: 0;
	}

	.cod-why__list-item .item__img img:nth-child(4) {
		width: 80.881px;
		height: 71.774px;
		bottom: 15px;
		left: 15px;
	}

	.cod-why__list-item .item__img img:nth-child(5) {
		width: 20.937px;
		height: 28.247px;
		left: 0;
		bottom: 0;
	}

	.cod-why__list-item .item__img:hover img:nth-child(3) {
		transform: translate(-8px, -8px);
	}

	.cod-why__list-item .item__img:hover img:nth-child(4) {
		transform: translate(30px, -8px);
	}

	.cod-why__list-item .item__img:hover img:nth-child(5) {
		transform: translate(-17px, 10px);
	}

	.cod-why__list-item:last-child {
		margin-bottom: 0;
	}

	.cod-why__list-item {
		padding-left: 270px;
	}

	.cod-why__list-item p {
		text-align: left;
	}

	.cod-why__list-item .item__caption {
		position: relative;
		font-size: 66px;
		font-weight: 600;
		margin-bottom: 20px;
		transition: 0.3s;
		line-height: 110%;
	}

	.cod-why__list-item.active .item__caption {
		color: #e33e21;
	}

	.cod-why__list-item::after {
		content: "";
		background-color: #000;
		height: 1px;
		width: 0;
		transition: 0.6s;
		display: block;
		margin-top: 20px;
	}

	.lightning.fixed {
		position: fixed;
		top: 165px;

		left: calc(50% - 440px);
	}

	.lightning.hide {
		opacity: 0;
	}

	.cod-why__list-item.active::after {
		width: 100%;
	}

	.profit {
		position: relative;
		padding: 115px 0 140px;
	}

	.profit .s-title {
		text-align: center;
		line-height: 1.25;
	}

	.top-offers-block {
		padding: 130px 0;
	}

	.profit .decor--5,
	.profit .decor--6,
	.profit .decor--7,
	.profit .decor--8,
	.profit .decor--9,
	.profit .decor--10,
	.profit .decor--11 {
		z-index: 1;
	}

	.profit .decor--5 span,
	.profit .decor--6 span,
	.profit .decor--7 span,
	.profit .decor--8 span,
	.profit .decor--9 span,
	.profit .decor--10 span,
	.profit .decor--11 span {
		background-image: url(../images/profit-star.svg);
		width: 29px;
		height: 31px;
	}

	.profit .decor--5 {
		bottom: 594px;
		left: -30px;
	}

	.profit .decor--6 {
		bottom: 352px;
		left: -227px;
	}

	.profit .decor--7 {
		bottom: 259px;
		left: -15px;
	}

	.profit .decor--8 {
		bottom: 909px;
		right: -236px;
	}

	.profit .decor--9 {
		bottom: 668px;
		right: -25px;
	}

	.profit .decor--10 {
		bottom: 444px;
		right: -242px;
	}

	.profit .decor--11 {
		bottom: 325px;
		right: 31px;
	}

	.profit__content,
	.top-offers {
		position: relative;
		z-index: 3;
	}

	.profit__step-list {
		padding: 65px 60px 0;

		margin: 0 auto;
		position: relative;
	}

	.profit__step-list::before {
		content: "";
		position: absolute;
		left: 40px;
		width: 287.99px;
		height: 2250px;
		top: 110px;
		background: url(../images/steps.svg) no-repeat top center/contain;
	}

	[lang="ru"] .profit__step-list::before {
		height: 2567px;
	}

	.profit__step {
		position: relative;
		padding: 90px 0;
		margin-bottom: 0;
		font-size: 20px;
	}

	.profit__step.step--1 {
		padding-top: 0;
	}

	.profit__step.step--3 {
		padding-top: 83px;
		padding-bottom: 123px;
	}

	.profit__step.step--2,
	.profit__step.step--4 {
		padding-top: 110px;
		padding-bottom: 98px;
	}

	[lang="ru"] .profit__step.step--2,
	[lang="ru"] .profit__step.step--4 {
		padding-top: 120px;
	}

	.profit__step .step__img {
		position: absolute;
	}

	.profit__step:nth-child(odd) {
		padding-left: 295px;
	}

	.profit__step:nth-child(even) {
		padding-right: 260px;
		padding-left: 12px;
	}

	[lang="ru"] .profit__step:nth-child(even) {
		padding-right: 240px;
	}

	.profit__step.step--4 {
		padding-top: 140px;
		padding-bottom: 145px;
		padding-right: 250px;
	}

	.step__img {
		max-width: 316px;
		max-height: 430px;
	}

	.step--1 .step__img {
		top: -32px;
		left: -40px;
	}

	.step--1 .step__after {
		position: absolute;
		top: 140px;
		right: 52px;
	}

	.step--2 .step__img {
		top: 56px;
		right: -70px;
	}

	.step--3 .step__img {
		top: 35px;
		left: -21px;
	}

	.step--4 .step__img {
		top: -7px;
		right: -37px;
	}

	.step--5 .step__img {
		top: 38px;
		left: -22px;
	}

	.profit__step .btn {
		max-width: 370px;
		margin: 30px 0 25px;
	}

	.step__caption {
		font-size: 62px;
		margin-bottom: 30px;
		position: relative;
		max-width: 590px;
	}

	.step__caption::before {
		content: "";
		background: #fcb813;
		width: 12px;
		height: 12px;
		border-radius: 50%;
		position: absolute;
		top: 38px;
		left: -35px;
	}

	.profit__step p {
		margin-top: 20px;
	}

	.profit__step .tags {
		max-width: 460px;
	}

	.profit__step .tags .tag span {
		font-size: 20px;
		padding: 6px 20px;
	}

	.tip-footnote {
		font-size: 18px;
		margin-top: 20px;
		padding-left: 100px;
	}

	.payment-list li {
		margin-bottom: 10px;
		height: 64px;
		border-radius: 8px;
		margin-right: 10px;
	}

	.payment-list li:nth-child(1) img {
		width: 134.005px;
		height: 26px;
	}

	.payment-list li:nth-child(2) img {
		width: 131.132px;
		height: 30px;
	}

	.payment-list li:nth-child(3) img {
		width: 115.454px;
		height: 28px;
	}

	.payment-list li:nth-child(4) img {
		width: 102.206px;
		height: 28px;
	}

	.payment-list li:nth-child(5) img {
		width: 136.092px;
		height: 44px;
	}

	.payment-list li:nth-child(6) img {
		width: 145.674px;
		height: 28px;
	}

	.payment-list li:nth-child(7) img {
		width: 114.329px;
		height: 32px;
	}

	.payment-list li:nth-child(8) img {
		width: 78.937px;
		height: 40px;
	}

	.top-offers {
		padding: 10px 0 0;
		text-align: center;
	}

	.top-offers>p {
		max-width: 800px;
		margin: 0 auto 40px;
	}

	.top-offers .subtitle {
		font-size: 100px;
		line-height: 1.1;
		margin-bottom: 80px;

		margin-bottom: 30px;
	}

	.offer__link {
		padding: 40px;
		padding-bottom: 50px;
	}

	.offer__link:hover {
		border-radius: 32px;
		background-color: #fff;
		box-shadow: 0 0 50px 0px #2c93b21f;
	}

	.offer__link:hover .offer__caption {
		color: #e33e21;
	}

	.offers__list {
		padding: 60px 0 0;
		text-align: center;
		display: flex;
		align-items: stretch;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.offers__product-price {
		font-size: 40px;
		margin: 18px 0;
	}

	.offers__product-name {
		font-size: 24px;
		margin-bottom: 10px;
		line-height: 1.1;
	}

	.offers__product-area {
		font-size: 15px;
		padding: 8px 18px 12px;
		line-height: 1.1;
	}

	.offer__link {
		max-width: none;
	}

	.offers__product-img img {
		height: 140px;
		width: 186px;
	}

	.offer__link .offer__caption {
		font-size: 66px;
		margin-bottom: 50px;
	}

	.offer__link .offer__reward {
		font-size: 24px;
		margin-bottom: 10px;
	}

	.offers__list-item p {
		font-size: 16px;
		margin-bottom: 5px;
	}

	.contacts {
		padding: 140px 0 60px;
	}

	.contacts .s-title {
		margin: 120px 0;
		line-height: 1.25;
		font-size: 100px;
	}

	[lang="ru"] .contacts .s-title {
		font-size: 90px;
	}

	.contacts .btn {
		font-size: 30px;
		padding: 20px 48px 25px;
		line-height: 1.1;
		max-width: 300px;
		font-weight: bold;
		text-transform: none;
	}

	.contacts__top .pretitle {
		max-width: 730px;
		margin: 0 auto;
	}

	.contacts__bottom {
		padding-top: 320px;
		padding-bottom: 0;
	}

	.contacts__bottom .subtitle {
		max-width: 100%;
		margin-bottom: 5px;
		font-size: 66px;
	}

	.contacts__bottom .mail-link {
		margin-bottom: 200px;
	}

	.subscribe__list {
		max-width: 720px;
		margin: 0 auto;
		padding: 80px 0 0;
	}

	.subscribe__list li a {
		font-size: 16px;
	}

	.subscribe__list li {
		width: auto;
	}

	.subscribe__list li a img {
		width: 180px;
		height: 180px;
	}

	.footer .footer__link {
		font-size: 16px;
	}

	.footer .copyright {
		font-size: 16px;
	}

	.footer .copyright p {
		display: inline;
		font-size: 16px;
	}

	.modal {
		width: 500px;
		height: -webkit-calc(100% - 60px);
		height: calc(100% - 60px);
		max-height: -webkit-calc(100% - 60px);
		max-height: calc(100% - 60px);
	}

	.form__button {
		font-size: 20px;
	}

	.form__table {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.form__left,
	.form__right {
		margin: 0;
		width: 50%;
	}

	.form__left {
		padding-right: 15px;
	}

	.form__right {
		padding-left: 15px;
	}

	[data-lang-status="ar"] .header__content {
		direction: rtl;
	}

	[data-lang-status="ar"] .nav__btn {
		right: auto;
		left: 0;
	}

	[data-lang-status="ar"] .lang {
		margin-left: 0;
		margin-right: 15px;
	}

	[data-lang-status="ar"] .language_box {
		right: auto;
		left: 0;
	}

	[data-lang-status="ar"] .header__menu {
		text-align: left;
	}

	[data-lang-status="ar"] .top__title .subtitle {
		font-size: 62px;
	}

	[data-lang-status="ar"] .about .decor--1 {
		left: -136px;
	}

	[data-lang-status="ar"] .about__list {
		max-width: 570px;
	}

	[data-lang-status="ar"] .about__list li {
		padding-right: 80px;
	}

	[data-lang-status="ar"] .cod__list-item+.cod__list-item:before {
		left: auto;
		right: -30px;
		-webkit-transform: scale(-1, 1);
		-ms-transform: scale(-1, 1);
		transform: scale(-1, 1);
	}

	[data-lang-status="ar"] .cod-why__list-item:nth-child(odd) {
		padding-left: 0;
		padding-right: 295px;
	}

	[data-lang-status="ar"] .cod-why__list-item {
		text-align: right;
		padding-left: 0;
		padding-right: 175px;
	}

	[data-lang-status="ar"] .cod-why__list-item p {
		text-align: right;
	}

	[data-lang-status="ar"] .cod-why__list-item .item__caption:before {
		left: auto;
		right: -137px;
	}

	[data-lang-status="ar"] .profit__step .step__img {
		-webkit-transform: scale(-1, 1);
		-ms-transform: scale(-1, 1);
		transform: scale(-1, 1);
	}

	[data-lang-status="ar"] .profit__step:nth-child(odd) {
		padding-left: 0;
		padding-right: 295px;
	}

	[data-lang-status="ar"] .profit__step:nth-child(even) {
		padding-right: 0;
		padding-left: 295px;
	}

	[data-lang-status="ar"] .step--1 .step__after {
		right: auto;
		left: 52px;
		-webkit-transform: scale(-1, 1);
		-ms-transform: scale(-1, 1);
		transform: scale(-1, 1);
	}

	[data-lang-status="ar"] .step--1 .step__img {
		left: auto;
		right: -140px;
	}

	[data-lang-status="ar"] .step--2 .step__img {
		right: auto;
		left: -153px;
	}

	[data-lang-status="ar"] .step--3 .step__img {
		left: auto;
		right: -31px;
	}

	[data-lang-status="ar"] .step--4 .step__img {
		right: auto;
		left: -77px;
		top: -57px;
	}

	[data-lang-status="ar"] .step--5 .step__img {
		left: auto;
		right: -22px;
	}

	[data-lang-status="ar"] .profit__step .tags .tag {
		width: auto;
	}

	[data-lang-status="ar"] .form__right {
		padding-left: 0;
		padding-right: 15px;
	}

	[data-lang-status="ar"] .form__left {
		padding-right: 0;
		padding-left: 15px;
	}

	.offers__product-left,
	.offers__product-right {
		width: auto;
		padding: 0 13px;
		width: 25%;
		margin-bottom: 0;
	}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 992px) {
	.s-title {
		font-size: 120px;
		line-height: 110%;
	}

	.subtitle {
		font-size: 72px;
	}

	.header .nav__list {
		padding-right: 20px;
	}

	[lang="ru"] .header .nav__list {
		padding-right: 0;
	}

	.nav__list .btn {
		display: none;
	}

	.window.window--left {
		left: -45px;
	}

	.window.window--right {
		right: -45px;
	}

	.about .decor--1 {
		left: -146px;
	}

	.profit .decor--1 {
		bottom: 150px;
		right: -137px;
		z-index: 1;
	}

	.profit .decor--1 span {
		background-image: url(../images/profit-moon.png);
		width: 85px;
		height: 93px;
	}

	.profit .decor--2,
	.profit .decor--3,
	.profit .decor--4 {
		z-index: 1;
	}

	.profit .decor--2 span,
	.profit .decor--3 span,
	.profit .decor--4 span {
		background-image: url(../images/profit-star.svg);
		width: 52px;
		height: 55px;
	}

	.profit .decor--2 {
		bottom: 122px;
		left: -168px;
	}

	.profit .decor--3 {
		bottom: 619px;
		left: -273px;
	}

	.profit .decor--4 {
		bottom: 574px;
		right: -208px;
	}

	.contacts__bottom .mail-link {
		font-size: 100px;
		line-height: 1.1;
	}
}

@media (max-width: 991px) {
	.form::-webkit-scrollbar {
		-webkit-appearance: none;
	}

	.form::-webkit-scrollbar:vertical {
		width: 4px;
	}

	.form::-webkit-scrollbar-thumb {
		background-color: rgba(0, 0, 0, 0.5);
		-webkit-border-radius: 4px;
		-webkit-border-radius-border-radius: 4px;
	}
}

@media (max-height: 460px) {
	.nav__list {
		position: relative;
		height: calc(100vh - 100px);
		overflow: auto;
		overscroll-behavior-block: contain;
	}
}

@media (min-width: 1200px) {
	.limit {
		max-width: 1200px;
		padding: 0 15px;
	}

	[lang="ru"] .nav__list .btn {
		padding: 15px;
		display: inline-table;
		white-space: nowrap;
	}

	.nav__item {
		font-size: 16px;
		padding: 0 10px;
	}

	[lang="ru"] .nav__item {
		font-size: 14px;
	}

	.top__info {
		flex-basis: 45%;
	}

	.top__label {
		margin: 0 -22px;
	}

	.top__label span {
		font-size: 18px;
	}

	[lang="ru"] .top__label span {
		font-size: 18px;
	}

	[lang="ru"] .top__label br {
		display: none;
	}

	.top__title {
		font-size: 76px;
	}

	[lang="ru"] .top__title {
		font-size: 60px;
	}

	.top__title--white,
	.top__title--red {
		margin-top: 20px;
	}

	.top__title--red:before {
		top: 30px;
	}

	.top__title--red:after {
		top: 60px;
	}

	.top__content .btn--main {
		margin-top: 30px;
		font-size: 30px;
		transform: translateX(-35px);
	}

	.top__gallery {
		flex-basis: 53%;
	}

	.top__decor:before {
		width: 672px;
		height: 672px;
		margin-left: -268px;
	}

	.top__decor:after {
		width: 672px;
		height: 672px;
		margin-right: -172px;
	}

	.gallery {
		transform: translateX(80px) !important;
	}

	.gallery__item {
		flex-basis: 25px;
	}

	.gallery__item.show {
		flex-basis: 366px;
	}

	.gallery__item img {
		height: 360px;
	}

	.gallery__nav {
		margin-top: 40px;
		width: 366px;
	}

	[lang="ru"] .gallery__nav {
		margin-top: 15px;
	}

	.top__img {
		width: 132px;
		height: 132px;
		left: -66px;
	}

	[lang="ru"] .about__item-title {
		font-size: 46px;
	}

	.about__caption {
		font-size: 120px;
	}

	.profit__step {
		font-size: 24px;
		padding: 78px 0;
	}

	.profit__step.step--3 {
		padding-bottom: 210px;
	}

	[lang="ru"] .profit__step.step--3 {
		padding-bottom: 130px;
	}

	.profit__step.step--4 {
		padding-top: 72px;
		padding-bottom: 110px;
	}

	[lang="ru"] .profit__step.step--4 {
		padding-bottom: 180px;
	}

	[lang="ru"] .profit__step-list::before {
		height: 2450px;
	}

	[lang="ru"] .profit__step:nth-child(even) {
		padding-right: 270px;
	}

	.step__caption {
		font-size: 57px;
	}

	[lang="ru"] .step__caption {
		max-width: 100%;
	}

	.offers__product-left,
	.offers__product-right {
		width: auto;
		padding: 0 13px;
		width: 50%;
		margin-bottom: 0;
	}

	.subscribe__list li a img {
		width: 230px;
		height: 230px;
	}

	.lightning.fixed {
		position: fixed;
		top: 141px;
		left: calc(50% - 441px);
	}
}

@media (min-width: 1400px) {
	.nav__list .btn {
		margin-top: 0;
		margin-left: 10px;
		display: inline-block;
		color: #fff;
		border-color: #fff;
	}

	[lang="ru"] .nav__item {
		font-size: 16px;
		letter-spacing: -0.5px;
	}

	[lang="ru"] .nav__list .btn {
		font-size: 16px;
	}

	.top .limit {
		max-width: 1400px;
	}

	.top__info {
		flex-basis: 47%;
	}

	.top__label span {
		font-size: 26px;
		font-weight: 600;
		letter-spacing: -2px;
		padding: 17px 10px 16px 57px;
	}

	[lang="ru"] .top__label span {
		font-size: 20px;
	}

	.top__title {
		font-size: 75px;
		padding-right: 65px;
	}

	[lang="ru"] .top__title {
		font-size: 74px;
	}

	.gallery {
		width: 386px;
		transform: translateX(80px) !important;
	}

	.gallery__item {
		flex-basis: 27px;
	}

	.gallery__item.show {
		flex-basis: 386px;
	}

	.gallery__item img {
		height: 380px;
	}

	.gallery__nav {
		gap: 40px;
		margin-top: 55px;
		width: 386px;
		margin-left: 60px;
	}

	[lang="ru"] .gallery__nav {
		margin-top: 24px;
	}

	.gallery__prev,
	.gallery__next,
	.gallery__prev svg,
	.gallery__next svg {
		width: 58px;
		height: 22px;
	}
}

@media (min-width: 1500px) {
	[lang="ru"] .nav__item {
		letter-spacing: 0;
	}

	.gallery__item.show {
		flex-basis: 428px;
	}

	.gallery__item img {
		height: 420px;
	}

	.gallery__nav {
		margin-top: 37px;
		width: 428px;
		margin-left: 55px;
	}

	[lang="ru"] .gallery__nav {
		margin-bottom: 24px;
	}

	.statistic {
		padding-top: 210px;
	}

	.top__img {
		width: 176px;
		height: 176px;
		left: -118px;
	}

	.top__decor:before {
		width: 890px;
		height: 890px;
		margin-left: -580px;
	}

	.top__decor:after {
		width: 890px;
		height: 890px;
		margin-right: -230px;
	}
}

@media (min-width: 1650px) {
	.top__label span {
		font-size: 40px;
	}

	.top .limit {
		max-width: 1650px;
	}

	.top__info {
		flex-basis: 45%;
	}

	.gallery {
		gap: 9px;
	}

	.gallery__item {
		flex-basis: 30px;
	}
		.gallery__nav {
			margin-top: 50px;
		}
	.top__title {
		font-size: 100px;
	}

	.top__title--white,
	.top__title--red {
		margin-top: 30px;
	}

	[lang="es"] .top__title--white,
	[lang="es"] .top__title--red {
		margin-top: -5px;
	}

	.top__gallery:after {
		bottom: -20px;
	}


}

@media (min-width: 1900px) {
	.top .limit {
		max-width: 1900px;
	}

	.top__info {
		flex-basis: 63%;
	}

	[lang="ru"] .top__label span {
		font-size: 26px;
	}

	.top__title {
		font-size: 110px;
		/* margin-top: 45px; */
	}

	[lang="ru"] .top__title {
		font-size: 90px;
	}

	.top__content .btn--main {
		margin-top: 65px;
	}

	[lang="es"] .top__content .btn--main {
		margin-top: 35px;
	}

	.top__gallery {
		padding: 40px;
	}

	.gallery {
		gap: 10px;
	}

	.gallery__item {
		flex-basis: 22px;
	}

	.gallery__item.show {
		flex-basis: 480px;
	}

	.gallery__item img {
		height: 470px;
	}

	.gallery__nav {
		margin-top: 50px;
		width: 480px;
		margin-left: 27px;
	}

	[lang="ru"] .gallery__nav {
		margin-top: 34px;
		margin-bottom: 0;
	}
}

@media (min-width: 2200px) {
	.top__gallery:before {
		width: 140%;
	}
}

.top__gallery-text {
	position: relative;
	z-index: 2;
}

@media (min-width: 992px) {
	.top__gallery-text {
		/* margin-bottom: 2em; */
		font-size: 14px;
	}

		.gallery__nav {
			width: auto;
			flex-wrap: nowrap;
			align-items: center;
			margin-bottom: 2em;
		}
}

@media (min-width: 1300px) {
	.top__gallery-text {
		font-size: 16px;
	}
}

[data-href] {
	cursor: pointer;
}
