@-webkit-keyframes flip {
	0% {
		-webkit-transform: rotateX(0);
		transform: rotateX(0)
	}
	95% {
		-webkit-transform: rotateX(245deg);
		transform: rotateX(245deg)
	}
	100% {
		-webkit-transform: rotateX(260deg);
		transform: rotateX(260deg);
		visibility: hidden
	}
}
@keyframes flip {
	0% {
		-webkit-transform: rotateX(0);
		transform: rotateX(0)
	}
	95% {
		-webkit-transform: rotateX(245deg);
		transform: rotateX(245deg)
	}
	100% {
		-webkit-transform: rotateX(260deg);
		transform: rotateX(260deg);
		visibility: hidden
	}
}
@keyframes hi {
	1% {
		transform: translateX(-512px);
	}
	50% {
			  transform: translateX(0px);
	}
	100% {
			transform: translateX(-512px);		
	}
}

.sh {
	transition: transform 1s;
}
.sh.move {
	transform: translateX(-512px);
}

html {
	box-sizing: border-box
}
*, :after, :before {
	box-sizing: inherit
}
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, button, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, input, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, select, small, span, strike, strong, sub, summary, sup, table, tbody, td, textarea, tfoot, th, thead, time, tr, tt, u, ul, var, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box
}
a {
	color: inherit;
	cursor: pointer
}
input {
	background-color: transparent;
	outline: 0
}
img {
	display: block;
	max-width: 100%;
	height: auto
}
ol, ul {
	list-style: none
}
blockquote, q {
	quotes: none
}
blockquote:after, blockquote:before, q:after, q:before {
	content: '';
	content: none
}
table {
	border-collapse: collapse;
	border-spacing: 0
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block
}
html {
	height: 100%
}
body {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	height: 100%;
	min-height: 32rem;
	padding: 6rem 2rem;
	line-height: 1.375;
	font-size: 16px;
	font-weight: 400;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
	color: #fff;
	background-color: #000;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: 100%
}
@media screen and (max-width:479px) {
	body {
		padding: 2rem 2rem 6rem
	}
}
::-moz-selection {
	background-color: rgba(192, 192, 192, .25)
}
::selection {
	background-color: rgba(192, 192, 192, .25)
}
.backdrop {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1
}
.backdrop .backdrop__video {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover
}
.backdrop:after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: rgba(0, 0, 10, .75)
}
.calendar {
	position: relative;
	cursor: pointer;
	width: 13rem;
	height: 13rem;
	-webkit-perspective: 800px;
	perspective: 800px;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}
.calendar:after, .calendar:before {
	content: '';
	display: block;
	position: absolute;
	top: -.625rem;
	z-index: 2;
	width: .5rem;
	height: .625rem;
	overflow: hidden;
	border-radius: 2px 2px 0 0;
	background-color: #999
}
.calendar:after {
	left: 20%
}
.calendar:before {
	right: 20%
}
.calendar .calendar__page {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}
.calendar .calendar__page.calendar__page--animate {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform-origin: 50% -1px;
	transform-origin: 50% -1px;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-animation: flip 1.25s ease-in forwards;
	animation: flip 1.25s ease-in forwards
}
.calendar .calendar__page .calendar__page-back, .calendar .calendar__page .calendar__page-front {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-image: url(../img/cal.png);
	background-size: cover;
	background-position: bottom;
	border-radius: 8px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}
.calendar .calendar__page .calendar__page-front {
	box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, .125)
}
.calendar .calendar__page .calendar__page-back {
	background-image: url(../img/cal2.png);
	-webkit-transform: rotateX(180deg);
	transform: rotateY(180deg)
}
@media screen and (max-width:479px) {
	.calendar {
		width: 10rem;
		height: 10rem
	}
}
@media screen and (max-width:359px) {
	.calendar {
		width: 8rem;
		height: 8rem
	}
}
.content {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	position: relative
}
.counter {
	display: block;
	position: relative;
	cursor: default;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 100%;
	text-align: center;
	font-weight: 400;
	letter-spacing: .5px
}
.counter.counter--title {
	margin-top: 2.5rem;
	font-size: 1.625rem
}
@media screen and (max-width:479px) {
	.counter.counter--title {
		margin-top: 1.5rem;
		font-size: 1.25rem
	}
}
.counter.counter--more {
	margin-top: .75rem;
	font-size: 1rem;
	max-width: 500px;
}
@media screen and (max-width:479px) {
	.counter.counter--more {
		font-size: .875rem
	}
}
.counter.counter--hidden {
	visibility: hidden
}
.counter strong {
	font-weight: 500
}
@media screen and (max-width:479px) {
	.counter {
		letter-spacing: 0
	}
}
.footer {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: column nowrap;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	bottom: 0;
	width: 100%;
	max-width: 60rem;
	padding: 2rem 1rem 24px;
}
.footer .footer__about {
	display: block;
	margin: 1.5rem 0 0;
	font-size: .75rem;
	color: rgba(255, 255, 255, .75)
}
.footer .footer__about .footer__copy-link {
	margin-left: .375rem;
	text-decoration: none;
	border-bottom: solid 1px;
	transition: border .25s
}
.footer .footer__about .footer__copy-link:hover {
	border-bottom-color: transparent
}
.footer .footer__share {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start
}
.share {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin: .25rem;
	padding: .5rem;
	border-bottom: none;
	border-radius: 2px
}
.share svg {
	height: 1rem;
	width: 1rem;
	fill: #fff
}
.share:first-child {
	margin-left: 0
}
.share:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}
.share.share--vkontakte {
	background-color: #5186bd
}
.share.share--facebook {
	background-color: #3b5998
}
.share.share--odnoklassniki {
	background-color: #ee8208
}
.share.share--twitter {
	background-color: #1da1f2
}
.share.share--telegram {
	background-color: #08c
}
.sound {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: fixed;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	top: 1.5rem;
	right: 1.5rem;
	z-index: 5;
	cursor: pointer;
	height: 1.75rem;
	width: 1.75rem;
	opacity: .75;
	transition: opacity .25s
}
.sound .sound__icon {
	fill: #fff;
	display: block;
	width: 75%;
	height: 75%
}
/*.sound .sound__wave {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: content-box;
	border: .125rem solid transparent;
	border-right: .125rem solid #fff;
	border-radius: 50%;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0
}
.sound .sound__wave.sound__wave--one {
	width: 45%;
	height: 45%
}*/
/*.sound .sound__wave.sound__wave--two {
	width: 80%;
	height: 80%
}*/
.sound.sound--stop .sound__wave {
	border-radius: 0;
	width: .625rem;
	height: .625rem;
	border-width: 0 .125rem 0 0
}
.sound.sound--stop .sound__wave.sound__wave--one {
	-webkit-transform: rotate(45deg) translate3d(0, -50%, 0);
	transform: rotate(45deg) translate3d(0, -50%, 0)
}
.sound.sound--stop .sound__wave.sound__wave--two {
	-webkit-transform: rotate(-45deg) translate3d(0, 50%, 0);
	transform: rotate(-45deg) translate3d(0, 50%, 0)
}
.sound:hover {
	opacity: 1
}
.vdohnovlenie {
    position: fixed;
    bottom: 9px;
    left: 11px;
    opacity: 0.5;
    font-size: 12px;
}
@media screen and (max-width:479px) {
	.sound {
		top: 1rem;
		right: 1rem
	}
}
.background {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}
.background::after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: rgba(0, 0, 0, .625)
}
.background video {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover
}
.sh{
	position: fixed;
	bottom: 0;
	right: -512px;
	width: 500px;
	z-index: 2;
	animation: op 1.25s ease-in forwards
}
.sh img{
	max-width: 100%;
}
.sh.hi{
	animation: hi 0.7s ease-in forwards
}
.dla_pozilih {
    font-size: 13px;
    opacity: 0.7;
    padding-top: 10px;
}

@media (max-width: 769px){
	body{
		display: flex;
		align-items: start;
	}
	.sh {
	    position: fixed;
	    bottom: 0;
	    right: -564px;
	    width: 364px;
	    animation: op 1.25s ease-in forwards;
	}
	.vdohnovlenie {
	    left: auto;

	}
}
@media (min-width: 1024px) and (max-width: 1024px){
	
	.content {
    margin-right: 244px;
}
}
@media (max-width: 1250px){
	body{
		align-items: start;
	}
	.sh {
	    right: -573px;
	    width: 425px;
	}
}
@media (max-width: 414px){
	.sh {
    right: -513px;
    width: 286px;
}
}
@media (min-height: 700px) and (max-height: 768px){
	.sh {
    bottom: 68px;
}
}