@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Arimo:wght@400;700&family=Noto+Sans+Display:wght@400;600&family=Playfair+Display:wght@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: "Playfair Display";
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: "Playfair Display";
}

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;
}
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: 1170px;
	margin: 0 auto;
	padding: 0 15px;
}

.title {
	font-weight: bold;
	font-size: 50px;
	line-height: 1.26;
	text-align: center;
	color: #000000;
	text-transform: uppercase;
	opacity: 0;
	visibility: hidden;
	position: relative;
}
.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;
}
@media (max-width: 992px) {
	.title {
		font-size: 40px;
	}
}
@media (max-width: 700px) {
	.title {
		font-size: 26px;
	}
}

.mb {
	margin: 0px 0px 80px 0px;
}
@media (max-width: 480px) {
	.mb {
		margin: 0px 0px 40px 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 34px;
	background: #FFFFFF;
	background: url("../img/btn_bg.webp") no-repeat;
	background-size: cover;
	width: 253px;
	height: 77px;
	font-family: Noto Sans Display;
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	text-align: center;
	text-transform: uppercase;
	color: #000000;
	border-radius: 20px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
	.btn {
		font-size: 16px;
		width: 197px;
		height: 60px;
	}
}
@media (min-width: 768px) {
	.btn:hover {
		-webkit-transform: scale(1.05);
		    -ms-transform: scale(1.05);
		        transform: scale(1.05);
		-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);
	font-size: 18px;
	width: 260px;
	height: 55px;
	border-radius: 16px;
	padding: 10px 20px;
	background-position: center;
	overflow: hidden;
}
@media (min-width: 768px) {
	.btn_fixed:hover {
		-webkit-transform: translate(-50%, 0) scale(1.05);
		    -ms-transform: translate(-50%, 0) scale(1.05);
		        transform: translate(-50%, 0) scale(1.05);
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.btn .flare {
	position: absolute;
	top: 0;
	height: 100%;
	width: 45px;
	-webkit-transform: skewX(-45deg);
	    -ms-transform: skewX(-45deg);
	        transform: skewX(-45deg);
	-webkit-animation: flareAnimation;
	        animation: flareAnimation;
	left: -150%;
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.5)));
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5));
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5));
	-webkit-animation: flareAnimation 4s infinite ease-in-out;
	        animation: flareAnimation 4s infinite ease-in-out;
}

@-webkit-keyframes flareAnimation {
	0% {
		left: -150%;
	}
	100% {
		left: 150%;
	}
}

@keyframes flareAnimation {
	0% {
		left: -150%;
	}
	100% {
		left: 150%;
	}
}
input {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

.popup-callback__form .form__item {
	margin: 0px 0px 25px 0px;
	position: relative;
	border: 1px solid #E0EEED;
}
.popup-callback__form .form__btn {
	margin: 0 auto;
}

.super-block__form {
	max-width: 805px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
}
.super-block__form .form__item {
	position: relative;
	margin: 0px 20px 0px 0px;
	border: 3px solid #EDEFF1;
	border-radius: 9px;
	overflow: hidden;
	width: 100%;
}
.super-block__form .form__item._error {
	border: 3px solid red;
}
@media (max-width: 760px) {
	.super-block__form .form__item {
		margin: 0px 0px 20px 0px;
	}
}
.super-block__form input {
	font-family: Playfair Display;
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	color: #2F3035;
	height: 53px;
	padding: 0px 0px 0px 50px;
	width: 100%;
}
.super-block__form input#tel {
	background: #fff url("../img/icons/phone.svg") 15px no-repeat;
	background-size: 23px;
}
.super-block__form input#name {
	background: #fff url("../img/icons/person.svg") 15px no-repeat;
	background-size: 23px;
}
@media (max-width: 768px) {
	.super-block__form input {
		font-size: 16px;
	}
}
.super-block__form .form__btn {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 220px;
	        flex: 0 0 220px;
	padding: 10px 15px;
	font-family: Playfair Display;
	font-weight: bold;
	font-size: 20px;
	color: #2F3035;
	text-transform: none;
	height: 53px;
	border-radius: 12px;
	background-position: center;
}
@media (max-width: 760px) {
	.super-block__form .form__btn {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 220px;
		padding: 15px;
	}
}
@media (max-width: 760px) {
	.super-block__form {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		max-width: 400px;
	}
}

.popup-callback__form {
	padding: 40px 20px;
	max-width: 400px;
	margin: 0 auto;
}
.popup-callback__form .form__item {
	position: relative;
	margin: 0px 0px 15px 0px;
	border: 3px solid #EDEFF1;
	border-radius: 9px;
	width: 100%;
}
.popup-callback__form .form__item._error {
	border: 3px solid red;
}
.popup-callback__form .form__item input {
	font-family: Playfair Display;
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	color: #2F3035;
	height: 40px;
	padding: 0px 0px 0px 20px;
	width: 100%;
	border-radius: 9px;
}
.popup-callback__form .form__item textarea {
	height: 150px;
	width: 100%;
	padding: 10px 20px;
	font-size: 16px;
}
.popup-callback__form .form__item textarea::-webkit-input-placeholder {
	font-size: 16px;
	color: #2F3035;
}
.popup-callback__form .form__item textarea::-moz-placeholder {
	font-size: 16px;
	color: #2F3035;
}
.popup-callback__form .form__item textarea:-ms-input-placeholder {
	font-size: 16px;
	color: #2F3035;
}
.popup-callback__form .form__item textarea::-ms-input-placeholder {
	font-size: 16px;
	color: #2F3035;
}
.popup-callback__form .form__item textarea::placeholder {
	font-size: 16px;
	color: #2F3035;
}
.popup-callback__form .form__error {
	bottom: -20px;
	font-size: 14px;
}
.popup-callback__form .form__sent {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	z-index: 3;
	height: calc(100% + 50px);
	width: calc(100% + 50px);
	background-color: #dcdeff;
	color: #000476;
	text-align: center;
	font-weight: 600;
	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;
	font-size: calc(24px + 4 * ((100vw - 320px) / 1600));
	line-height: 1.3;
	border-radius: 10px;
}
.popup-callback__form .form__sent::after {
	content: "";
	position: absolute;
	top: 15%;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 100px;
	height: 100px;
	background: url("../img/icons/ok.svg") no-repeat;
	background-size: cover;
}
@media (max-width: 480px) {
	.popup-callback__form .form__sent::after {
		width: 80px;
		height: 80px;
	}
}

.form__error {
	position: absolute;
	bottom: -15px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	height: 20px;
	border-radius: 15px;
	color: red;
	text-align: center;
	width: 100%;
	padding: 3px 10px;
	font-family: Noto Sans Display;
}

.form__sent {
	font-size: 17px;
	position: absolute;
	bottom: -26px;
	right: 0;
	font-weight: bold;
	color: #6ad76a;
}
@media (max-width: 760px) {
	.form__sent {
		right: unset;
		bottom: -26px;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
		width: 250px;
		text-align: center;
	}
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	resize: none;
}

.quantity {
	width: 92px;
	height: 53px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 34px;
	        flex: 0 0 34px;
	position: relative;
	cursor: pointer;
}
@media (min-width: 992px) {
	.quantity__button:hover::before, .quantity__button:hover::after {
		background-color: rgba(0, 0, 0, 0.5);
	}
}
.quantity__button_plus {
	background: #EFF0F0 url("../img/icons/up.svg") no-repeat;
	background-position: center;
	background-size: 13px;
	border-bottom: 1px solid #E1EAF7;
}
.quantity__button_minus {
	background: #EFF0F0 url("../img/icons/down.svg") no-repeat;
	background-position: center;
	background-size: 13px;
}
.quantity__input {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.quantity__input input {
	height: 100%;
	color: #a6a6a6;
	font-size: 12px;
	width: 100%;
	text-align: center;
}
@media (max-width: 480px) {
	.quantity {
		width: 75px;
	}
}
@media (max-width: 360px) {
	.quantity {
		width: 92px;
	}
}

.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: 45px;
	height: 45px;
	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-quiz .popup__body {
	padding: 20px 0px 0px 0px;
	max-width: 800px;
	height: 570px;
}
.popup-quiz .popup__close {
	top: 11px;
	right: -36px;
	width: 36px;
	height: 36px;
}
@media (max-width: 880px) {
	.popup-quiz .popup__close {
		top: -15px;
		right: -7px;
	}
}
.popup-quiz .popup__title {
	color: #0b0251;
	margin: 0px 0px 40px 0px;
}
.popup-quiz iframe {
	width: 100%;
	height: 100%;
}
@media (max-width: 480px) {
	.popup-quiz {
		height: calc(100vh - 50px);
	}
}

.prices-block__btn {
	text-align: center;
}

.popup-callback .popup__body {
	border-radius: calc(10px + 40 * ((100vw - 320px) / 1600));
	max-width: 600px;
	min-height: 570px;
	background: #FEFEFF;
	-webkit-box-shadow: 0px 4px 47px rgba(43, 103, 147, 0.4);
	        box-shadow: 0px 4px 47px rgba(43, 103, 147, 0.4);
	border: 3px solid #F0F0F0;
	overflow: hidden;
}
.popup-callback .popup__close {
	top: 10px;
	right: 10px;
	width: 36px;
	height: 36px;
}
.popup-callback .popup__title {
	color: #0b0251;
	margin: 0px 0px 40px 0px;
}
.popup-callback iframe {
	width: 100%;
	height: 100%;
}
.popup-callback .form__sent {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	z-index: 3;
	height: calc(100% + 50px);
	width: calc(100% + 50px);
	background-color: #F0F0F0;
	color: #000476;
	text-align: center;
	font-weight: 600;
	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;
	font-size: calc(24px + 4 * ((100vw - 320px) / 1600));
	line-height: 1.3;
	border-radius: 10px;
	padding: 0px 50px;
}
.popup-callback .form__sent::after {
	content: "";
	position: absolute;
	top: 25%;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 100px;
	height: 100px;
	background: url("../img/icons/ok.svg") no-repeat;
	background-size: cover;
}
@media (max-width: 480px) {
	.popup-callback .form__sent::after {
		width: 80px;
		height: 80px;
	}
}
.popup-callback .popup-callback__titleblock {
	background: #6D7886;
	padding: 30px 50px;
}
.popup-callback .popup-callback__title {
	font-family: Playfair Display;
	font-weight: bold;
	font-size: 30px;
	line-height: 1.2;
	color: #FEFEFF;
	text-align: center;
}
@media (max-width: 480px) {
	.popup-callback .popup-callback__title {
		font-size: 22px;
	}
}

.popup-video .popup__body {
	max-width: 1300px;
}
.popup-video .popup__close {
	top: 11px;
	right: -36px;
	width: 36px;
	height: 36px;
	background: url("../img/icons/close.svg") 0 0 no-repeat;
}
@media (max-width: 1400px) {
	.popup-video .popup__close {
		right: 0px;
		top: -36px;
	}
}
.popup-video iframe {
	width: 100%;
	height: calc(100vh - 100px);
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.popup-contacts .popup__body {
	max-width: 400px;
	background: #fff url(../img/super/bg.webp) no-repeat;
	background-size: 50%;
	background-position: bottom left;
	padding: 40px 30px;
	position: relative;
	border-radius: 20px;
}
.popup-contacts .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-contacts .popup__close {
	top: -10px;
	right: -36px;
	width: 36px;
	height: 36px;
}
@media (max-width: 880px) {
	.popup-contacts .popup__close {
		top: -35px;
		right: -7px;
	}
}
.popup-contacts .popup-callback__title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	margin: 0px 0px 60px 0px;
	color: #498EB4;
}
@media (max-width: 480px) {
	.popup-contacts .popup-callback__title {
		font-size: 22px;
	}
}
.popup-contacts .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-contacts .popup-callback__phone {
	position: relative;
	font-size: 18px;
	padding: 0px 0px 0px 65px;
	margin: 0px 0px 40px 0px;
	color: #000;
}
.popup-contacts .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/phone2.svg") no-repeat;
	background-size: cover;
}
.popup-contacts .popup-callback__wa {
	position: relative;
	font-size: 18px;
	padding: 0px 0px 0px 65px;
	margin: 0px 0px 40px 0px;
	color: #000;
}
.popup-contacts .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/whatsapp.svg") no-repeat;
	background-size: cover;
}
.popup-contacts .popup-callback__tg {
	position: relative;
	font-size: 18px;
	padding: 0px 0px 0px 65px;
	color: #000;
}
.popup-contacts .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-contacts .popup-callback__text {
	font-size: 16px;
	text-align: center;
	font-weight: 300;
	line-height: 1.3;
}

.header {
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background: #F4F7F9;
}
.header._fixed {
	position: fixed;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px 4px 18px -2px rgba(34, 60, 80, 0.2);
	        box-shadow: 0px 4px 18px -2px rgba(34, 60, 80, 0.2);
}
.header._fixed .menu__list li {
	height: 60px;
}
@media (max-width: 480px) {
	.header._fixed .menu__list li {
		height: 30px;
	}
}
.header ._container {
	max-width: 100%;
}
@media (max-width: 992px) {
	.header {
		padding: 10px 0;
	}
}
@media (max-width: 480px) {
	.header {
		padding: 15px 0;
	}
}

.header__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;
}

.header__logo {
	width: 130px;
}
.header__logo img {
	width: 100%;
}
@media (max-width: 480px) {
	.header__logo {
		width: 100px;
	}
}

.menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
}
.menu__list li {
	height: 98px;
	margin: 0px 60px 0px 0px;
	padding: 0 25px;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.menu__list li:last-child {
	margin: 0;
}
.menu__list li::before {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 100%;
	height: 7px;
	background: #000;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	visibility: hidden;
	opacity: 0;
}
.menu__list li::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 8px;
	height: 8px;
	border: 5px solid transparent;
	border-bottom: 8px solid #000;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 992px) {
	.menu__list li:hover {
		background: #fff;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.menu__list li:hover::before {
		bottom: -7px;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		visibility: visible;
		opacity: 1;
	}
	.menu__list li:hover::after {
		bottom: 0px;
		opacity: 1;
		visibility: visible;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 1500px) {
	.menu__list li {
		margin: 0px 30px 0px 0px;
		padding: 0 15px;
	}
}
@media (max-width: 1260px) {
	.menu__list li {
		margin: 0px;
		height: 80px;
	}
}
@media (max-width: 992px) {
	.menu__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
		width: 100%;
	}
	.menu__list li {
		height: unset;
		margin: 0px 0px 35px 0px;
	}
}

.menu__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-family: Arimo;
	font-size: 18px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: #000000;
	width: 100%;
	height: 100%;
}
@media (max-width: 1260px) {
	.menu__link {
		font-size: 14px;
	}
}
@media (max-width: 992px) {
	.menu__link {
		font-size: 16px;
	}
}

.header__contacts span {
	display: block;
	font-size: 18px;
	font-family: Arimo;
}
@media (max-width: 480px) {
	.header__contacts span {
		font-size: 14px;
	}
}
@media (max-width: 992px) {
	.header__contacts {
		padding: 0px 60px 0px 0px;
	}
}
@media (max-width: 480px) {
	.header__contacts {
		padding: 0px 50px 0px 0px;
	}
}

.header__phone {
	font-family: Arimo;
	font-size: 18px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: #000000;
	font-weight: bold;
	display: block;
	margin: 0px 0px 5px 0px;
}
@media (max-width: 1260px) {
	.header__phone {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.header__phone {
		font-size: 14px;
	}
}

.menu__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	position: relative;
}
@media (max-width: 992px) {
	.menu__body {
		position: fixed;
		z-index: 4;
		top: 63px;
		right: -100%;
		width: 100%;
		height: 100vh;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background: #fff;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		overflow: auto;
		padding: 50px 0;
	}
	.menu__body._active {
		right: 0;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.icon-menu {
	display: none;
}
@media (max-width: 992px) {
	.icon-menu {
		display: block;
		position: absolute;
		top: 22px;
		right: 15px;
		width: 30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
	}
	.icon-menu span {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		top: calc(50% - 1px);
		left: 0px;
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: #000;
	}
	.icon-menu span:first-child {
		top: 0px;
	}
	.icon-menu span:last-child {
		top: auto;
		bottom: 0px;
	}
	.icon-menu._active span {
		-webkit-transform: scale(0);
		    -ms-transform: scale(0);
		        transform: scale(0);
	}
	.icon-menu._active span:first-child {
		-webkit-transform: rotate(-45deg);
		    -ms-transform: rotate(-45deg);
		        transform: rotate(-45deg);
		top: calc(50% - 1px);
	}
	.icon-menu._active span:last-child {
		-webkit-transform: rotate(45deg);
		    -ms-transform: rotate(45deg);
		        transform: rotate(45deg);
		bottom: calc(50% - 1px);
	}
}

/*
body {
	&._lock {
		overflow: hidden;
		.header {
			left: -7.5px;
		}
	}
}
*/
.footer {
	background: #253140;
	padding: 48px 0px 122px 0px;
}
@media (max-width: 768px) {
	.footer {
		padding: 40px 0px;
	}
}

.footer__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
@media (max-width: 700px) {
	.footer__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.footer-left__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 730px;
	        flex: 0 1 730px;
	margin: 0px 52px 0px 0px;
}
@media (max-width: 992px) {
	.footer-left__row {
		margin: 0px 25px 0px 0px;
	}
}
@media (max-width: 700px) {
	.footer-left__row {
		margin: 0px 0px 30px 0px;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}
@media (max-width: 480px) {
	.footer-left__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.footer-left__col {
	margin: 0px 52px 0px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 338px;
	        flex: 0 1 338px;
}
.footer-left__col:last-child {
	margin: 0;
}
@media (max-width: 992px) {
	.footer-left__col {
		margin: 0px 25px 0px 0px;
	}
}
@media (max-width: 480px) {
	.footer-left__col {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px 0px 30px 0px;
	}
}

.footer-left__head {
	border-bottom: 2px solid #FFFFFF;
	min-height: 70px;
	margin: 0px 0px 60px 0px;
	padding: 0px 0px 10px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 768px) {
	.footer-left__head {
		margin: 0px 0px 40px 0px;
	}
}
@media (max-width: 480px) {
	.footer-left__head {
		margin: 0px 0px 30px 0px;
	}
}

.footer__title {
	font-family: Playfair Display;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.2;
	text-transform: uppercase;
	color: #FFFFFF;
}
.footer__title img {
	width: 165px;
}
@media (max-width: 992px) {
	.footer__title {
		font-size: 16px;
	}
}

.footer__title_cup {
	position: relative;
	padding: 0px 90px 0px 0px;
}
.footer__title_cup::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0px;
	width: 57px;
	height: 79px;
	background: url("../img/icons/cup.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 992px) {
	.footer__title_cup {
		padding: 0px 50px 0px 0px;
	}
	.footer__title_cup::after {
		width: 30px;
		height: 50px;
	}
}
@media (max-width: 700px) {
	.footer__title_cup::after {
		width: 40px;
		height: 50px;
	}
}

.footer__block {
	margin: 0px 0px 20px 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: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.footer__block p, .footer__block a {
	font-family: Arimo;
	font-size: 18px;
	line-height: 1.2;
	color: #FFFFFF;
	display: inline-block;
}
@media (max-width: 992px) {
	.footer__block p, .footer__block a {
		font-size: 16px;
	}
}

.footer__msg {
	position: relative;
}
.footer__msg::after {
	content: "";
	position: absolute;
	top: 0;
	right: -80px;
	width: 66px;
	height: 18px;
	background-size: cover;
}

.footer__whatsapp {
	width: 40px;
	height: 40px;
	margin: 10px 0px 0px 0px;
}

.footer__btn {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-family: Arimo;
	font-size: 17px;
	color: #000000;
	background: #FFFFFF;
	border-radius: 2px;
	height: 50px;
	max-width: 286px;
	padding: 10px 10px 10px 50px;
	text-align: center;
}
.footer__btn::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 16px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 26px;
	height: 27px;
	background: url("../img/icons/msg.svg") no-repeat;
	background-size: cover;
}
@media (max-width: 800px) {
	.footer__btn {
		font-size: 16px;
	}
}

.footer-right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
}

.footer-right__head {
	border-bottom: 2px solid #FFFFFF;
	min-height: 70px;
	margin: 0px 0px 60px 0px;
}

.gallery-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -12px;
}

.gallery-block__item {
	padding: 12px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
	background: url("../img/thanks/bg.jpg") no-repeat;
	background-size: 70%;
	background-position: center;
}
.gallery-block__item img {
	width: 100%;
}
@media (max-width: 700px) {
	.gallery-block__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 16.666%;
		        flex: 0 0 16.666%;
	}
}
@media (max-width: 480px) {
	.gallery-block__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.333%;
		        flex: 0 0 33.333%;
	}
}

.footer-left__footer {
	font-family: Arimo;
	font-size: 18px;
	line-height: 1.2;
	color: #FFFFFF;
	text-transform: uppercase;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding: 35px 0px 0px 0px;
	margin: 30px 52px 0px 0px;
}
@media (max-width: 992px) {
	.footer-left__footer {
		margin: 10px 20px 0px 0px;
		font-size: 16px;
	}
}
@media (max-width: 700px) {
	.footer-left__footer {
		margin: 50px 0px 0px 0px;
	}
}

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

.hero {
	position: relative;
	height: 100vh;
}
@media (max-width: 1366px) and (max-height: 600px) {
	.hero {
		height: 100%;
	}
}

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

.hero__content {
	position: relative;
	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;
	width: 100%;
	padding: 140px 15px 40px 15px;
}
@media (max-width: 700px) {
	.hero__content {
		padding: 100px 15px 40px 15px;
	}
}

.hero__theboss {
	width: 232px;
	opacity: 0;
	visibility: hidden;
	position: relative;
}
.hero__theboss._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 1s ease 0.3s;
	-o-transition: all 1s ease 0.3s;
	transition: all 1s ease 0.3s;
}
.hero__theboss img {
	width: 100%;
}
@media (max-height: 812px) {
	.hero__theboss {
		width: 150px;
	}
}
@media (max-width: 700px) {
	.hero__theboss {
		width: 100px;
	}
}

.hero__title {
	position: relative;
	margin: -120px 0px 65px 0px;
	text-shadow: 1px 1px 15px #EAF0F5;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.hero__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: 992px) {
	.hero__title {
		margin: -118px 0px 30px 0px;
	}
}
@media (max-width: 1600px) and (max-height: 812px) {
	.hero__title {
		font-size: 40px;
		margin: -80px 0px 30px 0px;
	}
}
@media (max-width: 480px) and (max-height: 812px) {
	.hero__title {
		font-size: 26px;
		margin: -52px 0px 30px 0px;
	}
}

.hero__list li {
	font-family: Noto Sans Display;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.9;
	text-align: center;
	text-transform: uppercase;
	color: #000000;
	text-shadow: 1px 1px 15px #EAF0F5;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.hero__list li._active {
	opacity: 1;
	visibility: visible;
	top: 0;
}
.hero__list li:nth-child(1)._active {
	-webkit-transition: all 0.7s ease 0.3s;
	-o-transition: all 0.7s ease 0.3s;
	transition: all 0.7s ease 0.3s;
}
.hero__list li:nth-child(2)._active {
	-webkit-transition: all 0.7s ease 0.4s;
	-o-transition: all 0.7s ease 0.4s;
	transition: all 0.7s ease 0.4s;
}
.hero__list li:nth-child(3)._active {
	-webkit-transition: all 0.7s ease 0.5s;
	-o-transition: all 0.7s ease 0.5s;
	transition: all 0.7s ease 0.5s;
}
.hero__list li:nth-child(4)._active {
	-webkit-transition: all 0.7s ease 0.6s;
	-o-transition: all 0.7s ease 0.6s;
	transition: all 0.7s ease 0.6s;
}
.hero__list li:nth-child(5)._active {
	-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) {
	.hero__list li {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.hero__list li {
		font-size: 16px;
	}
}
@media (max-height: 880px) {
	.hero__list li {
		font-size: 18px;
	}
}

.about {
	padding: 60px 0 0 0;
}

.about__text p {
	font-family: Noto Sans Display;
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 1.2;
	text-align: center;
	color: #2F3035;
}
@media (max-width: 480px) {
	.about__text p {
		font-size: 16px;
	}
}

.included {
	padding: 200px 0px 100px 0px;
}
@media (max-width: 768px) {
	.included {
		padding: 140px 0px 60px 0px;
	}
}

.included-title {
	position: relative;
	margin: 0px 0px 76px 0px;
}
.included-title .title {
	position: relative;
	z-index: 2;
}
@media (max-width: 992px) {
	.included-title {
		margin: 0px 0px 40px 0px;
	}
}

.included-title__total {
	position: absolute;
	z-index: 1;
	top: -100px;
	left: calc(50% + 30px);
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 324px;
	height: 140px;
	background: url("../img/included/pricetag.webp") no-repeat;
	background-size: contain;
}
@media (max-width: 768px) {
	.included-title__total {
		width: 250px;
		top: -80px;
	}
}

.included-title__num {
	position: absolute;
	left: 40px;
	top: 35px;
	font-size: 48px;
}
.included-title__num span {
	font-size: 25px;
}
@media (max-width: 768px) {
	.included-title__num {
		font-size: 35px;
		top: 40px;
		left: 50px;
	}
	.included-title__num span {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.included-title__num {
		top: 35px;
	}
}

.included__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;
}

.included__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	width: 100%;
	margin: 0px -15px 110px -15px;
}
@media (max-width: 1170px) {
	.included__items {
		width: calc(100% + 20px);
		margin: 0px -7px 80px -7px;
	}
}
@media (max-width: 992px) {
	.included__items {
		margin: 0px -7px 40px -7px;
	}
}

.included-item {
	padding: 15px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
	cursor: pointer;
	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;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.included-item._active {
	opacity: 1;
	visibility: visible;
	top: 0;
}
.included-item:nth-child(1)._active {
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
}
.included-item:nth-child(2)._active {
	-webkit-transition: all 0.7s ease 0.3s;
	-o-transition: all 0.7s ease 0.3s;
	transition: all 0.7s ease 0.3s;
}
.included-item:nth-child(3)._active {
	-webkit-transition: all 0.7s ease 0.4s;
	-o-transition: all 0.7s ease 0.4s;
	transition: all 0.7s ease 0.4s;
}
.included-item:nth-child(4)._active {
	-webkit-transition: all 0.7s ease 0.5s;
	-o-transition: all 0.7s ease 0.5s;
	transition: all 0.7s ease 0.5s;
}
.included-item:nth-child(5)._active {
	-webkit-transition: all 0.7s ease 0.6s;
	-o-transition: all 0.7s ease 0.6s;
	transition: all 0.7s ease 0.6s;
}
.included-item:nth-child(6)._active {
	-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: 1170px) {
	.included-item {
		padding: 7px;
	}
}
@media (max-width: 700px) {
	.included-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}

.included-item__row {
	border: 3px solid #E7ECF3;
	border-radius: 32px;
	padding: 20px;
	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;
	height: 100%;
}
.included-item__row .checkbox {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.included-item__row .checkbox .checkbox__input {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: none;
	cursor: pointer;
}
.included-item__row .checkbox .checkbox__label {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: calc(100% + 6px);
	height: calc(100% + 6px);
	border-radius: 32px;
}
.included-item__row .checkbox .checkbox__label span {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 37px;
	height: 37px;
	border-radius: 50%;
	background: url("../img/included/check.webp") no-repeat;
	background-size: contain;
	display: block;
}
@media (max-width: 480px) {
	.included-item__row .checkbox .checkbox__label span {
		width: 25px;
		height: 25px;
	}
}
@media (max-width: 480px) {
	.included-item__row .checkbox .checkbox__label {
		border-radius: 20px;
	}
}
@media (max-width: 480px) {
	.included-item__row {
		border-radius: 20px;
		padding: 20px 10px;
	}
}

.included-item._checked .included-item__row {
	-webkit-box-shadow: 0px 4px 19px rgba(55, 91, 115, 0.72);
	        box-shadow: 0px 4px 19px rgba(55, 91, 115, 0.72);
}
.included-item._checked .included-item__img {
	display: none;
}
.included-item._checked .included-item__img_act {
	display: block;
}
.included-item._checked .checkbox__label {
	border: 6px solid #182F52;
}
.included-item._checked .checkbox__label span {
	background: url("../img/included/check_act.webp") no-repeat;
	right: 4px;
	top: 4px;
	width: 37px;
	height: 37px;
	background-size: contain;
	display: block;
}
@media (max-width: 480px) {
	.included-item._checked .checkbox__label span {
		width: 25px;
		height: 25px;
		right: 6px;
		top: 6px;
	}
}
@media (max-width: 480px) {
	.included-item._checked .checkbox__label {
		border: 4px solid #182F52;
	}
}

.included-item__img {
	max-width: 230px;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 60% 0px;
	width: 100%;
}
.included-item__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.included-item__img_act {
	display: none;
}

.included-item__title {
	font-family: Noto Sans Display;
	font-weight: 600;
	font-size: 22px;
	line-height: 1.16;
	text-align: center;
	text-transform: uppercase;
	color: #000000;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	margin: 0px 0px 10px 0px;
}
@media (max-width: 768px) {
	.included-item__title {
		font-size: 18px;
	}
}
@media (max-width: 480px) {
	.included-item__title {
		font-size: 14px;
	}
}

.included-item__price {
	font-family: Noto Sans Display;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	text-align: center;
	text-transform: uppercase;
	color: #2B6793;
	position: relative;
	padding: 0px 12px 0px 0px;
}
.included-item__price::after {
	content: "₽";
	position: absolute;
	top: 0;
	right: 0;
	font-size: 18px;
}
@media (max-width: 480px) {
	.included-item__price {
		font-size: 16px;
		padding: 0px 10px 0px 0px;
	}
	.included-item__price::after {
		font-size: 16px;
	}
}

.included-lenght {
	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;
	max-width: 436px;
	margin: 0px 0px 35px 0px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.included-lenght._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;
}
.included-lenght .quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	border-radius: 16px;
	border: 3px solid #EDEFF2;
	position: relative;
}
.included-lenght .quantity input {
	font-family: Noto Sans Display;
	background: none;
	font-weight: 600;
	font-size: 25px;
	text-align: center;
	text-transform: uppercase;
	color: #2B6793;
	padding: 0px 25px 0px 0px;
}
@media (max-width: 480px) {
	.included-lenght .quantity input {
		font-size: 20px;
	}
}
.included-lenght .quantity__buttons {
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	right: -3px;
	width: 34px;
	height: calc(100% + 4px);
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 34px;
	        flex: 0 0 34px;
	border: 2px solid #E5EBF4;
	border-radius: 12px;
	overflow: hidden;
}
.included-lenght .quantity__button {
	width: 100%;
	height: 50%;
}

.included-lenght__title {
	font-family: Noto Sans Display;
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.4;
	text-transform: uppercase;
	color: #000000;
	margin: 0px 20px 0px 0px;
}
@media (max-width: 480px) {
	.included-lenght__title {
		font-size: 16px;
	}
}

.included-total {
	background: #FFFFFF;
	border-radius: 25px;
	border: 3px solid #F0F0F0;
	width: 600px;
	max-width: 100%;
	margin: 0 auto;
	position: relative;
	padding: 2px 25px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.included-total._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: 600px) {
	.included-total {
		width: auto;
		max-width: 100%;
		padding: 20px;
	}
}

.included-total__sum {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-family: Noto Sans Display;
	font-size: 40px;
	font-weight: 600;
	font-size: 20px;
	text-transform: uppercase;
	color: #000000;
}
.included-total__sum span {
	padding: 0px 10px;
	font-size: 40px;
	letter-spacing: 0.035em;
	color: #2B6793;
}
@media (max-width: 600px) {
	.included-total__sum {
		text-align: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		margin: 0px 0px 10px 0px;
	}
}
@media (max-width: 480px) {
	.included-total__sum {
		font-size: 18px;
	}
	.included-total__sum span {
		font-size: 34px;
	}
}

.included-total__btn {
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	right: 0;
}
@media (max-width: 600px) {
	.included-total__btn {
		position: relative;
		top: 0;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
	}
}
@media (min-width: 768px) {
	.included-total__btn:hover {
		top: 50%;
		right: 0;
		-webkit-transform: translate(0, -50%) scale(1.05);
		    -ms-transform: translate(0, -50%) scale(1.05);
		        transform: translate(0, -50%) scale(1.05);
	}
}

.examples {
	position: relative;
	padding: 105px 0px 90px 0px;
}
@media (max-width: 768px) {
	.examples {
		padding: 80px 0px;
	}
}
@media (max-width: 480px) {
	.examples {
		padding: 60px 0px;
	}
}

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

.examples__content {
	position: relative;
}

.examples__title {
	margin: 0px 0px 78px 0px;
}

.examples__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;
}

.examples__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -15px;
	width: 100%;
}
@media (max-width: 1170px) {
	.examples__items {
		width: calc(100% + 20px);
		margin: -7px;
	}
}

.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;
	-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 (min-width: 768px) {
	.examples__item:hover .examples__pic::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);
	}
}
.examples__item._hidden {
	display: none;
}
@media (max-width: 1170px) {
	.examples__item {
		padding: 7px;
	}
}
@media (max-width: 700px) {
	.examples__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}

.examples__pic {
	margin: 0px 0px 20px 0px;
	padding: 0px 0px 76% 0px;
	position: relative;
}
.examples__pic img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	border-radius: 32px;
	-webkit-box-shadow: 0px 19px 25px -16px rgba(34, 60, 80, 0.8);
	        box-shadow: 0px 19px 25px -16px rgba(34, 60, 80, 0.8);
}
@media (max-width: 480px) {
	.examples__pic img {
		border-radius: 16px;
	}
}
.examples__pic a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.examples__pic::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: 78px;
	height: 78px;
	background: url("../img/icons/play.png") no-repeat;
	background-size: cover;
	pointer-events: none;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
	.examples__pic::before {
		width: 50px;
		height: 50px;
	}
}
@media (max-width: 480px) {
	.examples__pic {
		margin: 0px 0px 15px 0px;
	}
}

.examples__name {
	font-family: Noto Sans Display;
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	color: #000000;
}
@media (max-width: 992px) {
	.examples__name {
		font-size: 18px;
	}
}
@media (max-width: 768px) {
	.examples__name {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.examples__name {
		font-size: 14px;
	}
}

.examples__btn {
	margin: 77px 0px 0px 0px;
	position: relative;
	cursor: pointer;
}
.examples__btn::after {
	content: "";
	position: absolute;
	bottom: -35px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 23px;
	height: 20px;
	background: url("../img/icons/arrows.svg") no-repeat;
	background-size: cover;
	-webkit-animation-name: mouse;
	        animation-name: mouse;
	-webkit-animation-timing-function: ease-out;
	        animation-timing-function: ease-out;
	-webkit-animation-duration: 2s;
	        animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
}
@media (max-width: 768px) {
	.examples__btn {
		margin: 50px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	.examples__btn {
		width: 197px;
		height: 60px;
	}
}

@-webkit-keyframes mouse {
	0% {
		bottom: -35px;
	}
	50% {
		bottom: -45px;
	}
	100% {
		bottom: -35px;
	}
}

@keyframes mouse {
	0% {
		bottom: -35px;
	}
	50% {
		bottom: -45px;
	}
	100% {
		bottom: -35px;
	}
}
.stages {
	position: relative;
	padding: 158px 0px 90px 0px;
}
@media (max-width: 1170px) {
	.stages {
		padding: 100px 0px 90px 0px;
	}
}
@media (max-width: 768px) {
	.stages {
		padding: 80px 0px;
	}
}
@media (max-width: 480px) {
	.stages {
		padding: 60px 0px;
	}
}

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

.stages__content {
	position: relative;
}

.stages__title {
	margin: 0px 0px 200px 0px;
}
@media (max-width: 1170px) {
	.stages__title {
		margin: 0px 0px 100px 0px;
	}
}
@media (max-width: 992px) {
	.stages__title {
		margin: 0px 0px 40px 0px;
	}
}

.stages__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 0px 165px 0px;
}
@media (max-width: 768px) {
	.stages__row {
		margin: 0px 0px 100px 0px;
	}
}
@media (max-width: 700px) {
	.stages__row {
		margin: 0px 0px 120px 0px;
	}
}

.stages-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	margin: 0px 0px 140px 0px;
	position: relative;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.stages-item._active {
	opacity: 1;
	visibility: visible;
	top: 0;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
}
.stages-item:nth-child(1)::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 156px;
	left: 135px;
	width: 750px;
	height: 304px;
	background: url("../img/stages/1-2.webp") no-repeat;
	background-position: center top;
	background-size: contain;
}
@media (max-width: 1100px) {
	.stages-item:nth-child(1)::after {
		width: 600px;
	}
}
@media (max-width: 992px) {
	.stages-item:nth-child(1)::after {
		width: 500px;
	}
}
@media (max-width: 860px) {
	.stages-item:nth-child(1)::after {
		width: 400px;
		height: 250px;
		background-position: center;
	}
}
@media (max-width: 768px) {
	.stages-item:nth-child(1)::after {
		width: 370px;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
	}
}
@media (max-width: 700px) {
	.stages-item:nth-child(1) .stages-item__pic {
		left: -20px;
	}
}
.stages-item:nth-child(2)::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 156px;
	left: 225px;
	width: 589px;
	height: 457px;
	background: url("../img/stages/2-1.webp") no-repeat;
	background-position: center top;
	background-size: contain;
}
@media (max-width: 992px) {
	.stages-item:nth-child(2)::after {
		width: 500px;
		left: 125px;
	}
}
@media (max-width: 860px) {
	.stages-item:nth-child(2)::after {
		width: 400px;
	}
}
@media (max-width: 768px) {
	.stages-item:nth-child(2)::after {
		width: 370px;
	}
}
@media (max-width: 700px) {
	.stages-item:nth-child(2) .stages-item__pic {
		left: 10px;
	}
}
.stages-item:nth-child(3)::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 230px;
	left: 160px;
	width: 750px;
	height: 304px;
	background: url("../img/stages/3-1.webp") no-repeat;
	background-position: center top;
	background-size: contain;
}
@media (max-width: 1100px) {
	.stages-item:nth-child(3)::after {
		width: 600px;
	}
}
@media (max-width: 992px) {
	.stages-item:nth-child(3)::after {
		width: 500px;
	}
}
@media (max-width: 860px) {
	.stages-item:nth-child(3)::after {
		width: 400px;
		height: 250px;
	}
}
@media (max-width: 768px) {
	.stages-item:nth-child(3)::after {
		width: 370px;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
	}
}
.stages-item:nth-child(4)::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 293px;
	left: 221px;
	width: 585px;
	height: 429px;
	background: url("../img/stages/4-1.webp") no-repeat;
	background-position: center top;
	background-size: contain;
}
@media (max-width: 1100px) {
	.stages-item:nth-child(4)::after {
		width: 500px;
	}
}
@media (max-width: 992px) {
	.stages-item:nth-child(4)::after {
		width: 500px;
	}
}
@media (max-width: 900px) {
	.stages-item:nth-child(4)::after {
		width: 450px;
		left: 150px;
	}
}
@media (max-width: 768px) {
	.stages-item:nth-child(4)::after {
		width: 400px;
		left: 280px;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
	}
}
@media (max-width: 700px) {
	.stages-item:nth-child(4) .stages-item__pic {
		left: 20px;
	}
}
.stages-item:last-child {
	margin: 0;
}
@media (max-width: 768px) {
	.stages-item {
		margin: 0px 0px 120px 0px;
	}
}
@media (max-width: 700px) {
	.stages-item {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		margin: 0px 0px 50px 0px;
	}
	.stages-item::after {
		display: none;
	}
}

.stages-item_l {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.stages-item_l .stages-item__body {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
@media (max-width: 700px) {
	.stages-item_l .stages-item__body {
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}
@media (max-width: 700px) {
	.stages-item_l {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}

.stages-item__body {
	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;
}
@media (max-width: 700px) {
	.stages-item__body {
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}

.stages-item__pic {
	width: calc(250px + 100 * ((100vw - 320px) / 1600));
	margin: 0px 0px 10px 0px;
	position: relative;
}
.stages-item__pic img {
	width: 100%;
}

.stages-item__name {
	font-family: Playfair Display;
	font-weight: bold;
	font-size: 30px;
	font-size: calc(16px + 14 * ((100vw - 320px) / 1600));
	line-height: 1.15;
	color: #000000;
	position: relative;
	padding: 0px 0px 0px 55px;
	max-width: 440px;
}
.stages-item__name span {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 43px;
	height: 43px;
	width: calc(30px + 13 * ((100vw - 320px) / 1600));
	height: calc(30px + 13 * ((100vw - 320px) / 1600));
	border-radius: 50%;
	background: url("../img/stages/circle.jpg") no-repeat;
	background-size: contain;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: calc(16px + 14 * ((100vw - 320px) / 1600));
	padding: 3px 0px 0px 0px;
}

.stages__btn {
	position: relative;
	z-index: 1;
	margin: 0px 0px 0px 220px;
	width: 380px;
}
.stages__btn .btn {
	width: 100%;
	background: url("../img/btn_bg1.webp") no-repeat;
	font-family: Playfair Display;
	font-weight: bold;
	font-size: 40px;
	color: #2F3035;
	text-transform: none;
}
@media (max-width: 768px) {
	.stages__btn .btn {
		background-position: center;
		font-size: 20px;
	}
}
.stages__btn::after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 30px;
	left: 370px;
	width: 248px;
	height: 248px;
	background: url("../img/stages/5-1.webp") no-repeat;
	background-position: center top;
	background-size: contain;
}
@media (max-width: 992px) {
	.stages__btn::after {
		width: 180px;
		bottom: -30px;
	}
}
@media (max-width: 768px) {
	.stages__btn::after {
		width: 195px;
		bottom: -14px;
		left: 291px;
	}
}
@media (max-width: 700px) {
	.stages__btn::after {
		display: none;
	}
}
@media (max-width: 992px) {
	.stages__btn {
		margin: 0px 0px 0px 100px;
	}
}
@media (max-width: 768px) {
	.stages__btn {
		margin: 0;
		width: 270px;
	}
}
@media (max-width: 700px) {
	.stages__btn {
		margin: 0 auto;
	}
}

.stages__go {
	position: absolute;
	top: -110px;
	left: 0;
	width: 150px;
	-webkit-animation-name: rocket;
	        animation-name: rocket;
	-webkit-animation-timing-function: ease-out;
	        animation-timing-function: ease-out;
	-webkit-animation-duration: 2s;
	        animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
}
.stages__go img {
	width: 100%;
}
@media (max-width: 768px) {
	.stages__go {
		width: 110px;
		top: -90px;
	}
}

@-webkit-keyframes rocket {
	0% {
		top: -117px;
	}
	50% {
		top: -110px;
	}
	100% {
		top: -117px;
	}
}

@keyframes rocket {
	0% {
		top: -117px;
	}
	50% {
		top: -110px;
	}
	100% {
		top: -117px;
	}
}
@media (max-width: 768px) {
	@-webkit-keyframes rocket {
		0% {
			top: -95px;
		}
		50% {
			top: -90px;
		}
		100% {
			top: -95px;
		}
	}
	@keyframes rocket {
		0% {
			top: -95px;
		}
		50% {
			top: -90px;
		}
		100% {
			top: -95px;
		}
	}
}
.super {
	background: #E9F3F9 url("../img/super/bg.webp") no-repeat;
	background-size: 880px;
	background-position: bottom left;
	padding: 50px 0px 155px 0px;
	position: relative;
}
@media (max-width: 768px) {
	.super {
		background-size: 100%;
	}
}

.super__title {
	color: #2D4A60;
	margin: 0px 0px 20px 0px;
}

.super-block {
	background: #FEFEFF;
	-webkit-box-shadow: 0px 4px 47px rgba(43, 103, 147, 0.4);
	        box-shadow: 0px 4px 47px rgba(43, 103, 147, 0.4);
	border-radius: 32px;
	border: 3px solid #F0F0F0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.super-block._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;
}

.super-block__body {
	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: 80px 20px 40px 20px;
}

.super-block__date {
	font-family: Noto Sans Display;
	font-size: 33px;
	text-align: center;
	color: #2F3035;
	margin: 0px 0px 50px 0px;
}
@media (max-width: 768px) {
	.super-block__date {
		font-size: 26px;
	}
}
@media (max-width: 480px) {
	.super-block__date {
		font-size: 22px;
	}
}

.super-block__counter {
	margin: -40px 0px 0px 0px;
}
@media (max-width: 480px) {
	.super-block__counter {
		margin: -30px 0px 15px 0px;
	}
}

.super-block__subtitle {
	font-family: Noto Sans Display;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	color: #000000;
	margin: 0px 0px 30px 0px;
}
@media (max-width: 768px) {
	.super-block__subtitle {
		font-size: 22px;
	}
}

.super-block__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media (max-width: 650px) {
	.super-block__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.super-block-col {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 420px;
	        flex: 0 0 420px;
	border-radius: 32px;
	border: 3px solid #E5EBF4;
	padding: 35px 20px;
	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;
	margin: 0px 70px 0px 0px;
	position: relative;
}
.super-block-col:first-child::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: -55px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	color: #2D4A60;
	font-size: 60px;
	font-weight: bold;
	font-family: Noto Sans Display;
}
.super-block-col:last-child {
	margin: 0;
}
@media (max-width: 992px) {
	.super-block-col {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 420px;
		        flex: 0 1 420px;
	}
}
@media (max-width: 650px) {
	.super-block-col {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 100%;
		margin: 0px 0px 70px 0px;
	}
	.super-block-col:first-child::after {
		bottom: -65px;
		top: unset;
		right: unset;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
	}
}

.super-block-col__tite {
	font-family: Playfair Display;
	font-style: normal;
	font-weight: bold;
	font-size: 22px;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	color: #2D4A60;
	margin: 0px 0px 20px 0px;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}

.super-block-col__text {
	font-family: Noto Sans Display;
	font-size: 20px;
	line-height: 1.3;
	text-align: center;
	color: #2F3035;
	max-width: 270px;
}
.super-block-col__text span {
	font-weight: 600;
	text-transform: uppercase;
	color: #6D94B1;
}
@media (max-width: 768px) {
	.super-block-col__text {
		font-size: 16px;
	}
}

.super-block__footer {
	background: #6D7886;
	padding: 40px 20px;
}

.rotor-group-heading {
	font-size: 20px;
	margin: 0px 0px 5px 0px;
}

.flipdown {
	-webkit-transform: scale(0.55);
	    -ms-transform: scale(0.55);
	        transform: scale(0.55);
}
@media (max-width: 550px) {
	.flipdown {
		-webkit-transform: scale(0.8);
		    -ms-transform: scale(0.8);
		        transform: scale(0.8);
	}
}

.rotor-leaf-rear,
.rotor-leaf-front,
.rotor-top {
	background-color: #46637E !important;
}

.rotor-bottom {
	background-color: #386388 !important;
}