.header-top {
	background: #E31E27;
	color: #fff;
}

.header-top__row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px 0;
}

.header-top .date {
	position: relative;
	padding-left: 20px;
	font-size: 20px;
}

.header-top .date:before {
	position: absolute;
	content: '';
	display: block;
	left: 0;
	top: 50%;
	margin-top: -6px;
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 100%;
}

.header-top .right {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.header-top .personal-link {
	display: inline-block;
	padding-left: 35px;
	position: relative;
	color: #fff;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

.header-top .personal-link:hover {
	text-decoration: none;
	color: #bbbdbf;
}

.header-top .personal-link svg {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -12px;
}

.header-top .lang-select {
	margin-left: 130px;
}

.header-top .lang-select a {
	color: #fff;
	margin-left: 20px;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

.header-top .lang-select a:hover {
	text-decoration: none;
	color: #bbbdbf;
}

.header-top .lang-select span {
	font-weight: 700;
	position: relative;
	margin-left: 20px;
}

.header-top .lang-select span:after {
	position: absolute;
	content: '';
	display: block;
	left: 50%;
	top: 100%;
	width: 5px;
	height: 5px;
	background: #fff;
	border-radius: 100%;
	margin: 5px 0 0 -2px;
}

.header-bottom {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100px;
}

.header-bottom__row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100px;
}

.header-bottom .navbar-brand {
	margin-top: auto;
	padding-left: 0;
}

.header-bottom .navbar-brand .logo {
	bottom: 0;
	font-size: 86px;
}

.header-fixed {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 30;
	background: #fff;
}

.header-fixed.is-fixed {
	position: fixed;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.page-header {
	padding-bottom: 100px;
	position: relative;
}

.header-search {
	margin-left: auto;
	flex-shrink: 0;
	width: 400px;
	position: relative;
}

.header-search__submit {
	position: absolute;
	padding: 17px;
	right: 0;
	top: 0;
	border: none;
	z-index: 3;
	cursor: pointer;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	background: none;
}

.header-search__submit svg {
	fill: #222;
	display: block;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

.header-search__submit:hover svg {
	fill: #999;
}

.header-search__input {
	position: relative;
	border: 1px solid transparent;
	background: none;
	padding: 21px;
	font-size: 18px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	opacity: 0;
	z-index: 2;
	cursor: default;
	background: #fff;
	outline: none;
	-webkit-appearance: none;
	border-radius: 0;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

.header-search__input::-webkit-input-placeholder {
	color: transparent;
}

.header-search__input:-moz-placeholder {
	color: transparent;
}

.header-search__input::-moz-placeholder {
	color: transparent;
}

.header-search__input:-ms-input-placeholder {
	color: transparent;
}

.header-search__input:focus {
	border-color: #999;
	opacity: 1;
	cursor: text;
	-webkit-transform: translateX(-20px);
	-ms-transform: translateX(-20px);
	transform: translateX(-20px);
}

.header-search__input:focus ~ .header-search__submit {
	-webkit-transform: translateX(-20px);
	-ms-transform: translateX(-20px);
	transform: translateX(-20px);
}

.header-search__input:focus::-webkit-input-placeholder {
	color: #999;
}

.header-search__input:focus:-moz-placeholder {
	color: #999;
}

.header-search__input:focus::-moz-placeholder {
	color: #999;
}

.header-search__input:focus:-ms-input-placeholder {
	color: #999;
}

.header-burger {
	position: relative;
	height: 32px;
	background: none;
	border: none;
	width: 40px;
	outline: none;
	padding: 0;
	margin-left: 20px;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.header-burger span {
	top: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: #333;
	display: block;
	position: absolute;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

.header-burger span:nth-child(2) {
	top: 15px;
}

.header-burger span:nth-child(3) {
	top: 29px;
}

.header-burger:hover span {
	background: #999;
}

.menu-shadow {
	position: fixed;
	background: rgba(0,0,0,0.6);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 40;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03),visibility 0s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.4s;
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03),visibility 0s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.4s;
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03),visibility 0s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.4s;
}

.popup-menu {
	position: fixed;
	width: 500px;
	right: 0;
	top: 0;
	height: 100%;
	overflow: auto;
	z-index: 50;
	background: #fff;
	padding-top: 90px;
	visibility: hidden;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03),visibility 0s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.4s;
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03),visibility 0s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.4s;
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03),visibility 0s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.4s;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
}

.popup-menu-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 0 50px;
	height: 90px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.popup-menu__close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 30px;
	background: none;
	border: none;
	z-index: 10;
	outline: none;
}

.popup-menu__close svg {
	display: block;
	fill: #222;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

.popup-menu__close:hover svg {
	fill: #999;
}

.popup-menu__cont {
	position: relative;
	overflow: auto;
	height: 100%;
	padding: 0 50px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-flow: column;
	-ms-flex-flow: column;
	flex-flow: column;
	-webkit-overflow-scrolling: touch;
}

.popup-menu .header-search {
	margin-bottom: 40px;
	margin-top: auto;
}

.popup-menu .header-search__input {
	border-color: #999;
	opacity: 1;
	cursor: text;
}

.popup-menu .header-search__input::-webkit-input-placeholder {
	color: #999;
}

.popup-menu .header-search__input:-moz-placeholder {
	color: #999;
}

.popup-menu .header-search__input::-moz-placeholder {
	color: #999;
}

.popup-menu .header-search__input:-ms-input-placeholder {
	color: #999;
}

.popup-menu .header-search__input:focus {
	border-color: #222;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.popup-menu .header-search__input:focus ~ .header-search__submit {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.popup-menu .social-icons {
	margin-bottom: 50px;
}

.popup-menu .social-icons a {
	margin-left: 0;
	color: #E31E27;
	display: inline-block;
	vertical-align: top;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	font-size: 50px;
}

.popup-menu .social-icons a:hover {
	opacity: .8;
}

.popup-menu .social-icons .icon-instagram-with-circle svg {
	display: block;
}

.popup-menu .social-icons .icon-instagram-with-circle:before {
	display: none;
}

.popup-menu .personal-link {
	display: inline-block;
	padding-left: 35px;
	position: relative;
	color: #222;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

.popup-menu .personal-link:hover {
	text-decoration: none;
	color: #bbbdbf;
}

.popup-menu .personal-link svg {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -12px;
}

.popup-menu .lang-select {
	margin-left: 100px;
}

.popup-menu .lang-select a {
	color: #999;
	margin-left: 20px;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

.popup-menu .lang-select a:hover {
	text-decoration: none;
	color: #222;
}

.popup-menu .lang-select span {
	font-weight: 700;
	position: relative;
	margin-left: 20px;
	color: #222;
}

.popup-menu .lang-select span:after {
	position: absolute;
	content: '';
	display: block;
	left: 50%;
	top: 100%;
	width: 5px;
	height: 5px;
	background: #E31E27;
	border-radius: 100%;
	margin: 5px 0 0 -2px;
}

.menu {
	list-style: none;
	padding: 0 0 20px;
	margin: 0;
}

.menu>li {
	padding-bottom: 10px;
}

.menu__link {
	font-weight: 300;
	font-size: 30px;
	cursor: pointer;
	color: #222;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	text-decoration: none;
	position: relative;
}

.menu__link:hover {
	text-decoration: none;
	color: #999999;
}

.menu__link.has-sub {
	padding-right: 30px;
}

.menu__link.has-sub:after {
	position: absolute;
	content: '';
	display: block;
	right: 0;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMy4wNyIgaGVpZ2h0PSI3Ljk1IiB2aWV3Qm94PSIwIDAgMTMuMDcgNy45NSI+PHRpdGxlPkFydGJvYXJkIDE8L3RpdGxlPjxwb2x5Z29uIHBvaW50cz0iNi41NCA3Ljk1IDAgMS40MSAxLjQxIDAgNi41NCA1LjEyIDExLjY2IDAgMTMuMDcgMS40MSA2LjU0IDcuOTUiIGZpbGw9IiMyMjIiLz48L3N2Zz4=);
	width: 13px;
	height: 8px;
	top: 50%;
	margin-top: -4px;
}

.menu__link.has-sub.is-opened:after {
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.sub-menu {
	display: none;
	list-style: none;
	padding: 15px 0 5px 20px;
	margin: 0;
}

.sub-menu li {
	padding-bottom: 10px;
}

.sub-menu a {
	font-size: 18px;
	color: #222222;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	text-decoration: none;
}

.sub-menu a:hover {
	color: #999999;
}

.no-scroll {
	overflow-y: scroll;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.no-scroll body {
	height: auto;
	overflow: hidden;
}

.menu-opened .menu-shadow {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03),visibility 0s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0s;
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03),visibility 0s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0s;
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03),visibility 0s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0s;
}

.menu-opened .popup-menu {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03),visibility 0s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0s;
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03),visibility 0s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0s;
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03),visibility 0s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0s;
}

.body__footer{
	padding: 20px 0 ;
}

.header-timer {
	margin: 0 -200px 0 130px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 700;
	font-size: 17px;
	color: #000;
	width: 680px;
}

.header-timer .clock {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.countdown-container {
	margin-left: 20px;
	position: relative;
}

.clock__separator {
	font-size: 30px;
	font-weight: bold;
	padding: 0 10px;
}

.clock-item {
	width: 74px;
}

.clock-item .inner {
	height: 0;
	padding-bottom: 100%;
	position: relative;
	width: 100%;
}

.clock-canvas {
	border-radius: 50%;
	height: 0;
	padding-bottom: 100%;
}

.text {
	color: #000;
	font-size: 30px;
	font-weight: bold;
	position: absolute;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	top: 0;
	text-align: center;
	width: 100%;
}

.text p {
	margin-bottom: 0;
}

.body__footer address {
	font-style: normal;
	font-weight: 300;
	padding-bottom: 10px;
	font-size: 24px;
}

.body__footer .social-icons {
	/*margin-bottom: 40px;*/
	margin-bottom: 20px;
}

.body__footer .social-icons a {
	display: inline-block;
	vertical-align: top;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	font-size: 70px;
}

.body__footer .social-icons a:hover {
	opacity: .8;
}

.body__footer .social-icons .icon-instagram-with-circle svg {
	display: block;
}

.body__footer .social-icons .icon-instagram-with-circle:before {
	display: none;
}

.body__footer .map-link {
	font-weight: 700;
	border-bottom: 2px solid #fff;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

.body__footer .map-link:hover {
	border-bottom-color: transparent;
}

.body__footer .tel {
	font-weight: 300;
	font-size: 36px;
	display: inline-block;
	white-space: nowrap;
	/*margin-top: 10px;*/
}

.body__footer .mail {
	font-size: 36px;
	font-weight: 300;
	border-bottom: 1px solid transparent;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

.body__footer .mail:hover {
	border-bottom-color: #fff;
}

.body__footer .developer {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 12px;
	/*padding-top: 70px;*/
	padding-top: 30px;
}

.body__footer .developer a {
	margin: 0 0 0 8px;
	display: block;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

.body__footer .developer a:hover {
	opacity: .8;
}

.body__footer .developer a img {
	display: block;
}

@font-face {
	font-family: HelveticaNeueCyr;
	src: url(../fonts/HelveticaNeueCyr-Bold.woff) format("woff");
	font-style: normal;
	font-weight: 700;
}

@font-face {
	font-family: HelveticaNeueCyr;
	src: url(../fonts/HelveticaNeueCyr-BoldItalic.woff) format("woff");
	font-style: italic;
	font-weight: 700;
}

@font-face {
	font-family: HelveticaNeueCyr;
	src: url(../fonts/HelveticaNeueCyr-Italic.woff) format("woff");
	font-style: italic;
	font-weight: 400;
}

@font-face {
	font-family: HelveticaNeueCyr;
	src: url(../fonts/HelveticaNeueCyr-Light.woff) format("woff");
	font-style: normal;
	font-weight: 200;
}

@font-face {
	font-family: HelveticaNeueCyr;
	src: url(../fonts/HelveticaNeueCyr-Medium.woff) format("woff");
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: HelveticaNeueCyr;
	src: url(../fonts/HelveticaNeueCyr-Roman.woff) format("woff");
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: HelveticaNeueCyr;
	src: url(../fonts/HelveticaNeueCyr-UltraLight.woff) format("woff");
	font-style: normal;
	font-weight: 100;
}

.main-promo {
	position: relative;
	height: -webkit-calc(100vh - 162px);
	height: calc(100vh - 162px);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.main-promo .header-images {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.main-promo .header-images:after {
	position: absolute;
	content: '';
	display: block;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.6);
	width: 100%;
	height: 100%;
}

.main-promo__text {
	position: relative;
	z-index: 3;
	font-size: 80px;
	font-weight: 100;
	color: #fff;
	max-width: 800px;
	line-height: 1.2;
}

.main-promo__arrow {
	position: absolute;
	left: 50%;
	margin-left: -12px;
	bottom: 50px;
	cursor: pointer;
	z-index: 10;
}

.main-promo__arrow svg {
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	fill: #fff;
	display: block;
}

.main-promo__arrow:hover svg {
	fill: #E31E27;
}

.main-categories {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 30px -15px 80px;
}

.main-categories__item {
	width: 33.33%;
	padding: 0 15px;
}

.main-categories__cont {
	height: 550px;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.main-categories__cont:after {
	position: absolute;
	content: '';
	display: block;
	left: 0;
	bottom: 0;
	/*background: #E31E27;*/
	background: #fff;
	border-radius: 100%;
	padding-bottom: 100%;
	z-index: 2;
	width: 100%;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.2s;
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.2s;
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.2s;
	/*opacity:0.7;*/
	opacity:0.8;
}

.main-categories__cont:hover:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

.main-categories__cont:hover .name {
	-webkit-transform: translateY(-190px);
	-ms-transform: translateY(-190px);
	transform: translateY(-190px);
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

.main-categories__cont:hover .links {
	opacity: 1;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.2s;
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.2s;
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.2s;
}

.main-categories__bg {
	position: absolute;
	left: 0;
	top: 0;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.main-categories__bg:after {
	position: absolute;
	content: '';
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
}

.main-categories .name {
	position: absolute;
	font-weight: 300;
	font-size: 30px;
	color: #fff;
	height: 100px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	text-align: center;
	width: 100%;
	left: 0;
	top: 50%;
	z-index: 4;
	margin-top: -50px;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.2s;
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.2s;
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03) 0.2s;
	padding: 0 20px;
}

.main-categories .links {
	position: relative;
	z-index: 3;
	margin-top: auto;
	padding: 0 30px 110px;
	font-size: 18px;
	list-style: none;
	text-align: center;
	width: 100%;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	opacity: 0;
}

.main-categories .links li {
	padding-bottom: 10px;
}

.main-categories .links a {
	/*color: #fff;*/
	color: #E31E27;
	border-bottom: 1px solid transparent;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

.main-categories .links a:hover {
	/*border-bottom-color: #fff;*/
	border-bottom-color: #E31E27;
	text-decoration: none;
}

.subscribe {
	background: #F8F8F8;
	padding: 80px 0;
	margin-top: 80px;
}

.subscribe__title {
	font-size: 26px;
	padding-bottom: 35px;
	text-align: center;
	color: #222222;
	font-weight: 300;
}

.subscribe .form-rules {
	text-align: center;
	max-width: 360px;
	margin: auto;
	color: #222;
	font-size: 12px;
}

.subscribe .form-rules a {
	color: #222;
	border-bottom: 1px solid #222;
	text-decoration: none;
}

.subscribe .form-rules a:hover {
	border-bottom-color: transparent;
}

.subscribe-form {
	margin: 0 auto 30px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	max-width: 600px;
}

.subscribe-form .btn {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-left: 30px;
	font-size: 15px;
	font-weight: normal;
	padding-right: 45px;
	padding-left: 45px;
}

.subscribe-form__input {
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #BBBDBF;
	padding: 14px 20px;
	outline: none;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	color: #222;
	border-radius: 0;
	-webkit-appearance: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.subscribe-form__input::-webkit-input-placeholder {
	color: #999;
	opacity: 1;
}

.subscribe-form__input:-moz-placeholder {
	color: #999;
	opacity: 1;
}

.subscribe-form__input::-moz-placeholder {
	color: #999;
	opacity: 1;
}

.subscribe-form__input:-ms-input-placeholder {
	color: #999;
	opacity: 1;
}

.subscribe-form__input:focus {
	border-color: #222;
}

.btn {
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

#speakers-list .persons__item .persons__item-content {
	display: block;
	opacity: 0;
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
}

#speakers-list .persons__item:hover .persons__item-content {
	opacity: 1;
}

.persons__item .img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.news-grid .news-grid__item .img:after {
	-webkit-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	-o-transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	transition: all 0.4s cubic-bezier(0.36, 0.26, 0.19, 1.03);
	opacity: .4;
}

.news-grid .news-grid__item:hover .img:after {
	opacity: .2;
}


.buttons {
	position: absolute;
	z-index: 7;
	bottom: 30px;
	left: 0;
	right: 0;
}

.buttons a {
	display: block;
	color: #fff;
	background: rgba(255, 255, 255, 0.2);
	padding: 12px 20px;
	width: 170px;
	text-align: center;
	font-size: 16px;
	-webkit-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.buttons a:hover {
	text-decoration: none;
	background: #e52429;
}

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


@media only screen and (max-width: 1359px) {

.header-timer {
	margin-left: 0;
}

.main-promo__text {
	font-size: 66px;
}

.main-categories__cont {
	height: 500px;
}

.main-categories__cont:hover .name {
	-webkit-transform: translateY(-150px);
	-ms-transform: translateY(-150px);
	transform: translateY(-150px);
}

.main-categories .links {
	padding-bottom: 70px;
}

}

@media only screen and (max-width: 991px) {
.header-timer{
	font-size: 15px;
	margin-right: -300px;
}
.header-top .lang-select {
	margin-left: 50px;
}

.header-bottom {
	height: 80px;
}

.header-bottom__row {
	height: 80px;
}

.page-header {
	padding-bottom: 80px;
}

.header-timer {
	white-space: normal;
}

.clock-item {
	width: 65px;
}

.main-promo {
	height: -webkit-calc(100vh - 152px);
	height: calc(100vh - 152px);
}

.main-promo__text {
	font-size: 45px;
}

.main-categories {
	display: block;
	margin-bottom: 50px;
}

.main-categories__item {
	width: 100%;
	margin-bottom: 30px;
}

.main-categories__cont {
	height: 420px;
}

.main-categories__cont:after {
	width: 320px;
	padding-bottom: 0;
	height: 320px;
	left: 50%;
	margin-left: -160px;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.main-categories__cont:hover .name {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.main-categories .name {
	top: 50px;
}

.main-categories .links {
	opacity: 1;
}

}

@media only screen and (max-width: 767px) {

.header-top .right {
	display: none;
}

.header-search {
	width: 320px;
}

.header-timer {
	display: none;
}

.clock__separator {
	padding: 0 5px;
	font-size: 20px;
}

.clock-item {
	width: 55px;
}

.text {
	font-size: 20px;
}

.body__footer .social-icons a {
	font-size: 50px;
}

.body__footer .social-icons .icon-instagram-with-circle svg {
	width: 50px;
	height: 50px;
}

.body__footer .tel {
	font-size: 32px;
}

.body__footer .mail {
	font-size: 32px;
}

.main-promo__text {
	font-size: 42px;
}

}

@media only screen and (max-width: 576px) {

.header-top__row {
	padding: 15px 0;
}

.header-top .date {
	font-size: 14px;
}

.header-bottom {
	height: 70px;
}

.header-bottom__row {
	height: 70px;
}

.header-bottom .navbar-brand .logo {
	font-size: 70px;
}

.page-header {
	padding-bottom: 70px;
}

.header-search {
	display: none;
}

.header-burger {
	margin-left: auto;
}

.popup-menu {
	width: 100%;
}

.popup-menu-top {
	padding: 0 50px 0 20px;
}

.popup-menu__cont {
	padding: 0 20px;
}

.popup-menu .header-search {
	display: block;
	width: 100%;
}

.popup-menu .lang-select {
	margin-left: 50px;
}

.menu__link {
	font-size: 26px;
}

.body__footer address {
	font-size: 18px;
}

.body__footer .social-icons a {
	font-size: 36px;
}

.body__footer .social-icons .icon-instagram-with-circle svg {
	width: 36px;
	height: 36px;
}

.body__footer .tel {
	font-size: 28px;
}

.body__footer .mail {
	font-size: 28px;
}

.body__footer .developer {
	/*padding-top: 40px;*/
	padding-top: 20px;
}

.body__footer {
	padding: 40px 0;
}

.body__footer .footer-content {
	margin: 0;
}

.main-promo {
	height: auto;
	padding: 120px 0;
}

.main-promo__text {
	font-size: 24px;
}

.main-promo__arrow {
	display: none;
}

.subscribe {
	padding: 60px 0;
	margin-top: 60px;
}

.subscribe-form .btn {
	margin-left: 0;
	font-size: 13px;
	padding: 10px;
}

.persons__item .persons__item-content .info {
	display: none;
}
	.buttons {
		bottom: 20px;
	}

	.buttons a {
		width: 150px;
		font-size: 15px;
		padding: 15px;
	}

}

.icon-facebook-with-circle,
.icon-instagram-with-circle {
	display: none!important
}

/* start SubscribeForm */

.sp-control-label {
	display: none!important;
}

.sp-field div {
	font-family: "Helvetica Neue",HelveticaNeueCyr,Helvetica,Arial,sans-serif!important;
}

.sp-form b, .sp-form strong {
    font-weight: 500!important;
    font-size: 20px;
}

.sp-field input {
	font-family: "Helvetica Neue",HelveticaNeueCyr,Helvetica,Arial,sans-serif!important;
}

.sp-form[sp-id="221525"] .sp-button {
	font-family: "Helvetica Neue",HelveticaNeueCyr,Helvetica,Arial,sans-serif!important;
	font-weight: 500!important;
	line-height: 33px!important;
}

.sp-form[sp-id="221525"] .sp-form-control {
	font-size: 14px!important;
	outline: none!important;
	transition: all .2s!important;
}

.sp-form[sp-id="221525"] .sp-form-control:focus,
.sp-form[sp-id="221525"] .sp-form-control:hover {
	border: 1px solid #777777!important;
}

.sp-field > div {
	font-size: 14px!important;
}

@media (max-width: 569px) {

    .sp-form-fixed .sp-btn-close, .sp-form-popup .sp-btn-close {
        right: 0px!important;
    }

}

.sp-message h3 {
	text-transform: initial!important;
}

/* end SubscribeForm */


/*# sourceMappingURL=styles.css.map */
