@import "../../fonts/stylesheet.css";
* {
	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: "Futura New Medium - Reg";
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: "Futura New Medium - Reg";
}

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

.title {
	color: #fbfcfc;
	font-family: Cooper;
	font-size: calc(16px + 14 * ((100vw - 320px) / 1600));
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.2;
}

.title-line {
	background: #fe4102;
	padding: 24px;
	position: relative;
}
.title-line::after {
	content: "";
	position: absolute;
	z-index: 3;
	top: 100%;
	left: 70%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 100%;
	height: 30px;
	background: url("../img/title-line-decor.svg") no-repeat;
	background-size: contain;
	background-position: top;
}
@media (max-width: 768px) {
	.title-line::after {
		left: 45%;
	}
}
@media (max-width: 480px) {
	.title-line {
		padding: 10px 24px;
	}
}

.mb {
	margin: 0px 0px 80px 0px;
}
@media (max-width: 480px) {
	.mb {
		margin: 0px 0px 40px 0px;
	}
}

.popup .form__item {
	margin: 0px 0px 30px 0px;
	font-size: 0;
}
.popup .form__error {
	color: red;
	margin: 5px 0px 0px 10px;
}

.form__error {
	position: absolute;
	bottom: -25px;
	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%;
	font-size: 18px;
	padding: 3px 10px;
}

#form {
	position: relative;
}

.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: 100%;
	width: 100%;
	background: #eee;
	color: #000476;
	font-family: cooper;
	text-align: center;
	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: 30px;
}
.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: 120px;
	height: 120px;
	background: url("../img/icons/ok.svg") no-repeat;
	background-size: cover;
}
@media (max-width: 480px) {
	.form__sent {
		border-radius: 20px;
	}
	.form__sent::after {
		width: 80px;
		height: 80px;
	}
}

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

.input {
	border-radius: 20px;
	width: 100%;
	display: block;
	padding: 20px;
	height: 20px;
	font-size: 20px;
}
.input._error {
	border: 1px solid red;
}

textarea.input {
	resize: none;
	padding: 0px 0px;
}

.checkbox {
	padding: 0px 30px;
}

.checkbox._error .checkbox__label::before {
	-webkit-box-shadow: 0 0 15px red;
	        box-shadow: 0 0 15px red;
}

.checkbox__input {
	display: none;
}

.checkbox__input:checked + .checkbox__label::after {
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

.checkbox__label {
	font-size: 20px;
	line-height: 140%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	cursor: pointer;
	width: 100%;
}
@media (max-width: 480px) {
	.checkbox__label {
		font-size: 16px;
	}
}

.checkbox__label_hid {
	pointer-events: none;
}

.checkbox__label::before {
	content: "";
	-ms-flex-item-align: start;
	    align-self: flex-start;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 24px;
	        flex: 0 0 24px;
	height: 24px;
	background-color: #fff;
	border-radius: 4px;
	margin: 0px 10px 0px 0px;
}

.checkbox__label::after {
	-webkit-transition: -webkit-transform 0.5s ease 0s;
	transition: -webkit-transform 0.5s ease 0s;
	-o-transition: transform 0.5s ease 0s;
	transition: transform 0.5s ease 0s;
	transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
	content: "";
	width: 16px;
	height: 16px;
	position: absolute;
	top: 4px;
	left: 4px;
	background-color: #7C07B3;
	border-radius: 4px;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
}

.checkbox__label a {
	color: #7a956b;
}

.checkbox__label span {
	width: 100%;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 100%;
	        flex: 0 0 100%;
}

.prices-block__calc {
	max-width: 500px;
	margin: 0 auto;
}
.prices-block__calc .form__item {
	margin: 0px 0px 20px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.prices-block__calc .prices-block-calc__title {
	margin: 0px 0px 30px 0px;
	text-transform: none;
	font-size: calc(24px + 24 * ((100vw - 320px) / 1600));
	color: #fe4102;
}

.prices-block-calc__result {
	font-family: "Futura New Bold - Reg";
	font-size: 24px;
	text-align: center;
	color: #6abd6a;
	padding: 0px 30px;
}
.prices-block-calc__result span {
	color: #000;
	font-family: "Futura New";
	margin: 0px 10px 0px 0px;
}
@media (max-width: 480px) {
	.prices-block-calc__result {
		font-size: 20px;
	}
}

.prices-block-calc__tippy {
	cursor: pointer;
}
.prices-block-calc__tippy img {
	width: 30px;
}

.tippy-box {
	color: #000;
	font-size: 16px;
	background: #fff;
}

.tippy-arrow {
	color: #fff;
}

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

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

.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.9);
	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;
	padding: 0px;
	width: 100%;
	max-width: 700px;
}
.popup__close {
	width: 15px;
	height: 15px;
	position: absolute;
	top: 25px;
	right: 5px;
	cursor: pointer;
	z-index: 30;
	background: url("../img/icons/close-w.svg?v=1") 0 0 no-repeat;
	background-size: contain;
}
.popup iframe {
	width: 100%;
	height: 500px;
}
@media (max-width: 480px) {
	.popup iframe {
		height: 250px;
	}
}

.popup-callback .popup__body {
	padding: 20px 0px 0px 0px;
	max-width: 800px;
	height: 570px;
}
.popup-callback .popup__title {
	color: #0b0251;
	margin: 0px 0px 40px 0px;
}
.popup-callback iframe {
	width: 100%;
	height: 100%;
}
@media (max-width: 480px) {
	.popup-callback {
		height: calc(100vh - 50px);
	}
}

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

.popup-video .popup__body {
	max-width: 1300px;
}
.popup-video .popup__close {
	top: 11px;
	right: -36px;
	width: 36px;
	height: 36px;
	background: url("../img/icons/close-w.svg?v=1") 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;
}

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

.toptitle {
	position: relative;
}

.toptitle__row {
	width: calc(300px + 650 * ((100vw - 320px) / 1600));
	height: calc(80px + 120 * ((100vw - 320px) / 1600));
	padding-bottom: calc(20px + 30 * ((100vw - 320px) / 1600));
	margin: 0 auto;
	position: relative;
}

.hero__contacts {
	position: absolute;
	z-index: 10;
	top: 20px;
	right: 20px;
	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: 700px) {
	.hero__contacts {
		top: calc(20px + 40 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 992px) {
	.hero__contacts {
		position: relative;
		right: 0;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		margin: 0px 0px 30px 0px;
	}
}

.hero__wa {
	width: 40px;
	height: 40px;
	display: block;
	background: url("../img/icons/whatsapp.svg") no-repeat;
	background-size: cover;
}

.hero__phone {
	padding: 0px 0px 0px 15px;
	color: #000;
	font-size: 18px;
	font-weight: bold;
}
@media (max-width: 800px) {
	.hero__phone {
		font-size: 16px;
	}
	.hero__phone::before {
		width: 30px;
		height: 30px;
	}
}
@media (max-width: 480px) {
	.hero__phone::before {
		width: 35px;
		height: 35px;
	}
}
@media (max-width: 350px) {
	.hero__phone {
		right: 5px;
	}
}

.toptitle__title {
	font-family: cooper;
	position: relative;
	color: #fc0624;
	font-size: calc(30px + 60 * ((100vw - 320px) / 1600));
	top: calc(5px + 5 * ((100vw - 320px) / 1600));
}
.toptitle__title span {
	text-align: right;
	color: #0b0251;
	text-transform: uppercase;
	font-size: calc(30px + 60 * ((100vw - 320px) / 1600));
	position: absolute;
	top: calc(30px + 55 * ((100vw - 320px) / 1600));
	right: 0;
	width: 100%;
	height: 100%;
}

.toptitle__subtitle {
	font-family: Coca-Cola;
	font-size: calc(15px + 30 * ((100vw - 320px) / 1600));
	display: inline-block;
	-ms-transform: rotate(-10deg);
	-webkit-transform: rotate(-10deg);
	transform: rotate(-10deg);
	position: absolute;
	top: calc(25px + 30 * ((100vw - 320px) / 1600));
	left: calc(50px + 130 * ((100vw - 320px) / 1600));
	width: 100%;
	height: 100%;
}

.toptitle__bg {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 47%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: calc(100px + 229 * ((100vw - 320px) / 1600));
	height: 100%;
}
.toptitle__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.hero__video {
	background: url("../img/hero/bg.jpg") no-repeat;
	background-size: cover;
	background-position: center bottom;
	height: 100%;
	overflow: hidden;
	z-index: -100;
	position: relative;
	height: 100%;
}
.hero__video video {
	overflow: hidden;
	z-index: -100;
	position: relative;
	height: 100%;
	width: 100%;
}
@media (max-width: 480px) {
	.hero__video {
		display: none;
	}
}

.hero__video_m {
	display: none;
	background: url("../img/hero/bg.jpg") no-repeat;
	background-size: cover;
	background-position: center bottom;
	height: 100%;
	overflow: hidden;
	z-index: -100;
	position: relative;
	height: 100%;
}
.hero__video_m video {
	overflow: hidden;
	z-index: -100;
	position: relative;
	height: 100%;
	width: 100%;
}
@media (max-width: 480px) {
	.hero__video_m {
		display: block;
	}
}

.where {
	background: url("../img/where/bg.jpg") no-repeat;
	background-size: cover;
	background-position: bottom;
	margin: -7px 0px 0px 0px;
	position: relative;
	z-index: 2;
}
@media (max-width: 480px) {
	.where {
		padding: 50px 0px 0px 0px;
	}
}

.where__body {
	background: #e5c1fe;
	padding: 0px 0px 74px 0px;
	border-top-right-radius: calc(20px + 100 * ((100vw - 320px) / 1600));
	border-top-left-radius: calc(20px + 100 * ((100vw - 320px) / 1600));
	padding-right: calc(10px + 30 * ((100vw - 320px) / 1600));
	padding-left: calc(10px + 30 * ((100vw - 320px) / 1600));
}
@media (max-width: 700px) {
	.where__body {
		padding-bottom: 40px;
	}
}

.where-blocktitle {
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 30px;
}
.where-blocktitle._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;
}

.where__title {
	max-width: calc(250px + 625 * ((100vw - 320px) / 1600));
	padding-top: calc(5px + 15 * ((100vw - 320px) / 1600));
	padding-bottom: calc(30px + 30 * ((100vw - 320px) / 1600));
	margin: 0 auto;
	font-size: calc(16px + 14 * ((100vw - 320px) / 1600));
	background: url("../img/where/title_bg.svg") no-repeat;
	background-position: top right;
	background-size: cover;
}
.where__title span {
	text-transform: lowercase;
}

.where__subtitle {
	max-width: calc(300px + 700 * ((100vw - 320px) / 1600));
	background: url("../img/where/subtitle_bg.svg") no-repeat;
	background-position: left;
	background-size: cover;
	margin: -35px auto 0 auto;
	padding: 15px 10px 70px 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.where__subtitle p {
	max-width: 750px;
	color: #f8f8fb;
	font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	font-weight: 400;
	text-align: right;
}
@media (max-width: 480px) {
	.where__subtitle {
		background: none;
		padding: 35px 10px 20px 10px;
	}
	.where__subtitle p {
		color: #0b0251;
		text-align: center;
	}
}

.where__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.where__row._active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease 0.2s;
	-o-transition: all 0.7s ease 0.2s;
	transition: all 0.7s ease 0.2s;
	top: 0;
}
@media (max-width: 700px) {
	.where__row {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
}
@media (max-width: 480px) {
	.where__row {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}

.where-stand {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 332px;
	        flex: 0 1 332px;
	-webkit-box-shadow: 0 0 46px rgba(0, 0, 0, 0.54);
	        box-shadow: 0 0 46px rgba(0, 0, 0, 0.54);
	border-radius: 48px;
	border-radius: calc(10px + 38 * ((100vw - 320px) / 1600));
	background: #fefdfd;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 15px 10px 15px 20px;
	min-height: calc(100px + 80 * ((100vw - 320px) / 1600));
	position: relative;
}
.where-stand::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	height: 250px;
	width: calc(40px + 115 * ((100vw - 320px) / 1600));
	background: url("../img/where/stand.png") no-repeat;
	background-size: contain;
}
@media (max-width: 700px) {
	.where-stand {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 49%;
		        flex: 0 0 49%;
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
		margin: 0px 0px 20px 0px;
	}
	.where-stand::after {
		width: 0;
		height: 0;
	}
}
@media (max-width: 480px) {
	.where-stand {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 90%;
		        flex: 0 0 90%;
	}
}

.where-stand__left {
	margin: 0px 20px 0px 0px;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 50%;
	        flex: 1 1 50%;
}
.where-stand__left p {
	color: #0b0251;
	font-family: "Futura New Bold - Reg";
	font-size: calc(18px + 12 * ((100vw - 320px) / 1600));
}

.where-stand__right {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.where-stand__right img {
	width: 90%;
}

.where__player {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 600px;
	        flex: 1 1 600px;
	padding: 0px 20px;
	position: relative;
}
.where__player img {
	width: 100%;
	border-radius: 20px;
	-webkit-box-shadow: 0 0 34px rgba(0, 0, 0, 0.3);
	        box-shadow: 0 0 34px rgba(0, 0, 0, 0.3);
}
.where__player::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	pointer-events: none;
	width: 100px;
	height: 100px;
	background: url("../img/play.png") no-repeat;
	background-size: cover;
}
@media (max-width: 700px) {
	.where__player {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
		text-align: center;
	}
	.where__player img {
		width: 80%;
	}
}
@media (max-width: 480px) {
	.where__player img {
		width: 90%;
	}
}

.process {
	background: url("../img/process/bg.jpg") no-repeat;
	background-size: cover;
	background-position: top;
}

.process__body {
	background: #e5c1fe;
}

.process__video {
	text-align: center;
	padding: 40px;
}
.process__video a {
	color: #000381;
	font-family: "Futura New Heavy - Reg";
	text-align: center;
	font-size: calc(20px + 20 * ((100vw - 320px) / 1600));
	text-decoration: underline;
	position: relative;
	display: inline-block;
	padding: 0px 0px 0px 80px;
}
.process__video a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 70px;
	height: 50px;
	background: url("../img/icons/eye.svg") no-repeat;
	background-position: center;
	background-size: cover;
	-webkit-animation-name: eye;
	        animation-name: eye;
	-webkit-animation-timing-function: ease-out;
	        animation-timing-function: ease-out;
	-webkit-animation-duration: 1.5s;
	        animation-duration: 1.5s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
}
.process__video a:hover {
	text-decoration: none;
}

@-webkit-keyframes eye {
	0% {
		height: 50px;
	}
	50% {
		height: 0;
	}
	100% {
		height: 50px;
	}
}

@keyframes eye {
	0% {
		height: 50px;
	}
	50% {
		height: 0;
	}
	100% {
		height: 50px;
	}
}
.process__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding-left: calc(20px + 122 * ((100vw - 320px) / 1600));
	padding-right: calc(20px + 122 * ((100vw - 320px) / 1600));
	padding-top: 85px;
	padding-bottom: 55px;
}
@media (max-width: 1160px) {
	.process__items {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		padding-bottom: 0px;
	}
}
@media (max-width: 480px) {
	.process__items {
		padding-top: 40px;
	}
}

.process__item {
	text-align: center;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 20%;
	        flex: 0 0 20%;
	padding: 0px 15px;
	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: 30px;
}
.process__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;
}
.process__item:nth-child(1)._active {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.process__item:nth-child(2)._active {
	-webkit-transition: all 0.3s ease 0.1s;
	-o-transition: all 0.3s ease 0.1s;
	transition: all 0.3s ease 0.1s;
}
.process__item:nth-child(3)._active {
	-webkit-transition: all 0.3s ease 0.2s;
	-o-transition: all 0.3s ease 0.2s;
	transition: all 0.3s ease 0.2s;
}
.process__item:nth-child(4)._active {
	-webkit-transition: all 0.3s ease 0.3s;
	-o-transition: all 0.3s ease 0.3s;
	transition: all 0.3s ease 0.3s;
}
.process__item:nth-child(5)._active {
	-webkit-transition: all 0.3s ease 0.4s;
	-o-transition: all 0.3s ease 0.4s;
	transition: all 0.3s ease 0.4s;
}
.process__item::after {
	content: "";
	position: absolute;
	top: -50px;
	left: 70%;
	width: 125px;
	height: 45px;
	background: url("../img/process/arrow.png") no-repeat;
	background-size: contain;
}
.process__item:last-child::after {
	background: url("../img/process/arrow-big.png") no-repeat;
	background-size: contain;
	width: 320px;
	height: 250px;
	top: 100px;
	left: 20px;
}
@media (max-width: 1260px) {
	.process__item:last-child::after {
		width: 0;
		height: 0;
	}
}
@media (max-width: 1160px) {
	.process__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.333%;
		        flex: 0 0 33.333%;
		margin: 0px 0px 70px 0px;
	}
	.process__item:nth-child(3)::after {
		width: 0;
		height: 0;
	}
}
@media (max-width: 640px) {
	.process__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
	.process__item:nth-child(2)::after {
		width: 0;
		height: 0;
	}
	.process__item:nth-child(3)::after {
		width: 125px;
		height: 45px;
	}
	.process__item:nth-child(4)::after {
		width: 0;
		height: 0;
	}
}
@media (max-width: 480px) {
	.process__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		margin: 0px 0px 40px 0px;
	}
	.process__item::after {
		width: 0;
		height: 0;
	}
	.process__item:nth-child(3)::after {
		width: 0;
		height: 0;
	}
}

.process__img {
	height: 105px;
	margin: 0px 0px 30px 0px;
}
.process__img img {
	height: 100%;
}
@media (max-width: 480px) {
	.process__img {
		margin: 0px 0px 10px 0px;
	}
}

.process__title {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	-webkit-box-shadow: 0 0 34px rgba(0, 0, 0, 0.3);
	        box-shadow: 0 0 34px rgba(0, 0, 0, 0.3);
	border-radius: calc(10px + 38 * ((100vw - 320px) / 1600));
	background-color: #eed7fe;
	color: #000001;
	font-family: "Futura New Medium - Reg";
	padding: 20px;
	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(16px + 6 * ((100vw - 320px) / 1600));
}

.examples__title {
	padding: 30px 0px 95px 0px;
	background: url("../img/examples/title_bg.svg") no-repeat;
	background-size: cover;
	background-position: left;
	margin: 0px -15px 37px -15px;
}
@media (max-width: 768px) {
	.examples__title {
		margin: 0px -15px 0px -15px;
	}
}
@media (max-width: 480px) {
	.examples__title {
		padding: 20px 0px 70px 0px;
	}
}

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

.examples__item {
	padding: 0px 20px;
	width: 33.333%;
	margin: 0px 0px 80px 0px;
	position: relative;
}
.examples__item::after {
	content: "";
	position: absolute;
	top: 45%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	pointer-events: none;
	width: 100px;
	height: 100px;
	background: url("../img/play.png") no-repeat;
	background-size: cover;
}
.examples__item a {
	display: block;
	padding: 0px 0px 70% 0px;
}
.examples__item img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	border-radius: 20px;
	-webkit-box-shadow: 0 0 34px rgba(0, 0, 0, 0.3);
	        box-shadow: 0 0 34px rgba(0, 0, 0, 0.3);
}
.examples__item._hidden {
	display: none;
}
@media (max-width: 768px) {
	.examples__item {
		margin: 0px 0px 60px 0px;
	}
}
@media (max-width: 650px) {
	.examples__item {
		width: 50%;
	}
}
@media (max-width: 480px) {
	.examples__item {
		width: 100%;
		margin: 0px 0px 30px 0px;
	}
}

.examples__text {
	color: #000001;
	font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	margin: 10px 0px 0px 0px;
	text-align: center;
}

.advantages {
	background: url("../img/advantages/bg.jpg") no-repeat;
	background-size: cover;
}

.advantages__body {
	background: #e5c1fe;
	padding-top: calc(30px + 50 * ((100vw - 320px) / 1600));
	padding-left: calc(20px + 150 * ((100vw - 320px) / 1600));
	padding-right: calc(20px + 150 * ((100vw - 320px) / 1600));
	padding-bottom: calc(30px + 128 * ((100vw - 320px) / 1600));
}

.advantages__standblock {
	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: 600px) {
	.advantages__standblock {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}

.advantages-stand {
	-webkit-box-shadow: 0 0 46px rgba(0, 0, 0, 0.54);
	        box-shadow: 0 0 46px rgba(0, 0, 0, 0.54);
	border-radius: calc(10px + 30 * ((100vw - 320px) / 1600));
	background-color: #fefdfd;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
	margin-right: calc(30px + 84 * ((100vw - 320px) / 1600));
	padding: 30px 0px;
	opacity: 0;
	visibility: hidden;
	position: relative;
	-webkit-transform: scale(-1, 1);
	    -ms-transform: scale(-1, 1);
	        transform: scale(-1, 1);
}
.advantages-stand._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;
	-webkit-transform: scale(1, 1);
	    -ms-transform: scale(1, 1);
	        transform: scale(1, 1);
}
.advantages-stand:last-child {
	margin: 0;
}
.advantages-stand::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 31px;
	height: 100%;
	background: url("../img/advantages/handle.png") no-repeat;
	background-size: contain;
}
@media (max-width: 768px) {
	.advantages-stand::after {
		height: 80%;
	}
}
@media (max-width: 600px) {
	.advantages-stand {
		-webkit-box-flex: 1;
		    -ms-flex: 1 0 100%;
		        flex: 1 0 100%;
		margin: 0px 0px 20px 0px;
	}
	.advantages-stand::after {
		width: 0;
		height: 0;
	}
}
@media (max-width: 992px) {
	.advantages-stand {
		padding: 15px 0;
	}
}

.advantages-stand__title {
	color: #fcfcfd;
	font-family: Cooper;
	font-size: 56px;
	font-size: calc(18px + 38 * ((100vw - 320px) / 1600));
	text-transform: uppercase;
	font-weight: 400;
	background: url("../img/examples/title_bg.svg") no-repeat;
	background-size: cover;
	text-align: center;
	background-position: left;
	padding-bottom: calc(20px + 30 * ((100vw - 320px) / 1600));
	padding-top: calc(5px + 5 * ((100vw - 320px) / 1600));
}

.advantages-stand__title_b {
	background: none;
	font-size: calc(40px + 56 * ((100vw - 320px) / 1600));
	color: #fe4102;
	padding: 0px 0px 10px 0px;
}

.advantages-stand__text {
	color: #000001;
	font-size: calc(16px + 16 * ((100vw - 320px) / 1600));
	font-weight: 400;
	padding: 0px 20px;
}

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

.advantages-today__today {
	color: #fe4102;
	font-family: "Futura New Bold - Reg";
	font-size: 72px;
	font-size: calc(40px + 32 * ((100vw - 320px) / 1600));
	-webkit-box-shadow: 0 0 46px rgba(0, 0, 0, 0.54);
	        box-shadow: 0 0 46px rgba(0, 0, 0, 0.54);
	border-top-right-radius: calc(10px + 30 * ((100vw - 320px) / 1600));
	border-top-left-radius: calc(10px + 30 * ((100vw - 320px) / 1600));
	background-color: #fefdfd;
	text-align: center;
	padding-left: calc(20px + 25 * ((100vw - 320px) / 1600));
	padding-right: calc(20px + 25 * ((100vw - 320px) / 1600));
	padding-top: calc(5px + 15 * ((100vw - 320px) / 1600));
	padding-bottom: calc(5px + 15 * ((100vw - 320px) / 1600));
	margin: 85px 0px 0px 0px;
}
@media (max-width: 600px) {
	.advantages-today__today {
		margin: 25px 0px 0px 0px;
	}
}

.advantages-today__date {
	text-align: center;
	color: #fe4102;
	font-family: "Futura New Bold - Reg";
	font-size: 72px;
	font-size: calc(18px + 54 * ((100vw - 320px) / 1600));
	width: 875px;
	max-width: 90%;
	background: url("../img/where/title_bg.svg") no-repeat;
	background-size: cover;
	background-position: left;
	padding: 20px 0px 40px 0px;
	padding-top: calc(10px + 10 * ((100vw - 320px) / 1600));
	padding-bottom: calc(20px + 20 * ((100vw - 320px) / 1600));
	position: relative;
	z-index: 1;
}

.advantages-today__title {
	color: #fbfcfc;
	font-family: Cooper;
	font-size: calc(22px + 66 * ((100vw - 320px) / 1600));
	text-align: center;
	background: url("../img/where/subtitle_bg.svg") no-repeat;
	background-size: cover;
	background-position: right bottom;
	padding: 10px 0px 0px 0px;
	padding-bottom: calc(30px + 40 * ((100vw - 320px) / 1600));
	width: 1010px;
	max-width: 100%;
	margin-top: calc(-10px + -20 * ((100vw - 320px) / 1600));
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}
@media (max-width: 768px) {
	.advantages-today__title {
		margin-bottom: 0px;
	}
}

.advantages-stand__percent {
	color: #000476;
	font-family: "Futura New Bold - Reg";
	font-size: calc(50px + 96 * ((100vw - 320px) / 1600));
	text-align: center;
}
.advantages-stand__percent span {
	font-size: calc(28px + 72 * ((100vw - 320px) / 1600));
}

.prices__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.prices__price {
	color: #fcfcfd;
	font-family: "Futura New Heavy - Reg";
	text-align: center;
	font-size: calc(16px + 16 * ((100vw - 320px) / 1600));
	width: 430px;
	margin: 0px 10% 0px 0px;
}
.prices__price:last-child {
	margin: 0;
}

.prices-block {
	background: url("../img/process/bg.jpg") no-repeat;
	background-size: cover;
	background-position: bottom;
	position: relative;
	z-index: 2;
	padding-bottom: calc(100px + 100 * ((100vw - 320px) / 1600));
}

.prices-block__row {
	background: #e5c1fe;
	padding-top: calc(30px + 50 * ((100vw - 320px) / 1600));
	padding-left: calc(20px + 150 * ((100vw - 320px) / 1600));
	padding-right: calc(20px + 150 * ((100vw - 320px) / 1600));
	padding-bottom: calc(30px + 30 * ((100vw - 320px) / 1600));
	border-bottom-left-radius: calc(25px + 87 * ((100vw - 320px) / 1600));
	border-bottom-right-radius: calc(25px + 87 * ((100vw - 320px) / 1600));
	margin-bottom: calc(170px + 16 * ((100vw - 320px) / 1600));
}

.prices-block__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 0px 0px 70px 0px;
}
@media (max-width: 768px) {
	.prices-block__items {
		margin: 0px 0px 40px 0px;
	}
}

.prices-block__item {
	margin-right: calc(20px + 58 * ((100vw - 320px) / 1600));
	opacity: 0;
	visibility: hidden;
	position: relative;
	top: 30px;
}
.prices-block__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;
}
.prices-block__item:last-child {
	margin: 0;
}

.prices-block__price {
	-webkit-box-shadow: 0 0 34px rgba(0, 0, 0, 0.3);
	        box-shadow: 0 0 34px rgba(0, 0, 0, 0.3);
	border-radius: calc(10px + 38 * ((100vw - 320px) / 1600));
	background-color: #fefdfd;
	color: #000476;
	font-family: "Futura New Bold - Reg";
	text-align: center;
	font-size: calc(20px + 76 * ((100vw - 320px) / 1600));
	padding-top: calc(10px + 18 * ((100vw - 320px) / 1600));
	padding-bottom: calc(10px + 18 * ((100vw - 320px) / 1600));
	padding-left: calc(5px + 5 * ((100vw - 320px) / 1600));
	padding-right: calc(5px + 5 * ((100vw - 320px) / 1600));
	margin-bottom: calc(20px + 20 * ((100vw - 320px) / 1600));
}

.prices-block__price_r {
	color: #fe4102;
}

.prices-block__btn {
	border-radius: 48px;
	background-color: #000476;
	color: #fcfcfd;
	font-family: "Futura New Bold - Reg";
	text-align: center;
	font-size: calc(16px + 16 * ((100vw - 320px) / 1600));
	padding-top: calc(10px + 18 * ((100vw - 320px) / 1600));
	padding-bottom: calc(10px + 18 * ((100vw - 320px) / 1600));
	padding-left: calc(5px + 145 * ((100vw - 320px) / 1600));
	padding-right: calc(5px + 145 * ((100vw - 320px) / 1600));
	display: block;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.prices-block__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;
}

.prices-block__btn_r {
	background: #fe4102;
	margin: 0 auto;
}

.timer {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	.opacity: 0;
	visibility: hidden;
	position: relative;
	top: 50px;
}
.timer._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;
}

.timer__title {
	color: #fe4102;
	font-family: Cooper;
	font-size: calc(24px + 24 * ((100vw - 320px) / 1600));
	margin: 0px 0px 30px 0px;
}

.timer__block {
	-webkit-box-shadow: 0 0 46px rgba(0, 0, 0, 0.54);
	        box-shadow: 0 0 46px rgba(0, 0, 0, 0.54);
	border-radius: calc(10px + 38 * ((100vw - 320px) / 1600));
	background-color: #fefdfd;
	padding: 40px 0px;
	margin: 0px 0px 40px 0px;
}
@media (max-width: 700px) {
	.timer__block {
		margin: 0px -40px 40px -40px;
	}
}
@media (max-width: 480px) {
	.timer__block {
		padding: 25px 0px;
	}
}

.timer__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background-color: #cfcfd2;
	padding: 10px 40px 20px 40px;
	padding-top: calc(10px + 0 * ((100vw - 320px) / 1600));
	padding-bottom: calc(10px + 0 * ((100vw - 320px) / 1600));
	padding-left: calc(5px + 35 * ((100vw - 320px) / 1600));
	padding-right: calc(5px + 35 * ((100vw - 320px) / 1600));
}

.flipdown .rotor-group-heading:before {
	font-size: calc(12px + 8 * ((100vw - 320px) / 1600));
	line-height: 1.5;
}

.rotor-group:nth-child(1) {
	display: none;
}

.flipdown {
	width: 100%;
}

.timer__btn {
	color: #fcfcfd;
	font-family: "Futura New Bold - Reg";
	font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
	background: #7c07b3;
	display: inline-block;
	padding-top: calc(10px + 30 * ((100vw - 320px) / 1600));
	padding-bottom: calc(10px + 30 * ((100vw - 320px) / 1600));
	padding-left: calc(15px + 45 * ((100vw - 320px) / 1600));
	padding-right: calc(15px + 45 * ((100vw - 320px) / 1600));
	border-radius: calc(10px + 38 * ((100vw - 320px) / 1600));
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	margin: 0px 0px 60px 0px;
}
.timer__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;
}
.timer__btn span {
	text-transform: uppercase;
	text-align: center;
	font-size: calc(18px + 14 * ((100vw - 320px) / 1600));
	margin: 0px 0px 5px 0px;
	display: block;
}

.footer {
	background: url("../img/footer/bg.png") no-repeat;
	background-size: cover;
	padding: 0px 0px 100px 0px;
	margin: -200px 0px 0px 0px;
	position: relative;
	z-index: 2;
}
@media (max-width: 768px) {
	.footer {
		padding: 0;
	}
}

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

.footer__logo {
	width: 224px;
	margin: -30px 0px 40px 0px;
}
.footer__logo img {
	width: 100%;
	height: 100%;
}
@media (max-width: 768px) {
	.footer__logo {
		width: 150px;
	}
}

.footer__copy {
	color: #faf8fb;
	font-size: calc(20px + 12 * ((100vw - 320px) / 1600));
	margin: 0px 0px 30px 0px;
}

.footer__contacts {
	margin: 0px 0px 20px 0px;
}
.footer__contacts p, .footer__contacts a {
	color: #fbfbfd;
	line-height: 1.3;
	font-size: calc(16px + 8 * ((100vw - 320px) / 1600));
}

.footer__wa {
	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;
	margin: 10px 0;
	border-radius: 48px;
	background-color: #00C417;
	color: #fcfcfd;
	font-family: "Futura New Bold - Reg";
	text-align: center;
	height: 50px;
	padding: 10px 30px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.footer__wa: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;
	text-decoration: none;
}
@media (max-width: 480px) {
	.footer__wa {
		height: 40px;
	}
}

.footer-social {
	position: relative;
	width: 100%;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.footer-social__icon {
	width: 66px;
	margin: 0px 10px;
}
.footer-social__icon img {
	width: 100%;
	height: 100%;
}

#bg_popup {
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	position: fixed;
	z-index: 99999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

#popup {
	background: #fff;
	max-width: 800px;
	position: relative;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
#popup .close {
	position: absolute;
	top: 20px;
	right: 20px;
	display: block;
	width: 35px;
	height: 35px;
}
#popup .close img {
	width: 100%;
}
@media (max-width: 480px) {
	#popup .close {
		width: 25px;
		height: 25px;
	}
}
@media (max-width: 480px) {
	#popup {
		top: 0;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
	}
}

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

.examples__buttonblock {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.examples__buttonblock._hidden {
	display: none;
}

.examples__btn {
	width: 300px;
	padding: 20px 30px;
	margin: 0px 0px 60px 0px;
	cursor: pointer;
}
.examples__btn._hidden {
	display: none;
}