@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;600;700&display=swap");
* {
	padding: 0px;
	margin: 0px;
	border: 0px;
}

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

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

aside,
nav,
footer,
header,
section {
	display: block;
}

html,
body {
	height: 100%;
	min-width: 320px;
}

body {
	line-height: 1;
	font-family: "Open Sans";
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

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

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
}

body {
	font-size: 16px;
	font-weight: 600;
}
body._lock {
	overflow: hidden;
}

.wrapper {
	width: 100%;
	min-height: 100%;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
._container {
	max-width: 1206px;
	margin: 0 auto;
	padding: 0 33px;
}

.title {
	font-weight: 700;
	font-size: 36px;
	line-height: 111.5%;
	color: #000000;
	text-align: center;
}
@media (max-width: 992px) {
	.title {
		font-size: 26px;
	}
}
@media (max-width: 360px) {
	.title {
		font-size: 23px;
	}
}

.mb {
	margin: 0px 0px 135px 0px;
}
@media (max-width: 768px) {
	.mb {
		margin: 0px 0px 70px 0px;
	}
}

.btn {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 10px 30px;
	background: #FF6163;
	min-height: 66px;
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	border-radius: 16px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 280px;
	text-align: center;
}
@media (min-width: 992px) {
	.btn:hover {
		background: #CF6CF7;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.btn_fixed {
	position: fixed;
	z-index: 5;
	bottom: 50px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	-webkit-box-shadow: 0px 20px 29px -8px rgba(0, 0, 0, 0.38);
	box-shadow: 0px 20px 29px -8px rgba(0, 0, 0, 0.38);
}

.row:after {
	display: block;
	content: "";
	clear: both;
}

.rub:after {
	content: "₽";
}

ol.counter {
	list-style-type: none;
	counter-reset: item;
}
ol.counter li {
	position: relative;
	padding: 0px 0px 0px 45px;
}
ol.counter li:before {
	counter-increment: item;
	content: counter(item);
	position: absolute;
	left: 0;
	top: 0;
	color: #818181;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	line-height: 26px;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	border: 1px solid #4274bb;
}

.ellipsis {
	display: block;
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}

.es {
	overflow: hidden;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}

.table {
	display: table;
	font-size: 0;
	width: 100%;
}

.trow {
	display: table-row;
}

.cell {
	display: table-cell;
}
.cell.full {
	width: 100%;
}

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

body.ie ._ibg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.ie ._ibg img {
	width: 0;
	height: 0;
	opacity: 0;
	visibility: hidden;
}

.video {
	position: relative;
	overflow: hidden;
	height: 0;
	padding-bottom: 56.25%;
}
.video video,
.video iframe,
.video object,
.video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	-webkit-transform: translateX(-50%) translateY(-50%);
	    -ms-transform: translateX(-50%) translateY(-50%);
	        transform: translateX(-50%) translateY(-50%);
	background-size: cover;
}

.moretext {
	overflow: hidden;
}

.moretext__more {
	cursor: pointer;
}
.moretext__more span {
	font-style: normal;
}
.moretext__more span:first-child {
	display: block;
}
.moretext__more span:last-child {
	display: none;
}
.moretext__more.active span {
	font-style: normal;
}
.moretext__more.active span:first-child {
	display: none;
}
.moretext__more.active span:last-child {
	display: block;
}

#map {
	background: url("../img/icons/loading.gif") center/50px no-repeat;
}

.slick-slider {
	position: relative;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-slider .slick-list {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.slick-slider .slick-track {
	position: relative;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.slick-slider .slick-slide {
	position: relative;
}
.tab__item {
	display: none;
}
.tab__item.active {
	display: block;
}

._tabs-item {
	cursor: pointer;
}

._tabs-block {
	display: none;
}
._tabs-block._active {
	display: block;
}

.spollers-block__body {
	display: none;
}

.mirror {
	-webkit-transform: scale(-1, 1);
	    -ms-transform: scale(-1, 1);
	        transform: scale(-1, 1);
}

.nicescroll-rails {
	z-index: 1000 !important;
}

.gm-style-iw-t {
	opacity: 0;
}

.baloon {
	opacity: 1;
	right: -7px !important;
	bottom: 80px !important;
}
.baloon button {
	display: none !important;
}
.baloon:after {
	display: none !important;
}

.baloon-style {
	display: none;
}

.baloon-content.gm-style-iw {
	opacity: 1;
	border-radius: 0px !important;
	max-width: 300px !important;
	padding: 0 !important;
	left: 0 !important;
	width: 100% !important;
	overflow: visible !important;
}
.baloon-content.gm-style-iw > .gm-style-iw-d {
	overflow: hidden !important;
	max-width: none !important;
}
.baloon-content.gm-style-iw:after {
	display: none !important;
}

.baloon-close {
	top: 18px !important;
}

._custom-scroll {
	position: fixed;
	right: 0;
	top: 0;
	width: 3px;
	height: 100%;
	z-index: 1000;
}
._custom-scroll__line {
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 3px 0 0 3px;
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
}

.simple-rating {
	position: relative;
	font-size: 20px;
	display: inline-block;
}

.simple-rating::before {
	content: "★★★★★";
	display: block;
}

.simple-rating__items {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
	overflow: hidden;
}

.simple-rating__item {
	position: absolute;
	width: 0%;
	height: 0%;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
}

.simple-rating__label {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 20%;
	        flex: 0 0 20%;
	height: 100%;
	cursor: pointer;
	color: #d2d2d2;
}

.simple-rating__label::before {
	content: "★";
	display: block;
	-webkit-transition: color 0.3s ease 0s;
	-o-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}

.simple-rating__label:hover,
.simple-rating__label:hover ~ .simple-rating__label,
.simple-rating__label:checked ~ .simple-rating__label:hover {
	color: #ffd300;
}

.simple-rating__item:checked,
.simple-rating__item:checked ~ .simple-rating__label {
	color: #ffd300;
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
	background-color: rgba(0, 0, 0, 0.45);
	border-radius: 2px;
	color: #999;
	cursor: pointer;
	display: block;
	margin-top: -10px;
	position: absolute;
	display: block;
	width: 20px;
	height: 36px;
	top: 50%;
	-webkit-transform: translate(0px, -50%);
	    -ms-transform: translate(0px, -50%);
	        transform: translate(0px, -50%);
	z-index: 1080;
}

.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
	pointer-events: none;
	opacity: 0.5;
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
	color: #fff;
}

.lg-actions .lg-next {
	right: 20px;
	background: url("../img/icons/p-right.svg") 0 0/100% no-repeat;
}

.lg-actions .lg-prev {
	left: 20px;
	background: url("../img/icons/p-left.svg") 0 0/100% no-repeat;
}

@-webkit-keyframes lg-right-end {
	0% {
		left: 0;
	}
	50% {
		left: -30px;
	}
	100% {
		left: 0;
	}
}

@keyframes lg-right-end {
	0% {
		left: 0;
	}
	50% {
		left: -30px;
	}
	100% {
		left: 0;
	}
}
@-webkit-keyframes lg-left-end {
	0% {
		left: 0;
	}
	50% {
		left: 30px;
	}
	100% {
		left: 0;
	}
}
@keyframes lg-left-end {
	0% {
		left: 0;
	}
	50% {
		left: 30px;
	}
	100% {
		left: 0;
	}
}
.lg-outer.lg-right-end .lg-object {
	-webkit-animation: lg-right-end 0.3s;
	animation: lg-right-end 0.3s;
	position: relative;
}

.lg-outer.lg-left-end .lg-object {
	-webkit-animation: lg-left-end 0.3s;
	animation: lg-left-end 0.3s;
	position: relative;
}

.lg-toolbar {
	z-index: 1082;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.45);
}

.lg-toolbar .lg-icon {
	color: #999;
	cursor: pointer;
	float: right;
	font-size: 24px;
	height: 47px;
	line-height: 27px;
	padding: 10px 0;
	text-align: center;
	width: 50px;
	text-decoration: none !important;
	outline: medium none;
	-webkit-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

.lg-toolbar .lg-icon:hover {
	color: #fff;
}

.lg-toolbar .lg-close {
	background: url("../img/icons/close.svg") center no-repeat;
}

.lg-toolbar .lg-download {
	display: none;
}

.lg-sub-html {
	background-color: rgba(0, 0, 0, 0.45);
	bottom: 0;
	color: #eee;
	font-size: 16px;
	left: 0;
	padding: 10px 40px;
	position: fixed;
	right: 0;
	text-align: center;
	z-index: 1080;
}

.lg-sub-html h4 {
	margin: 0;
	font-size: 13px;
	font-weight: bold;
}

.lg-sub-html p {
	font-size: 12px;
	margin: 5px 0 0;
}

#lg-counter {
	color: #999;
	display: inline-block;
	font-size: 16px;
	padding-left: 20px;
	padding-top: 12px;
	vertical-align: middle;
}

.lg-toolbar,
.lg-prev,
.lg-next {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
	-o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
	-webkit-transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
	transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
	transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-hide-items .lg-prev {
	opacity: 0;
	-webkit-transform: translate3d(-10px, 0, 0);
	transform: translate3d(-10px, 0, 0);
}

.lg-hide-items .lg-next {
	opacity: 0;
	-webkit-transform: translate3d(10px, 0, 0);
	transform: translate3d(10px, 0, 0);
}

.lg-hide-items .lg-toolbar {
	opacity: 0;
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
	-webkit-transform: scale3d(0.5, 0.5, 0.5);
	transform: scale3d(0.5, 0.5, 0.5);
	opacity: 0;
	-webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
	-o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
	-webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
	transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
	-o-transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
	transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
	transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	opacity: 1;
}

.lg-outer .lg-thumb-outer {
	background-color: #0d0a0a;
	bottom: 0;
	position: absolute;
	width: 100%;
	z-index: 1080;
	max-height: 350px;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: -o-grabbing;
	cursor: -ms-grabbing;
	cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
	-webkit-transition-duration: 0s !important;
	-o-transition-duration: 0s !important;
	   transition-duration: 0s !important;
}

.lg-outer.lg-thumb-open .lg-thumb-outer {
	-webkit-transform: translate3d(0, 0%, 0);
	transform: translate3d(0, 0%, 0);
}

.lg-outer .lg-thumb {
	padding: 10px 0;
	height: 100%;
	margin-bottom: -5px;
}

.lg-outer .lg-thumb-item {
	border-radius: 5px;
	cursor: pointer;
	float: left;
	overflow: hidden;
	height: 100%;
	border: 2px solid #fff;
	border-radius: 4px;
	margin-bottom: 5px;
}

@media (min-width: 1025px) {
	.lg-outer .lg-thumb-item {
		-webkit-transition: border-color 0.25s ease;
		-o-transition: border-color 0.25s ease;
		transition: border-color 0.25s ease;
	}
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
	border-color: #a90707;
}

.lg-outer .lg-thumb-item img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.lg-outer.lg-has-thumb .lg-item {
	padding-bottom: 120px;
}

.lg-outer.lg-can-toggle .lg-item {
	padding-bottom: 0;
}

.lg-outer.lg-pull-caption-up .lg-sub-html {
	-webkit-transition: bottom 0.25s ease;
	-o-transition: bottom 0.25s ease;
	transition: bottom 0.25s ease;
}

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
	bottom: 100px;
}

.lg-outer .lg-toggle-thumb {
	background-color: #0d0a0a;
	border-radius: 2px 2px 0 0;
	color: #999;
	cursor: pointer;
	font-size: 24px;
	height: 39px;
	line-height: 27px;
	padding: 5px 0;
	position: absolute;
	right: 20px;
	text-align: center;
	top: -39px;
	width: 50px;
}

.lg-outer .lg-toggle-thumb:after {
	content: "";
}

.lg-outer .lg-toggle-thumb:hover {
	color: #fff;
}

.lg-outer .lg-video-cont {
	display: inline-block;
	vertical-align: middle;
	max-width: 1140px;
	max-height: 100%;
	width: 100%;
	padding: 0 5px;
}

.lg-outer .lg-video {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative;
}

.lg-outer .lg-video .lg-object {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.lg-outer .lg-video .lg-video-play {
	width: 84px;
	height: 59px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -42px;
	margin-top: -30px;
	z-index: 1080;
	cursor: pointer;
}

.lg-outer .lg-has-vimeo .lg-video-play {
	background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-vimeo:hover .lg-video-play {
	background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}

.lg-outer .lg-has-html5 .lg-video-play {
	background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
	height: 64px;
	margin-left: -32px;
	margin-top: -32px;
	width: 64px;
	opacity: 0.8;
}

.lg-outer .lg-has-html5:hover .lg-video-play {
	opacity: 1;
}

.lg-outer .lg-has-youtube .lg-video-play {
	background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent;
}

.lg-outer .lg-has-youtube:hover .lg-video-play {
	background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}

.lg-outer .lg-video-object {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
}

.lg-outer .lg-has-video .lg-video-object {
	visibility: hidden;
}

.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
	display: none;
}

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
	visibility: visible;
}

.lg-progress-bar {
	background-color: #333;
	height: 5px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1083;
	opacity: 0;
	-webkit-transition: opacity 0.08s ease 0s;
	-o-transition: opacity 0.08s ease 0s;
	transition: opacity 0.08s ease 0s;
}

.lg-progress-bar .lg-progress {
	background-color: #a90707;
	height: 5px;
	width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
	width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
	opacity: 1;
}

.lg-autoplay-button:after {
	content: "";
}

.lg-show-autoplay .lg-autoplay-button:after {
	content: "";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
	-webkit-transition-duration: 0s;
	-o-transition-duration: 0s;
	   transition-duration: 0s;
}

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
	-webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
	-o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
	-webkit-transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
	transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
	-o-transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
	transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
	transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#lg-zoom-in:after {
	content: "";
}

#lg-actual-size {
	font-size: 20px;
}

#lg-actual-size:after {
	content: "";
}

#lg-zoom-out {
	opacity: 0.5;
	pointer-events: none;
}

#lg-zoom-out:after {
	content: "";
}

.lg-zoomed #lg-zoom-out {
	opacity: 1;
	pointer-events: auto;
}

.lg-outer .lg-pager-outer {
	bottom: 60px;
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
	z-index: 1080;
	height: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
	overflow: visible;
}

.lg-outer .lg-pager-cont {
	cursor: pointer;
	display: inline-block;
	overflow: hidden;
	position: relative;
	vertical-align: top;
	margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
	-webkit-box-shadow: 0 0 0 2px white inset;
	        box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
	background-color: #fff;
	color: #fff;
	bottom: 100%;
	height: 83px;
	left: 0;
	margin-bottom: 20px;
	margin-left: -60px;
	opacity: 0;
	padding: 5px;
	position: absolute;
	width: 120px;
	border-radius: 3px;
	-webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
	-o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
	transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
	-o-transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
	transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
	transition: opacity 0.15s ease 0s, transform 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
	-webkit-transform: translate3d(0, 5px, 0);
	transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
	width: 100%;
	height: 100%;
}

.lg-outer .lg-pager {
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	-webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
	        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
	display: block;
	height: 12px;
	-webkit-transition: box-shadow 0.3s ease 0s;
	-o-transition: box-shadow 0.3s ease 0s;
	-webkit-transition: -webkit-box-shadow 0.3s ease 0s;
	transition: -webkit-box-shadow 0.3s ease 0s;
	transition: box-shadow 0.3s ease 0s;
	transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
	width: 12px;
}

.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
	-webkit-box-shadow: 0 0 0 8px white inset;
	        box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px dashed;
	bottom: -10px;
	display: inline-block;
	height: 0;
	left: 50%;
	margin-left: -5px;
	position: absolute;
	vertical-align: middle;
	width: 0;
}

.lg-fullscreen:after {
	content: "";
}

.lg-fullscreen-on .lg-fullscreen:after {
	content: "";
}

.lg-outer #lg-dropdown-overlay {
	background-color: rgba(0, 0, 0, 0.25);
	bottom: 0;
	cursor: default;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1081;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
	-o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
	transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active #lg-dropdown-overlay {
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	   transition-delay: 0s;
	-ms-transform: translate3d(0, 0px, 0);
	-webkit-transform: translate3d(0, 0px, 0);
	transform: translate3d(0, 0px, 0);
	opacity: 1;
	visibility: visible;
}

.lg-outer.lg-dropdown-active #lg-share {
	color: #fff;
}

.lg-outer .lg-dropdown {
	background-color: #fff;
	border-radius: 2px;
	font-size: 14px;
	list-style-type: none;
	margin: 0;
	padding: 10px 0;
	position: absolute;
	right: 0;
	text-align: left;
	top: 50px;
	opacity: 0;
	visibility: hidden;
	-ms-transform: translate3d(0, 5px, 0);
	-webkit-transform: translate3d(0, 5px, 0);
	transform: translate3d(0, 5px, 0);
	-webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
	-o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
	-webkit-transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
	transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
	-o-transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
	transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
	transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
}

.lg-outer .lg-dropdown:after {
	content: "";
	display: block;
	height: 0;
	width: 0;
	position: absolute;
	border: 8px solid transparent;
	border-bottom-color: #fff;
	right: 16px;
	top: -16px;
}

.lg-outer .lg-dropdown > li:last-child {
	margin-bottom: 0px;
}

.lg-outer .lg-dropdown > li:hover a,
.lg-outer .lg-dropdown > li:hover .lg-icon {
	color: #333;
}

.lg-outer .lg-dropdown a {
	color: #333;
	display: block;
	white-space: pre;
	padding: 4px 12px;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
}

.lg-outer .lg-dropdown a:hover {
	background-color: rgba(0, 0, 0, 0.07);
}

.lg-outer .lg-dropdown .lg-dropdown-text {
	display: inline-block;
	line-height: 1;
	margin-top: -3px;
	vertical-align: middle;
}

.lg-outer .lg-dropdown .lg-icon {
	color: #333;
	display: inline-block;
	float: none;
	font-size: 20px;
	height: auto;
	line-height: 1;
	margin-right: 8px;
	padding: 0;
	vertical-align: middle;
	width: auto;
}

.lg-outer #lg-share {
	position: relative;
}

.lg-outer #lg-share:after {
	content: "";
}

.lg-outer #lg-share-facebook .lg-icon {
	color: #3b5998;
}

.lg-outer #lg-share-facebook .lg-icon:after {
	content: "";
}

.lg-outer #lg-share-twitter .lg-icon {
	color: #00aced;
}

.lg-outer #lg-share-twitter .lg-icon:after {
	content: "";
}

.lg-outer #lg-share-googleplus .lg-icon {
	color: #dd4b39;
}

.lg-outer #lg-share-googleplus .lg-icon:after {
	content: "";
}

.lg-outer #lg-share-pinterest .lg-icon {
	color: #cb2027;
}

.lg-outer #lg-share-pinterest .lg-icon:after {
	content: "";
}

.group {
	*zoom: 1;
}

.group:before,
.group:after {
	display: table;
	content: "";
	line-height: 0;
}

.group:after {
	clear: both;
}

.lg-outer {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	opacity: 0;
	-webkit-transition: opacity 0.15s ease 0s;
	-o-transition: opacity 0.15s ease 0s;
	transition: opacity 0.15s ease 0s;
}

.lg-outer * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.lg-outer.lg-visible {
	opacity: 1;
}

.lg-outer.lg-css3 .lg-item.lg-prev-slide,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-current {
	-webkit-transition-duration: inherit !important;
	-o-transition-duration: inherit !important;
	   transition-duration: inherit !important;
	-webkit-transition-timing-function: inherit !important;
	-o-transition-timing-function: inherit !important;
	   transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
	-webkit-transition-duration: 0s !important;
	-o-transition-duration: 0s !important;
	   transition-duration: 0s !important;
	opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: -o-grabbing;
	cursor: -ms-grabbing;
	cursor: grabbing;
}

.lg-outer .lg {
	height: 100%;
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	max-height: 100%;
}

.lg-outer .lg-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	white-space: nowrap;
}

.lg-outer .lg-item {
	background: url("../img/icons/loading.gif") no-repeat scroll center center transparent;
	display: none !important;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
	display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
	display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
	display: inline-block;
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
	content: "";
	display: inline-block;
	height: 50%;
	width: 1px;
	margin-right: -1px;
}

.lg-outer .lg-img-wrap {
	position: absolute;
	padding: 0 5px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.lg-outer .lg-item.lg-complete {
	background-image: none;
}

.lg-outer .lg-item.lg-current {
	z-index: 1060;
}

.lg-outer .lg-image {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
	width: auto !important;
	height: auto !important;
}

.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
	opacity: 0;
	-webkit-transition: opacity 0.15s ease 0s;
	-o-transition: opacity 0.15s ease 0s;
	transition: opacity 0.15s ease 0s;
}

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
	opacity: 1;
}

.lg-outer .lg-empty-html {
	display: none;
}

.lg-outer.lg-hide-download #lg-download {
	display: none;
}

.lg-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1040;
	background-color: rgba(0, 0, 0, 0.9);
	opacity: 0;
	-webkit-transition: opacity 0.15s ease 0s;
	-o-transition: opacity 0.15s ease 0s;
	transition: opacity 0.15s ease 0s;
}

.lg-backdrop.in {
	opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
	-webkit-transition: none 0s ease 0s !important;
	-o-transition: none 0s ease 0s !important;
	transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.lg-css3.lg-use-left .lg-item {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
	opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
	opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
	-webkit-transition: opacity 0.1s ease 0s;
	-o-transition: opacity 0.1s ease 0s;
	transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
	opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
	-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
	-webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
	transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
	-o-transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
	transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-left .lg-item {
	opacity: 0;
	position: absolute;
	left: 0;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
	left: -100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
	left: 100%;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
	left: 0;
	opacity: 1;
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
	-webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
	-o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
	transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.popup {
	-webkit-overflow-scrolling: touch;
	z-index: 100;
	padding: 30px 10px;
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: visibility 0.8s ease 0s;
	-o-transition: visibility 0.8s ease 0s;
	transition: visibility 0.8s ease 0s;
	visibility: hidden;
}
.popup::before {
	content: "";
	background-color: rgba(0, 0, 0, 0.8);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: opacity 0.8s ease 0s;
	-o-transition: opacity 0.8s ease 0s;
	transition: opacity 0.8s ease 0s;
}
.popup.show {
	visibility: visible;
	overflow: auto;
}
.popup.show::before {
	opacity: 1;
}
.popup.show .popup__body {
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}
.popup._active {
	overflow: auto;
	visibility: visible;
}
.popup._active::before {
	opacity: 1;
}
.popup._active .popup__body {
	-webkit-transition: all 0.3s ease 0.2s;
	-o-transition: all 0.3s ease 0.2s;
	transition: all 0.3s ease 0.2s;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}
.popup__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-height: 100%;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	width: 100%;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	align-items: center;
}
.popup__body {
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 100%;
	max-width: 800px;
}
.popup__close {
	width: 15px;
	height: 15px;
	position: absolute;
	top: 0px;
	right: 0px;
	cursor: pointer;
	z-index: 30;
	background: url("../img/icons/close.svg") 0 0 no-repeat;
	background-size: contain;
}

.popup-callback .popup__body {
	max-width: 400px;
	background: #fff;
	padding: 40px 30px;
	overflow: hidden;
	position: relative;
	border-radius: 20px;
}
.popup-callback .popup__body::before {
	content: "";
	position: absolute;
	z-index: 2;
	left: -69px;
	width: 150px;
	height: 200px;
	top: 85px;
	background: url("../img/bonus/decor2.svg") no-repeat;
	background-size: cover;
}
.popup-callback .popup__close {
	top: 10px;
	right: 10px;
	width: 25px;
	height: 25px;
	background: url("../img/icons/close-r.svg") 0 0 no-repeat;
	background-size: contain;
}
.popup-callback .popup-callback__title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	margin: 0px 0px 60px 0px;
	color: #41ABFC;
}
@media (max-width: 480px) {
	.popup-callback .popup-callback__title {
		font-size: 22px;
	}
}
.popup-callback .popup-callback__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	margin: 0px auto 50px auto;
	max-width: 180px;
}
.popup-callback .popup-callback__phone {
	position: relative;
	font-size: 18px;
	padding: 0px 0px 0px 65px;
	margin: 0px 0px 40px 0px;
	color: #000;
}
.popup-callback .popup-callback__phone::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 50px;
	height: 50px;
	background: url("../img/icons/phone.svg") no-repeat;
	background-size: cover;
}
.popup-callback .popup-callback__wa {
	position: relative;
	font-size: 18px;
	padding: 0px 0px 0px 65px;
	margin: 0px 0px 40px 0px;
	color: #000;
}
.popup-callback .popup-callback__wa::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 50px;
	height: 50px;
	background: url("../img/icons/wa.svg") no-repeat;
	background-size: cover;
}
.popup-callback .popup-callback__tg {
	position: relative;
	font-size: 18px;
	padding: 0px 0px 0px 65px;
	color: #000;
}
.popup-callback .popup-callback__tg::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 50px;
	height: 50px;
	background: url("../img/icons/tg.svg") no-repeat;
	background-size: cover;
}
.popup-callback .popup-callback__text {
	font-size: 16px;
	text-align: center;
	font-weight: 300;
	line-height: 1.3;
}

.popup-video {
	padding: 0px 15px;
}
.popup-video .popup__body {
	max-width: 1300px;
}
.popup-video .popup__close {
	top: 5px;
	right: 5px;
	width: 36px;
	height: 36px;
}
@media (max-width: 1400px) {
	.popup-video .popup__close {
		right: 0px;
		top: 0px;
	}
}
.popup-video iframe, .popup-video video {
	width: 100%;
	height: calc(100vh - 100px);
}

.footer {
	background: #00AAFF;
	position: relative;
}
.footer::before {
	content: "";
	position: absolute;
	z-index: 2;
	bottom: -48px;
	left: -265px;
	width: 484px;
	height: 589px;
	background: url("../img/bonus/decor2.svg") no-repeat;
	background-size: cover;
	-ms-transform: rotate(-10deg);
	-webkit-transform: rotate(-10deg);
	transform: rotate(-10deg);
}
@media (max-width: 1400px) {
	.footer::before {
		bottom: -2px;
		left: -136px;
		width: 263px;
		height: 350px;
	}
}
@media (max-width: 1300px) {
	.footer::before {
		display: none;
	}
}

.footer__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 50px 0px 100px 0;
	min-height: 256px;
}
@media (max-width: 768px) {
	.footer__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media (max-width: 480px) {
	.footer__row {
		padding: 50px 0px 150px 0;
	}
}

.footer__col {
	padding: 0px 20px 0px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
}
.footer__col p, .footer__col a {
	display: block;
	font-weight: 300;
	font-size: 18px;
	line-height: 127%;
	color: #FFFFFF;
}
@media (max-width: 768px) {
	.footer__col {
		width: 100%;
	}
}

.swiper-container {
	overflow: hidden;
	position: relative;
}
.swiper-container > div {
	width: 100%;
	height: 100%;
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}
.swiper-container.swiper-container-autoheight > div {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

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

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

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
}

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

.swiper-pagination-bullets {
	position: absolute;
	bottom: 0px;
	left: 50%;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
}

.swiper-pagination-bullet {
	background: #000;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin: 0px 5px 0px 0px;
	cursor: pointer;
	display: inline-block;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: red;
}
.swiper-pagination-bullet:last-child {
	margin: 0;
}

.slider {
	position: relative;
	padding: 0px 40px;
	font-size: 16px;
	margin: 40px 0px;
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	z-index: 2;
	top: 45%;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 21px;
	height: 42px;
	background-size: contain;
	cursor: pointer;
}
@media (max-width: 480px) {
	.swiper-button-next,
.swiper-button-prev {
		width: 10px;
		height: 20px;
		top: 42%;
	}
}

.swiper-button-next {
	right: 30%;
	background: url("../img/icons/p-right.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 1200px) {
	.swiper-button-next {
		right: 15%;
	}
}
@media (max-width: 700px) {
	.swiper-button-next {
		right: 0;
	}
}
@media (max-width: 480px) {
	.swiper-button-next {
		right: 15%;
	}
}

.swiper-button-prev {
	left: 30%;
	background: url("../img/icons/p-left.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 1200px) {
	.swiper-button-prev {
		left: 15%;
	}
}
@media (max-width: 700px) {
	.swiper-button-prev {
		left: 0;
	}
}
@media (max-width: 480px) {
	.swiper-button-prev {
		left: 15%;
	}
}

.wapp-slider {
	position: relative;
}
.wapp-slider .swiper-wrapper {
	padding: 0px 0px 100px 0px;
}
.wapp-slider .swiper-slide {
	-webkit-transform: scale(0.8);
	    -ms-transform: scale(0.8);
	        transform: scale(0.8);
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	pointer-events: none;
	opacity: 0.6;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.wapp-slider .swiper-slide.swiper-slide-active {
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 1;
	pointer-events: auto;
}
.wapp-slider .swiper-slide .swiper-slide__block {
	width: 335px;
	height: 642px;
}
@media (max-width: 480px) {
	.wapp-slider .swiper-slide .swiper-slide__block {
		width: 150px;
		height: 240px;
	}
}
.wapp-slider .swiper-slide .swiper-slide__pic {
	display: block;
	border-radius: 50px;
	background: url("../img/wapp/iphone.webp") no-repeat;
	background-size: contain;
	background-position: center;
	padding: 18px 20px;
	-webkit-box-shadow: 0px 40px 29px -12px rgba(0, 0, 0, 0.28);
	box-shadow: 0px 40px 29px -12px rgba(0, 0, 0, 0.28);
}
.wapp-slider .swiper-slide .swiper-slide__pic img {
	width: 295px;
	height: 603px;
	border-radius: 30px;
}
@media (max-width: 480px) {
	.wapp-slider .swiper-slide .swiper-slide__pic img {
		width: 128px;
		height: 262px;
		border-radius: 15px;
	}
}
@media (max-width: 480px) {
	.wapp-slider .swiper-slide .swiper-slide__pic {
		border-radius: 20px;
		padding: 10px;
	}
}
@media (max-width: 1200px) {
	.wapp-slider {
		-webkit-transform: scale(1);
		    -ms-transform: scale(1);
		        transform: scale(1);
	}
}

.page {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}

.hero {
	position: relative;
	padding: 100px 0px 0px 0px;
}
@media (max-width: 1440px) {
	.hero {
		padding: 20px 0px 0px 0px;
	}
}
@media (max-width: 700px) {
	.hero {
		padding: 0;
	}
}

.hero__bg {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hero__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 700px) {
	.hero__bg {
		display: none;
	}
}

.hero__content {
	position: relative;
}

.hero__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media (max-width: 700px) {
	.hero__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		margin: -30px -33px 0px -33px;
	}
}

.hero__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 545px;
	        flex: 0 0 545px;
}
@media (max-width: 992px) {
	.hero__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 450px;
		        flex: 0 0 450px;
	}
}
@media (max-width: 768px) {
	.hero__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 380px;
		        flex: 0 0 380px;
	}
}
@media (max-width: 700px) {
	.hero__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.hero__subtitle {
	font-weight: 700;
	font-size: 45px;
	line-height: 115%;
	text-align: center;
	color: #03A4F4;
	margin: 0px 0px 37px 0px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.hero__subtitle._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	top: 0;
}
@media (max-width: 1440px) {
	.hero__subtitle {
		font-size: 36px;
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 992px) {
	.hero__subtitle {
		font-size: 28px;
	}
}
@media (max-width: 768px) {
	.hero__subtitle {
		font-size: 24px;
		margin: 0px 0px 16px 0px;
	}
}
@media (max-width: 360px) {
	.hero__subtitle {
		font-size: 22px;
	}
}

.hero__title {
	font-size: 64px;
	line-height: 115%;
	font-weight: 700;
	text-align: center;
	margin: 0px 0px 24px 0px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.hero__title._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.3s;
	-o-transition: all 0.7s ease 0.3s;
	transition: all 0.7s ease 0.3s;
	top: 0;
}
@media (max-width: 1440px) {
	.hero__title {
		font-size: 54px;
		margin: 0px 0px 15px 0px;
	}
}
@media (max-width: 992px) {
	.hero__title {
		font-size: 45px;
	}
}
@media (max-width: 768px) {
	.hero__title {
		font-size: 39px;
		margin: 0px 0px 30px 0px;
	}
}
@media (max-width: 360px) {
	.hero__title {
		font-size: 35px;
	}
}

.hero__text {
	font-weight: 300;
	font-size: 24px;
	line-height: 140%;
	text-align: center;
	color: #3A3A3A;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.hero__text._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.4s;
	-o-transition: all 0.7s ease 0.4s;
	transition: all 0.7s ease 0.4s;
	top: 0;
}
.hero__text span {
	font-weight: 700;
	color: #7EAE1C;
}
@media (max-width: 1440px) {
	.hero__text {
		font-size: 20px;
	}
}
@media (max-width: 992px) {
	.hero__text {
		font-size: 18px;
	}
}

.hero__right {
	position: relative;
	left: 100px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	left: 150px;
}
.hero__right._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.3s;
	-o-transition: all 0.7s ease 0.3s;
	transition: all 0.7s ease 0.3s;
	left: 100px;
}
@media (max-width: 1440px) {
	.hero__right._active {
		left: 0;
	}
}
.hero__right img {
	width: 100%;
	-webkit-transform: scale(1.3);
	    -ms-transform: scale(1.3);
	        transform: scale(1.3);
}
@media (max-width: 1440px) {
	.hero__right img {
		-webkit-transform: scale(1);
		    -ms-transform: scale(1);
		        transform: scale(1);
	}
}
@media (max-width: 1440px) {
	.hero__right {
		left: 0;
	}
}
@media (max-width: 700px) {
	.hero__right {
		width: 100%;
	}
}

.examples {
	position: relative;
}
.examples::before {
	content: "";
	position: absolute;
	top: 0;
	right: -1140px;
	right: calc(-1500px + 360 * ((100vw - 320px) / 1600));
	width: 1360px;
	height: 1360px;
	background: #00AAFF;
	border-radius: 50%;
}
@media (max-width: 1440px) {
	.examples::before {
		width: 224px;
		height: 224px;
		right: -150px;
	}
}

.examples__title {
	margin: 0px 0px 85px 0px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.examples__title._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	top: 0;
}
@media (max-width: 768px) {
	.examples__title {
		margin: 0px 0px 50px 0px;
	}
}

.examples__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -15px;
}

.examples__item {
	padding: 15px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.examples__item._active {
	opacity: 1;
	visibility: visible;
	top: 0;
}
.examples__item:nth-child(1) {
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
}
.examples__item:nth-child(2) {
	-webkit-transition: all 0.7s ease 0.3s;
	-o-transition: all 0.7s ease 0.3s;
	transition: all 0.7s ease 0.3s;
}
.examples__item:nth-child(3) {
	-webkit-transition: all 0.7s ease 0.4s;
	-o-transition: all 0.7s ease 0.4s;
	transition: all 0.7s ease 0.4s;
}
@media (max-width: 700px) {
	.examples__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.examples__name {
	font-size: 18px;
	text-align: center;
	margin: 0px 0px 20px 0px;
}

.examples__img {
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0px 0px 55.5% 0px;
}
.examples__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	border-radius: 17px;
}
.examples__img::before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 69px;
	height: 69px;
	background: url("../img/icons/play.svg") no-repeat;
	background-size: cover;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
	.examples__img::before {
		width: 59px;
		height: 59px;
	}
}
@media (min-width: 992px) {
	.examples__img:hover::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		-webkit-transform: translate(-50%, -50%) scale(1.1);
		    -ms-transform: translate(-50%, -50%) scale(1.1);
		        transform: translate(-50%, -50%) scale(1.1);
	}
}

.working {
	position: relative;
}
.working::before {
	content: "";
	position: absolute;
	bottom: -1200px;
	left: -1140px;
	left: calc(-1500px + 360 * ((100vw - 320px) / 1600));
	width: 1360px;
	height: 1360px;
	background: #00AAFF;
	border-radius: 50%;
}
@media (max-width: 1440px) {
	.working::before {
		width: 224px;
		height: 224px;
		left: -150px;
		bottom: unset;
		top: 160px;
	}
}

.working__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
}
@media (max-width: 768px) {
	.working__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}

.working__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	position: relative;
	z-index: -1;
	top: 50px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	left: -50px;
}
.working__left._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	top: 50px;
	left: 0;
}
.working__left img {
	width: 100%;
	-webkit-transform: scale(1.3);
	    -ms-transform: scale(1.3);
	        transform: scale(1.3);
}
@media (max-width: 1440px) {
	.working__left img {
		-webkit-transform: scale(1.2);
		    -ms-transform: scale(1.2);
		        transform: scale(1.2);
	}
}
@media (max-width: 768px) {
	.working__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		max-width: 400px;
	}
}

.working__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-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;
	position: relative;
	padding: 100px 0px 0px 0px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	left: 50px;
}
.working__right._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	left: 0;
}
@media (max-width: 768px) {
	.working__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}
@media (max-width: 480px) {
	.working__right {
		padding: 70px 0px 0px 0px;
	}
}

.working__title {
	position: relative;
	text-align: left;
	padding: 0px 0px 0px 110px;
	margin: 0px 0px 46px 0px;
}
.working__title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 80px;
	height: 80px;
	background: url("../img/working/sign.png") no-repeat;
	background-size: cover;
}
@media (max-width: 480px) {
	.working__title {
		font-size: 18px;
		padding: 0px 0px 0px 66px;
		margin: 0px 0px 16px 0px;
	}
	.working__title::before {
		width: 50px;
		height: 50px;
	}
}

.working__list {
	max-width: 380px;
}
.working__list li {
	list-style-type: none;
	font-weight: 300;
	font-size: 24px;
	line-height: 196%;
	color: #000000;
	position: relative;
	padding: 0px 0px 0px 37px;
}
.working__list li::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 10px;
	height: 10px;
	background: #00AAFF;
	border-radius: 50%;
}
@media (max-width: 992px) {
	.working__list li {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.working__list li {
		font-size: 14px;
		padding: 0px 0px 0px 15px;
	}
	.working__list li::before {
		width: 6px;
		height: 6px;
	}
}

.working__decor1 {
	position: absolute;
	z-index: -1;
	bottom: -100px;
	left: -300px;
	width: 228px;
}
.working__decor1 img {
	width: 100%;
}
@media (max-width: 768px) {
	.working__decor1 {
		left: -80px;
		width: 150px;
		bottom: -10px;
	}
}

.working__decor2 {
	position: absolute;
	z-index: -1;
	top: 30px;
	left: 50%;
	width: 170px;
}
.working__decor2 img {
	width: 100%;
}
@media (max-width: 768px) {
	.working__decor2 {
		width: 100px;
		left: -80px;
		top: 140px;
	}
}

.working__decor3 {
	position: absolute;
	z-index: -1;
	bottom: -30px;
	right: -170px;
	width: 270px;
}
.working__decor3 img {
	width: 100%;
}
@media (max-width: 768px) {
	.working__decor3 {
		bottom: 20px;
		width: 200px;
		right: -130px;
	}
}

.result__top {
	position: relative;
	z-index: -1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.result__top::before {
	content: "";
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20px;
	background: -webkit-gradient(linear, left bottom, left top, from(white), to(rgba(255, 255, 255, 0)));
	background: -o-linear-gradient(bottom, white 0%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 650px) {
	.result__top::before {
		bottom: -30px;
	}
}
@media (max-width: 992px) {
	.result__top {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}
@media (max-width: 650px) {
	.result__top {
		margin: 0px 0px 20px 0px;
	}
}

.result__girl {
	position: relative;
	top: -6px;
	right: calc((100vw - 1140px) / 2);
	z-index: 1;
	width: 655px;
	opacity: 0;
	visibility: hidden;
	position: relative;
}
.result__girl._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
}
.result__girl img {
	width: 100%;
}
@media (max-width: 650px) {
	.result__girl img {
		-webkit-transform: scale(1.2);
		    -ms-transform: scale(1.2);
		        transform: scale(1.2);
	}
}
@media (max-width: 480px) {
	.result__girl img {
		-webkit-transform: scale(1.3);
		    -ms-transform: scale(1.3);
		        transform: scale(1.3);
	}
}
@media (max-width: 992px) {
	.result__girl {
		right: -6px;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
	}
}

.result__line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
@media (max-width: 650px) {
	.result__line {
		display: none;
	}
}

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

.result__left {
	margin: 0px 30px 0px 0px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	left: -50px;
}
.result__left._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	left: 0;
}
@media (max-width: 700px) {
	.result__left {
		margin: 0px 0px 50px 0px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		font-size: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}
@media (max-width: 480px) {
	.result__left {
		position: relative;
		margin: 0;
	}
	.result__left::before {
		content: "";
		position: absolute;
		top: 250px;
		right: -220px;
		width: 224px;
		height: 224px;
		background: #00AAFF;
		border-radius: 50%;
	}
}

.result__title {
	text-align: left;
	margin: 0px 0px 33px 0px;
}
@media (max-width: 700px) {
	.result__title {
		font-weight: 700;
		font-size: 30px;
		line-height: 111.5%;
		color: #8CC21F;
		text-align: center;
	}
}

.result__text {
	font-weight: 300;
	font-size: 22px;
	line-height: 127%;
	color: #000000;
	max-width: 360px;
}
.result__text span {
	font-weight: 700;
	font-size: 24px;
	line-height: 127%;
	color: #8CC21F;
}
@media (max-width: 992px) {
	.result__text {
		font-size: 18px;
	}
}
@media (max-width: 700px) {
	.result__text {
		max-width: 100%;
	}
}
@media (max-width: 480px) {
	.result__text {
		margin: 0px 0px 36px 0px;
	}
}

.result__darts {
	max-width: 440px;
}
.result__darts img {
	width: 100%;
}
@media (max-width: 480px) {
	.result__darts {
		margin: 0px -33px;
	}
	.result__darts img {
		width: 100vw;
	}
}

.result__right {
	opacity: 0;
	visibility: hidden;
	position: relative;
	left: 50px;
}
.result__right._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	left: 0;
}

.result__table {
	background: #FFFFFF;
	border: 1px solid #E6E6E6;
	-webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.04);
	        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.04);
	padding: 30px 0px;
}
.result__table img {
	width: 100%;
}
@media (max-width: 480px) {
	.result__table {
		padding: 0;
		margin: 0px 0px 25px 0px;
		border: 0;
		-webkit-box-shadow: none;
		        box-shadow: none;
	}
}

.promo__title {
	text-transform: uppercase;
	margin: 0px auto 47px auto;
	text-align: center;
	position: relative;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.promo__title._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	top: 0;
}
@media (max-width: 480px) {
	.promo__title::before {
		content: "";
		position: absolute;
		right: 40px;
		bottom: -30px;
		width: 110px;
		height: 145px;
		background: url("../img/icons/arrow.svg") no-repeat;
		background-size: cover;
	}
}

.promo__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -15px;
}

.promo-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	padding: 15px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.promo-item._active {
	opacity: 1;
	visibility: visible;
	top: 0;
}
.promo-item:nth-child(1) {
	-webkit-transition: all 0.7s ease 0.3s;
	-o-transition: all 0.7s ease 0.3s;
	transition: all 0.7s ease 0.3s;
}
.promo-item:nth-child(2) {
	-webkit-transition: all 0.7s ease 0.4s;
	-o-transition: all 0.7s ease 0.4s;
	transition: all 0.7s ease 0.4s;
}
@media (max-width: 760px) {
	.promo-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.promo-item__row {
	padding: 60px 16px 8px 16px;
	background: #EFFAFF;
	-webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
	        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	height: 100%;
	position: relative;
}
@media (max-width: 1100px) {
	.promo-item__row {
		padding: 30px 16px 8px 16px;
	}
}
@media (max-width: 480px) {
	.promo-item__row {
		padding: 60px 16px 8px 16px;
		margin: 0px -10px;
	}
}

.promo-item__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 188px;
	        flex: 0 0 188px;
	margin: 0px 50px 0px 0px;
}
.promo-item__left img {
	width: 100%;
}
@media (max-width: 1100px) {
	.promo-item__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 150px;
		        flex: 0 0 150px;
		margin: 0px 30px 0px 0px;
	}
}
@media (max-width: 992px) {
	.promo-item__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 112px;
		        flex: 0 0 112px;
	}
}
@media (max-width: 760px) {
	.promo-item__left {
		margin: 0px 46px 0px 0px;
	}
}
@media (max-width: 360px) {
	.promo-item__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 90px;
		        flex: 0 0 90px;
		margin: 0px 30px 0px 0px;
	}
}

.promo-item__right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.promo-item__name {
	font-weight: 700;
	font-size: 24px;
	line-height: 115%;
	color: #03A4F4;
	margin: 0px 0px 10px 0px;
}
@media (max-width: 1100px) {
	.promo-item__name {
		font-size: 20px;
	}
}
@media (max-width: 992px) {
	.promo-item__name {
		font-size: 18px;
	}
}
@media (max-width: 480px) {
	.promo-item__name {
		font-size: 17px;
		position: absolute;
		top: 20px;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
		width: 100%;
		text-align: center;
	}
}

.promo-item__price {
	font-weight: 700;
	font-size: 18px;
	line-height: 119.5%;
	color: #3A3A3A;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.promo-item__price span {
	font-weight: 300;
	font-size: 16px;
	line-height: 119.5%;
	color: #3A3A3A;
}
@media (max-width: 480px) {
	.promo-item__price span {
		font-size: 14px;
	}
}

.promo-item__once {
	font-weight: 700;
	font-size: 10px;
	line-height: 119.5%;
	color: #FF6163;
	text-transform: uppercase;
	padding: 20px 0;
}
@media (max-width: 992px) {
	.promo-item__once {
		padding: 10px 0px 0px 0px;
	}
}

.foryou {
	position: relative;
}

.foryou__title {
	max-width: 520px;
	color: #03A4F4;
	margin: 0px auto 90px auto;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.foryou__title._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	top: 0;
}
@media (max-width: 480px) {
	.foryou__title {
		margin: 0px auto 75px auto;
	}
}

.foryou__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -20px;
}
@media (max-width: 500px) {
	.foryou__row {
		margin: -30px;
	}
}

.foryou__item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 16.666%;
	        flex: 0 0 16.666%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.foryou__item._active {
	opacity: 1;
	visibility: visible;
	top: 0;
}
.foryou__item:nth-child(1) {
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
}
.foryou__item:nth-child(2) {
	-webkit-transition: all 0.7s ease 0.3s;
	-o-transition: all 0.7s ease 0.3s;
	transition: all 0.7s ease 0.3s;
}
.foryou__item:nth-child(3) {
	-webkit-transition: all 0.7s ease 0.4s;
	-o-transition: all 0.7s ease 0.4s;
	transition: all 0.7s ease 0.4s;
}
.foryou__item:nth-child(4) {
	-webkit-transition: all 0.7s ease 0.5s;
	-o-transition: all 0.7s ease 0.5s;
	transition: all 0.7s ease 0.5s;
}
.foryou__item:nth-child(5) {
	-webkit-transition: all 0.7s ease 0.6s;
	-o-transition: all 0.7s ease 0.6s;
	transition: all 0.7s ease 0.6s;
}
.foryou__item:nth-child(6) {
	-webkit-transition: all 0.7s ease 0.7s;
	-o-transition: all 0.7s ease 0.7s;
	transition: all 0.7s ease 0.7s;
}
@media (max-width: 992px) {
	.foryou__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.333%;
		        flex: 0 0 33.333%;
	}
}
@media (max-width: 360px) {
	.foryou__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}

.foryou__img {
	width: 66px;
	height: 66px;
	margin: 0px 0px 38px 0px;
}
.foryou__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 500px) {
	.foryou__img {
		width: 28px;
		height: 28px;
		margin: 0px 0px 28px 0px;
	}
}

.foryou__name {
	font-weight: 700;
	font-size: 16px;
	line-height: 119.5%;
	text-align: center;
	color: #3A3A3A;
}
@media (max-width: 1100px) {
	.foryou__name {
		font-size: 14px;
	}
}
@media (max-width: 500px) {
	.foryou__name {
		font-size: 12px;
		font-weight: 300;
	}
}

.bonus {
	position: relative;
}
.bonus::before {
	content: "";
	position: absolute;
	z-index: 2;
	top: -334px;
	left: -69px;
	width: 300px;
	height: 408px;
	background: url("../img/bonus/decor2.svg") no-repeat;
	background-size: cover;
}
@media (max-width: 1560px) {
	.bonus::before {
		width: 150px;
		height: 200px;
		top: 85px;
	}
}

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

.bonus__content {
	position: relative;
}

.bonus-top {
	margin: 0px 0px 50px 0px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-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;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.bonus-top._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	top: 0;
}

.bonus-top__img {
	width: 166px;
	margin: 0px 0 10px 0;
}
.bonus-top__img img {
	width: 100%;
}
@media (max-width: 480px) {
	.bonus-top__img {
		width: 78px;
	}
}

.bonus-top__title {
	font-weight: 700;
	font-size: 24px;
	line-height: 115%;
	text-align: center;
	text-transform: uppercase;
	color: #03A4F4;
	margin: 0px 0px 10px 0px;
}

.bonus-top__text {
	font-weight: 700;
	font-size: 18px;
	line-height: 119.5%;
	text-align: center;
	color: #000000;
	max-width: 322px;
}
@media (max-width: 480px) {
	.bonus-top__text {
		font-size: 12px;
		max-width: 150px;
	}
}

.bonus__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-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;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.bonus__row._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	top: 0;
}
@media (max-width: 480px) {
	.bonus__row {
		margin: 0px -33px;
	}
}

.bonus__img {
	max-width: 816px;
	position: relative;
}
.bonus__img img {
	width: 100%;
}
.bonus__img::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30%;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFFFFF));
	background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}
@media (max-width: 480px) {
	.bonus__img::before {
		background: -webkit-gradient(linear, left bottom, left top, from(white), color-stop(62%, rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0)));
		background: -o-linear-gradient(bottom, white 0%, rgba(255, 255, 255, 0.9) 62%, rgba(255, 255, 255, 0) 100%);
		background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.9) 62%, rgba(255, 255, 255, 0) 100%);
		height: 50%;
	}
}

.bonus__block {
	margin: -50px 0px 80px 0px;
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 480px) {
	.bonus__block {
		margin: -50px 0px 70px 0px;
	}
}

.bonus__title {
	font-weight: 700;
	font-size: 36px;
	line-height: 115%;
	text-align: center;
	text-transform: uppercase;
	color: #FF5659;
	margin: 0px 0px 20px 0px;
}
@media (max-width: 768px) {
	.bonus__title {
		font-size: 26px;
		margin: 0px 0px 11px 0px;
	}
}
@media (max-width: 480px) {
	.bonus__title {
		font-size: 20px;
		margin: 0px 0px 7px 0px;
	}
}

.bonus__text {
	font-weight: 300;
	font-size: 24px;
	line-height: 140%;
	text-align: center;
	color: #3A3A3A;
	max-width: 480px;
}
.bonus__text span {
	font-weight: 700;
	color: #03A4F4;
}
@media (max-width: 768px) {
	.bonus__text {
		font-size: 18px;
	}
}

.wapp {
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.wapp._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	top: 0;
}
.wapp::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: -1203px;
	right: 0;
	width: 696px;
	height: 1700px;
	background: url("../img/bonus/decor.svg") no-repeat;
	background-size: cover;
	pointer-events: none;
}
@media (max-width: 1750px) {
	.wapp::after {
		top: unset;
		bottom: 1100px;
		right: 0;
		width: 182px;
		height: 395px;
	}
}
@media (max-width: 1100px) {
	.wapp::after {
		bottom: -270px;
	}
}

.wapp__title {
	text-transform: uppercase;
	margin: 0px 0px 80px 0px;
}
@media (max-width: 480px) {
	.wapp__title {
		margin: 0px 0px 30px 0px;
		font-size: 25px;
	}
}

.wapp__title_red {
	color: #FF5659;
}
@media (max-width: 480px) {
	.wapp__title_red {
		margin: 0 auto;
		max-width: 300px;
		font-size: 24px;
	}
}