/* reset */
h1,h2,h3,h4,p,ol,ul,li,figure,figcaption,blockquote {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	color: inherit;
	text-decoration: none;
}
/* reset */

html {
	font-size: 62.5%; /* assume it's 10px */
	min-height: 100%;
}

body {
	margin: 0 auto;
	padding: 0;
}
a {
	text-decoration: none;
}

@media only screen {
    body::after {
        display: none;
        content: "phone";
    }
}

@media only screen and (min-width: 768px) {
    body::after {
        content: "tablet";
    }
}

@media only screen and (min-width: 1006px) {
    body::after {
        content: "desktop";
    }
}


/* limiter */
.limiter {
	font: 0/0 a;
	max-width: 1220px;
	margin: 0 auto;
}
/* limiter footer */
.limiter_footer {
	padding: 24px 15px 30px 15px;
}
@media screen and (min-width: 768px) {
	.limiter_footer {
		padding: 40px 15px 30px 15px;
	}
}
.limiter_footer + .limiter_footer {
	padding-top: 10px;
}


/* kbd_button */
.kbd_button {
	background-color: transparent;
	border: 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	margin: 0;
	border-radius: 0;
	color: currentcolor;
}
.kbd_button:not(button):hover:not(:focus):not(:-moz-focusring) {
	visibility: hidden;
}

:not(button):hover:not(:focus):not(:-moz-focusring) > .kbd_button__body {
	visibility: visible;
}

/* Fixing the Safari bug for `<button>`s overflow */
.kbd_button__body {
	position: relative;
}

:focus > .kbd_button__body {
	box-shadow: 0 0 1px 2px rgb(9, 133, 206);
}

/* Removing the focus ring styles specifically for button in Firefox */
button:not(:-moz-focusring):focus > .kbd_button__body {
	box-shadow: none;
}

/* Removing default outline only after we've added our custom one */
.kbd_button:focus,
.kbd_button__body:focus {
	outline: none;
}


/* vicon */
.vicon {
	font: 22px/0 a;
	fill: #333;
	position: relative;
	display: inline-block;
	vertical-align: middle;
}
.vicon:focus {
	outline: none;
}
.vicon__body {
	width: 1em;
	height: 1em;
	background: inherit;
	-ms-transform: translate(0.5px, -0.3px);
	transform: translateX(0);
}

/* anchor */
.prague__anchor {
	position: relative;
	top: -120px;
	float: left;
}

/* main */
.prague_main {
	background-color: #eee;
	padding-bottom: 10px;
	position: relative;
}

.prague_fixed_panel {
	background-color: #fff;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	padding: 10px 15px 8px 15px;
	border-top: 1px solid #eee;
	box-sizing: border-box;
	z-index: 5;
}
@media only screen and (min-width: 768px) {
	.prague_fixed_panel {
		padding: 18px 15px 28px 15px;
	}
}
	.fixed_panel__title {
		height: 23px;
		position: relative;
		text-align: center;
		transition: height .3s cubic-bezier(0.0, 0.0, 0.2, 1) 0s;
	}
	.fixed_panel__title.is_expanded {
		height: 54px;
	}
	@media only screen and (min-width: 768px) {
		.fixed_panel__title {
			font-size: 24px;
		}
		.fixed_panel__title.is_expanded {
			height: auto;
		}
	}
	.fixed_panel__name {
		font: bold 18px/22px Arial, sans-serif;
		color: #333;
	}
		.fixed_panel__name .vicon--prague {
			font-size: 16px;
			line-height: inherit;
			fill: #d0021b;
		}
	@media only screen and (min-width: 768px) {
		.fixed_panel__name {
			font-size: 24px;
			line-height: 24px;
		}
			.fixed_panel__name .vicon--prague {
				font-size: 22px;
			}
	}
	.fixed_panel__title_date::before {
		content: '\00312';
		margin-right: .1em;
	}

	.fixed_panel__icon,
	.fixed_panel__network {
		font: 0/0 a;
		position: absolute;
		top: 0;
	}
	.fixed_panel__icon {
		left: 0;
	}
	.fixed_panel__network {
		right: 0;
	}
	.fixed_panel__network:focus {
		font: 0/0 a;
		outline: none;
	}
	@media only screen and (min-width: 768px) {
		.fixed_panel__icon {
			top: 26px;
		}
		.fixed_panel__network,
		.vicon--kommersant_logo {
			display: none;
		}
	}
	.fixed_panel__icon_link {
		display: inline-block;
	}

	.vicon--main_logo .vicon__body {
		display: none;
	}
	@media only screen and (min-width: 768px) {
		.vicon--main_logo .vicon__body {
			display: block;
			width: 170px;
			height: 22px;
		}
	}

	.vicon--network {
		fill: #999;
	}
	.socials-link:hover .vicon--network {
		fill: #006697;
	}
	.socials-link:focus .vicon--network {
		fill: #006697;
	}
	.socials-link:hover .vicon--vk {
		fill: #427ea6;
	}
	.socials-link:hover .vicon--fb {
		fill: #23599b;
	}
	.socials-link:hover .vicon--ok {
		fill: #ff8b00;
	}
	.socials-link:hover .vicon--tw {
		fill: #00aef0;
	}

	.fixed_panel__group {
		text-align: center;
		opacity: 1;
		visibility: visible;
		transform: scaleY(1);
		transition:
			transform .3s cubic-bezier(0.0, 0.0, 0.2, 1) .1s,
			opacity .3s cubic-bezier(0.0, 0.0, 0.2, 1) .1s,
			visibility 0s linear .1s;
		will-change: opacity, visibility, transform;
	}
	.fixed_panel__group.is_hidden {
		opacity: 0;
		visibility: hidden;
		transform: scaleY(0);
		transition-delay: 0s, 0s, .1s;
	}
	@media only screen and (min-width: 768px) {
		.fixed_panel__group.fixed_panel__group--social_icons {
			position: absolute;
			top: 22px;
			right: 0;
			opacity: 1;
			visibility: visible;
			transform: none;
		}
	}
	.fixed_panel__social_item {
		display: inline-block;
		padding: 4px 5px;
		font-size: 0;
	}

	.fixed_panel__tumbler {
		background-color: #eee;
		border: 2px solid #eee;
		border-radius: 16px;
		box-sizing: border-box;
		width: 100%;
		max-width: 292px;
		height: 32px;
		margin: 6px auto 0;
		text-align: center;
	}
	.fixed_panel__tumbler_item {
		width: 50%;
		height: 100%;
		color: #999;
		border-radius: 16px;
	}
	.fixed_panel__tumbler_item:hover {
		color: #333;
	}
	.fixed_panel__tumbler_item.is_current {
		color: #333;
		background-color: #fff;
		cursor: default;
	}
	@media only screen and (min-width: 768px) {
		.fixed_panel__tumbler {
			max-width: 352px;
			margin-top: 12px;
		}
	}
	@media only screen and (min-width: 1006px) {
		.fixed_panel__tumbler {
			width: 392px;
		}
	}
	.fixed_panel__tumbler_body {
		font: 0/0 a;
		display: block;
		height: 100%;
	}
	.fixed_panel__tumbler_body::before {
		content: '';
		display: inline-block;
		vertical-align: middle;
		height: 28px;
	}
	.fixed_panel__tumbler_text {
		font: bold 14px/1 Arial, sans-serif;
		display: inline-block;
		vertical-align: middle;
	}
	@media only screen and (min-width: 768px) {
		.fixed_panel__tumbler_text {
			font-size: 18px;
		}
	}



/* timeline, story wrappers */
.prague_timeline_wrapper,
.prague_story_wrapper {
	display: none;
}
.prague_timeline_wrapper.is_current,
.prague_story_wrapper.is_current {
	display: block;
}

/* timeline */
.prague_timeline {
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-size: 100% 466px;
	padding: 0 5px;
	margin-bottom: 10px;
}

.prague_timeline_bg {
	position: relative;
	z-index: 1;
}
.prague_timeline_bg__img {
	height: 466px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
.prague_timeline_bg__img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.prague_timeline:not(:first-child) {
	margin-top: 32px;
}
.prague_timeline::before {
	content: '';
	display: block;
	background-color: rgba(255,255,255,.7);
	height: 18px;
	width: 1px;
	margin: 0 auto;
}
@media only screen and (min-width: 768px) {
	.prague_timeline {
		padding: 0 15px;
	}
	.prague_timeline:not(:first-child) {
		margin-top: 36px;
	}
	.prague_timeline::before {
		height: 35px;
	}
}

	.prague_timeline__title {
		font: 18px/24px Georgia, serif;
		color: #fff;
		text-align: center;
		width: 100%;
		max-width: 602px;
		padding: 5px 0 25px 0;
		margin: 0 auto;
	}
	@media only screen and (min-width: 768px) {
		.prague_timeline__title {
			padding: 15px 0 25px 0;
		}
	}
	.prague_timeline__date {
		display: block;
		font: 24px/24px Arial, sans-serif;
		margin-bottom: 10px;
	}

	.prague_timeline__post {
		font: 14px/20px Arial, sans-serif;
		color: #666;
		max-width: 760px;
		width: 100%;
		margin: 0 auto 10px;
		padding: 20px 9px;
		background-color: #fff;
		border-radius: 3px;
		box-sizing: border-box;
		box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
	}
	@media only screen and (min-width: 768px) {
		.prague_timeline__post {
			width: calc(100% - 190px);
			position: relative;
			padding: 20px 24px;
		}
	}

	.prague_timeline__name {
		font: 0/0 a;
		margin: 0 0 10px -4px;
		min-height: 40px;
		position: relative;
	}
	@media only screen and (min-width: 768px) {
		.prague_timeline__name {
			margin: 0;
			min-height: auto;
			position: static;
		}
	}
		.prague_timeline__icon {
			background-color: #999;
			border: 2px solid #fff;
			border-radius: 50%;
			box-sizing: border-box;
			width: 44px;
			height: 44px;
			position: absolute;
			top: 0;
			left: 0;
			line-height: 40px;
			text-align: center;
			overflow: hidden;
		}
		.prague_timeline__icon .vicon--news {
			font-size: 24px;
		}
		@media only screen and (min-width: 768px) {
			.prague_timeline__icon {
				width: 78px;
				height: 78px;
				left: -94px;
				line-height: 74px;
			}
			.prague_timeline__icon .vicon--news {
				font-size: 40px;
			}
		}
		.prague_timeline__heading {
			font: bold 16px/20px Arial, sans-serif;
			margin-bottom: 10px;
			padding: 10px 20px 0 50px;
			box-sizing: border-box;
		}
		@media only screen and (min-width: 768px) {
			.prague_timeline__heading {
				padding: 0;
			}
		}
			.prague_timeline__info {
				display: block;
				font: 14px/16px Arial, sans-serif;
				color: #999;
				margin-top: 2px;
			}
		.prague_timeline__text {
			margin-bottom: 10px;
		}
		.prague_timeline__quoted {
			position: relative;
			margin-bottom: 18px;
			padding-left: 25px;
		}
		@media only screen and (min-width: 768px) {
			.prague_timeline__quoted {
				padding-left: 40px;
			}
		}
			.prague_timeline__quoted .vicon--quotes {
				fill: #ccc;
				font-size: 18px;
				position: absolute;
				top: 0;
				left: 0;
			}
			@media only screen and (min-width: 768px) {
				.prague_timeline__quoted .vicon--quotes {
					font-size: 30px;
				}
			}
			.prague_timeline__qoute {
				font: 16px/22px Arial, sans-serif;
				color: #333;
				margin: 0 0 10px 0;
			}
		.prague_timeline__link {
			display: inline-block;
			color: #d0021b;
			margin: 0 0 20px 25px;
		}
		@media only screen and (min-width: 768px) {
			.prague_timeline__link {
				margin-left: 40px;
			}
		}
		.prague_timeline__link:hover {
			color: #333;
		}


/* personal stories */
.prague_story {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 5px;
	box-sizing: border-box;
}
.prague_story::before {
	content: '';
	display: block;
	background-color: #ccc;
	height: 18px;
	width: 1px;
	margin: 0 auto;
}
@media only screen and (min-width: 768px) {
	.prague_story {
		padding: 0 38px;
	}
	.prague_story::before {
		height: 35px;
	}
}

@media only screen and (min-width: 768px) {
	.prague_timeline__post_story_wrapper {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		margin-left: -7px;
		margin-right: -7px;
		max-width: none;
	}
}
	.prague_timeline__title_story {
		color: #333;
	}

	.prague_timeline__post_story {
		padding: 20px 5px 10px 5px;
		max-width: 320px;
	}
	@media only screen and (min-width: 768px) {
		.prague_timeline__post_story {
			width: calc((100% - 28px) / 2);
			max-width: 372px;
			padding: 15px;
			margin-bottom: 15px;
		}
	}
	@media only screen and (min-width: 1006px) {
		.prague_timeline__post_story {
			width: calc((100% - 42px) / 3);
		}
	}

	.prague_timeline__name_story {
		font: 0/0 a;
		min-height: 40px;
		position: relative;
		margin-bottom: 10px;
	}
	@media only screen and (min-width: 768px) {
		.prague_timeline__name_story {
			min-height: 80px;
			margin-bottom: 15px;
		}
		.prague_timeline__icon_story {
			width: 78px;
			height: 78px;
			left: 0;
		}
		.prague_timeline__heading_story {
			padding: 10px 5px 0 88px;
		}
	}
	@media only screen and (min-width: 1006px) {
		.prague_timeline__name_story {
			min-height: 94px;
		}
	}

	.prague_story__link {
		font: 0/0 a;
		color: #fff;
		display: block;
		position: relative;
		padding: 19px 13px 17px 13px;
		text-align: center;
		overflow: hidden;
		z-index: 0;
	}
	@media only screen and (min-width: 1006px) {
		.prague_story__link {
			padding: 28px 15px 22px 15px;
		}
	}
		.prague_story__photo {
			background-color: #333;
			position: absolute;
			top: 0;
			right: -100px;
			bottom: 0;
			left: -100px;
			z-index: -1;
		}
		.prague_story__photo::before {
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			position: absolute;
			opacity: .7;
			will-change: opacity;
			content: '';
			transition: opacity .2s ease-in-out 0s;
			background-color: rgb(51,51,51);
			z-index: 1;
		}
		.prague_story__link:focus .prague_story__photo::before {
			opacity: 0;
		}
		@media only screen and (min-width: 1006px) {
			.prague_story__photo::before {
				opacity: 0;
			}
			.prague_story__link:hover .prague_story__photo::before {
				opacity: .7;
			}
		}
			.prague_story__img {
				width: auto;
				height: 100%;
				display: inline-block;
				transform: scale(1.032);
				transition: transform .2s ease-in-out 0s;
				will-change: transform;
			}
			@media only screen and (min-width: 1006px) {
				.prague_story__link:hover .prague_story__img {
					transform: scale(1);
				}
			}
		.prague_story__text {
			font: 16px/22px Arial, sans-serif;
			min-height: 280px;
			opacity: 1;
			will-change: opacity;
			transition: opacity .2s ease-in-out 0s;
		}
		.prague_story__link:focus .prague_story__text {
			opacity: 0;
		}
		@media only screen and (min-width: 768px) {
			.prague_story__text {
				min-height: 310px;
			}
		}
		@media only screen and (min-width: 1006px) {
			.prague_story__text {
				min-height: 330px;
				opacity: 0;
			}
			.prague_story__link:hover .prague_story__text {
				opacity: 1;
			}
		}
		@media only screen and (min-width: 1200px) {
			.prague_story__text {
				min-height: 295px;
			}
		}
		.prague_story__date {
			font: 14px/16px Arial, sans-serif;
			margin-top: 26px;
		}
		.prague_story__read_more {
			font: 14px/1 Arial, sans-serif;
			color: #d0021b;
			background-color: #eee;
			border-radius: 16px;
			box-sizing: border-box;
			width: 130px;
			height: 32px;
			margin: 7px auto 0;
			vertical-align: middle;
		}
		.prague_story__link:hover .prague_story__read_more {
			color: #333;
		}
		.prague_story__read_more::before {
			content: '';
			display: inline-block;
			vertical-align: middle;
			height: 100%;
		}

/* footer */
.prague_footer {
	background-color: #fff;
	color: #333;
	padding-bottom: 39px;
}
@media screen and (min-width: 768px) {
	.prague_footer {
		padding-bottom: 53px;
	}
}

.prague_footer__col {
	margin-top: 14px;
}
@media only screen and (min-width: 768px) {
	.prague_footer__wrapper {
		margin-right: -8px;
		margin-left: -8px;
	}
	.prague_footer__col {
		margin-top: 0;
		display: inline-block;
		width: calc((100% - 48px) / 3);
		margin-right: 8px;
		margin-left: 8px;
		vertical-align: top;
	}
}
@supports (display: flex) {
	@media screen and (min-width: 768px) {
		.prague_footer__wrapper {
			display: -webkit-flex;
			display: flex;
			flex-flow: row wrap;
			justify-content: space-between;
			margin: 0;
		}
		.prague_footer__col {
			width: calc((100% - 32px) / 3);
			margin-top: 0;
			margin: 0;
		}
	}
}


.prague_footer__subtitle {
	font: 18px/1 Georgia, serif;
	margin-bottom: 10px;
	width: 100%;
}
.prague_footer__col_item {
	font: 14px/18px Georgia, serif;
	margin: 4px 0;
}
.prague_footer__col_title {
	font: 14px/18px Arial, sans-serif;
	font-weight: bold;
}
@media only screen and (min-width: 768px) {
	.prague_footer__subtitle {
		font-size: 24px;
	}
	.prague_footer__col_item {
		margin: 6px 0;
	}
	.prague_footer__col_item,
	.prague_footer__col_title {
		font-size: 16px;
		line-height: 20px;
	}
}

.prague_contacts {
	font: 18px/1 Georgia, serif;
	text-align: center;
	margin-top: 10px;
}
.prague_contacts__email {
	display: block;
	font: bold 16px/24px Arial, sans-serif;
	color: #d0021b;
}
.prague_contacts__email:hover {
	color: #333;
}
@media only screen and (min-width: 768px) {
	.prague_contacts__email {
		display: inline;
	}
}

.prague_copyright {
	font: 16px/24px Arial, sans-serif;
	text-align: center;
}

.prague_footer__reference {
	margin-bottom: 14px;
}
@media only screen and (min-width: 768px) {
	.prague_footer__reference {
		font-size: 18px;
		line-height: 18px;
	}
}

.prague_footer__col_item_ref,
.prague_footer__gratitude {
	font: 12px/14px Arial, sans-serif;
}


/* PHOTO */
.prague__photo_canvas {
	font: 0/0 a;
	background-color: #eee;
	position: relative;
	height: 0;
	padding-bottom: 64.232%;
	text-align: center;
	overflow: hidden;
}
.prague__photo_item {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
	.prague_photo_img {
		display: inline-block;
		width: auto;
		height: 100%;
	}

.prague__photo_src {
	font: 12px/14px Arial, sans-serif;
	color: #999;
	margin: 10px 0 0;
	text-align: center;
}
@media only screen and (min-width: 768px) {
	.prague__photo_src {
		font-size: 14px;
		line-height: 18px;
		margin-top: 12px;
	}
}


/* VIDEO */
.prague__video_wrapper {
	margin-top: 12px;
}
@media only screen and (min-width: 768px) {
	.prague__video_wrapper {
		margin-top: 20px;
	}
}
.vp__video {
	display: block;
	width: 100%;
}



/* AUDIO */
.prague__audio {
	font: 0/0 a;
}
.prague__audio_item {
	display: inline-block;
	width: calc(100% - 54px);
	margin-left: 14px;
	vertical-align: top;
}
.prague__audio .vicon--radio {
	font-size: 40px
}


/* SLIDER */
.prague_timeline__slider {
	padding: 7px;
	position: relative;
}
@media only screen and (min-width: 768px) {
	.prague_timeline__slider {
		padding: 20px 24px;
	}
}

.prague_slider_img {
	display: block;
	position: absolute;
	top: 7px;
	bottom: 7px;
	right: 7px;
	left: 7px;
	width: calc(100% - 14px);
	height: calc(100% - 14px);
	object-fit: cover;
}
@media only screen and (min-width: 768px) {
	.prague_slider_img {
		position: absolute;
		top: 20px;
		bottom: 20px;
		right: 24px;
		left: 24px;
		width: calc(100% - 48px);
		height: calc(100% - 40px);
	}
}

.prague__slider_blind {
	content: '';
	position: absolute;
	width: calc(100% - 14px);
	height: calc(100% - 14px);
	background-color: rgba(51,51,51,.7);
}
@media only screen and (min-width: 768px) {
	.prague__slider_blind {
		width: calc(100% - 48px);
		height: calc(100% - 40px);
	}
}

.prague__slider_canvas {
	font: 0/0 a;
	padding-bottom: 80px;
	overflow: hidden;
}

.prague__slider_item {
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 30px 15px 0 15px;
	box-sizing: border-box;
	width: 100%;
	margin-right: -100%;
	z-index: 2;
}
@media only screen and (min-width: 768px) {
	.prague__slider_item {
		padding: 50px 75px 0 75px;
	}
}

.prague__slider_text {
	font: 14px/20px Arial, sans-serif;
	color: #fff;
	display: inline-block;
	margin-top: 15px;
	vertical-align: middle;
}
@media only screen and (min-width: 768px) {
	.prague__slider_text {
		font-size: 16px;
		line-height: 22px;
		margin-top: 18px;
	}
}

.prague__slider_title {
	font: 20px/22px Georgia, serif;
	color: #fff;
	display: inline-block;
	width: calc(100% - 54px);
	vertical-align: middle;
}
@media only screen and (min-width: 768px) {
	.prague__slider_title {
		font-size: 28px;
		line-height: 32px;
		width: 100%;
		text-align: center;
	}
}

.prague__slider_number {
	font: bold 16px/48px Arial, sans-serif;
	color: #333;
	background-color: #fff;
	border-radius: 50%;
	display: inline-block;
	width: 48px;
	height: 48px;
	margin: 0 6px 0 0;
	text-align: center;
	vertical-align: middle;
}
@media only screen and (min-width: 768px) {
	.prague__slider_number {
		font-size: 18px;
		line-height: 54px;
		display: block;
		margin: 0 auto 16px;
		width: 54px;
		height: 54px;
	}
}

.prague__slider_nav {
	position: absolute;
	bottom: 26px;
	width: 31px;
	height: 31px;
	z-index: 2;
}
@media only screen and (min-width: 768px) {
	.prague__slider_nav {
		top: calc(50% - 25px);
		bottom: 0;
		width: 51px;
		height: 51px;
	}
}
.prague__slider_nav:hover {
	background-color: rgba(255,255,255,.3);
	border-radius: 50%;
}
.prague__slider_nav.slider-inactive:hover{
	background-color: transparent;
}

.vicon--nav {
	fill: #fff;
	font-size: 31px;
}
.prague__slider_nav.slider-inactive .vicon--nav {
	fill: rgba(255,255,255,.5);
}
@media only screen and (min-width: 768px) {
	.vicon--nav {
		font-size: 51px;
	}
}
.prague__slider_prev {
	left: 36px;
}
.prague__slider_next {
	right: 36px;
}

.prague__slider_nav_dots {
	position: absolute;
	bottom: 36px;
	right: 0;
	left: 0;
	text-align: center;
}
.prague__nav_lineup {
	font: 0/0 a;
	list-style: none;
}
.prague__nav_lineup_item {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 5px;
	background-color: #fff;
	border-radius: 50%;
	box-sizing: border-box;
	vertical-align: middle;
	transform: scale(1);
	transition:
		transform .15s cubic-bezier(0.0, 0.0, 0.2, 1);
	transition-delay: 0s, 0s, 0s;
}
.prague__nav_lineup_item:hover {
	transform: scale(1.5);
	transition:
		transform .15s cubic-bezier(0.0, 0.0, 0.2, 1);
	will-change: transform;
}
.prague__nav_lineup_item.slider-nav-item-current {
	background-color: #d0021b;
	border: 2px solid #fff;
	transform: scale(1.5);
	transition:
		transform .15s cubic-bezier(0.0, 0.0, 0.2, 1);
	will-change: transform;
}
.prague__nav_lineup_item a {
	display: block;
	width: 100%;
	height: 100%;
}


/* GALLERY */
.prague__gallery_wrapper {
	font: 0/0 a;
	position: relative;
}
.prague__gallery_item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.prague__gallery_photo {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.prague_gallery_img {
	display: inline-block;
	width: 100%;
	height: auto;
}

.prague__gallery_descript {
	display: none;
	font: 0/0 a;
	background-color: rgba(51,51,51,.7);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 21px 15px 30px 15px;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity .25s linear 0s,
		visibility 0s linear .25s;
	will-change: opacity, visibility;
	text-align: left;
}
.slider-hover .slider-item-current .prague__gallery_descript {
	opacity: 1;
	visibility: visible;
	transition:
		opacity .25s ease-in-out 0s,
		visibility 0s linear 0s;
}
@media only screen and (min-width: 768px) {
	.prague__gallery_descript {
		display: block;
	}
}
.prague__gallery_content {
	font: 14px/18px Arial, sans-serif;
	color: #fff;
}

.prague__gallery_info {
	font: 0/0 a;
	min-height: 60px;
	padding-bottom: 45px;
	margin-top: 20px;
}
@media only screen and (min-width: 480px) {
	.prague__gallery_info {
		min-height: 40px;
	}
}
@media only screen and (min-width: 768px) {
	.prague__gallery_info {
		display: none;
	}
}

.prague__gallery_text {
	font: 12px/20px Arial, sans-serif;
	color: #999;
	margin: 0 -100% 0 0;
}

.prague__gallery_src {
	display: inline-block;
	width: 100%;
	vertical-align: top;
	margin-right: -100%;
	visibility: hidden;
	opacity: 0;
	transition:
		opacity .15s ease-in-out 0s,
		visibility 0s ease-in-out .15s;
	will-change: opacity, visibility;
	overflow: hidden;
}
.slider-nav-item-current.prague__gallery_src {
	visibility: visible;
	opacity: 1;
	transition:
		opacity .15s ease-in-out 0s,
		visibility 0s ease-in-out 0s;
}

.prague__gallery_nav {
	bottom: 0;
}
@media only screen and (max-width: 767px) {
	.prague__gallery_nav:hover {
		background-color: rgba(51,51,51,.2);
	}
}
@media only screen and (min-width: 768px) {
	.prague__gallery_nav {
		top: calc(50% - 51px);
	}
}

.prague__gallery_prev {
	left: 27px;
}
.prague__gallery_next {
	right: 27px;
}
@media only screen and (min-width: 768px) {
	.prague__gallery_prev {
		left: 12px;
	}
	.prague__gallery_next {
		right: 12px;
	}
}


.prague__gallery_nav .vicon {
	fill: #666;
}
.prague__gallery_nav.slider-inactive .vicon {
	fill: rgba(51,51,51,.35);
}
@media only screen and (min-width: 768px) {
	.prague__gallery_nav .vicon {
		fill: #fff;
	}
	.prague__gallery_nav.slider-inactive .vicon {
		fill: rgba(255,255,255,.5);
	}
}

.prague__gallery_nav_dots {
	margin-top: 20px;
	bottom: 11px;
}
@media only screen and (min-width: 768px) {
	.prague__gallery_nav_dots {
		position: static;
	}
}

.prague__gallery_nav_lineup_item {
	background-color: #666;
}
.prague__gallery_nav_lineup_item.slider-nav-item-current {
	border: 2px solid #666;
}



/* -------------------- slider.css -------------------- */
.slider-draggable .slider-canvas {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.slider:not(.slider-ready) .slider-item ~ .slider-item,
.slider:not(.slider-ready) .slider-prev,
.slider:not(.slider-ready) .slider-next,
.slider:not(.slider-ready) .slider-nav {
	visibility: hidden;
}

.slider-3d .slider-item,
.slider-3d .slider-nav-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.slider-3d .slider-item {
	-webkit-transform: translate3d(0px, 0px, 0px);
	-moz-transform: translate3d(0px, 0px, 0px);
	-ms-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
	will-change: transform;
}


.stop_animation.stop_animation.stop_animation {
	transition: none!important;
}


/* -------------------- index cover -------------------- */
.index_cover {
	position: relative;
	z-index: 1;
	padding-top: calc(0px + 42 * (100vw - 320px) / (1440 - 320));
	padding-bottom: 24px;
}
@media screen and (min-width: 1440px) {
	.index_cover {
		padding-top: 42px;
	}
}

	.index_cover::before {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: 81.7%;
		background-color: #eee;
		content: '';
		z-index: -1;
	}

.index_cover {
	// max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}
.index_cover,
.index_cover__photo {
	position: relative;
}
.index_cover__photo_body {
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

@media screen and (max-width: 380px) {
	.index_cover__photo {
		margin-bottom: calc(109px - 93 * (100vw - 224px) / (380 - 224));
	}
}
@media screen and (min-width: 380px) and (max-width: 528px) {
	.index_cover__photo {
		margin-bottom: 16px;
	}
}

@media screen and (min-width: 529px) and (max-width: 767px) {
	.index_cover__photo {
		margin-bottom: calc(16px + 50 * (100vw - 529px) / (767 - 529));
	}
}
@media screen and (min-width: 768px)  {
	.index_cover__photo {
		margin-bottom: 66px;
	}
}
@media screen and (min-width: 1006px)  {
	.index_cover__photo {
		max-width: calc(100% / 1220 * 1068);
	}
}
.index_cover .limiter {
	position: relative;
	max-width: 100%;
}
@media screen and (min-width: 1006px)  {
	.index_cover .limiter {
		/* max-width: 84.72222222222222%; */
		max-width: 1240px;
	}
}
.index_cover__logo {
	width: 155px;
	height: 32px;
	background-color: #333;
	font: 0/0 a;
	text-align: center;
	position: relative;
	z-index: 3;
}
	.index_cover__logo::before {
		content: '';
		height: 100%;
		width: 0;
		vertical-align: middle;
		display: inline-block;
	}
	.index_cover__logo_img {
		width: 95px;
		height: 12px;
		fill: #fff;
	}
@media screen and (min-width: 768px) {
	.index_cover__logo {
		width: 281px;
		height: 58px;
	}
	.index_cover__logo_img {
		width: 170px;
		height: 22px;
	}
}
@media screen and (min-width: 1400px) {
	.index_cover__logo {
		width: 446px;
		height: 92px;
	}
	.index_cover__logo_img {
		width: 270px;
		height: 35px;
	}
}


.index_cover__collage {
	position: relative;
}
@media screen and (min-width: 1006px)  {
	.index_cover__collage {
		width: 100%;
	}
}
.index_cover__text {
	width: 90.625%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
	text-align: center;
}
@media screen and (min-width: 1006px)  {
	.index_cover__text {
		position: absolute;
		bottom: 240px;
		background-color: rgba(255,255,255,.8);
		width: 56.2%;
		right: 0;
		padding: calc(100% / 1220 * 42) calc(100% / 1220 * 68);
		text-align: left;
		z-index: 1;
		box-sizing: border-box;
	}
}



.index_cover__aim {
	width: 258px;
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	top: 13px;
	left: 0;
	right: 0;
	max-width: 100%;
	text-align: center;
}
@media screen and (min-width: 422px) and (max-width: 767px) {
	.index_cover__aim {
		width: calc(258px + 158 * (100vw - 422px) / (767 - 422));
		top: auto;
		bottom: calc(0px - 20 * (100vw - 422px) / (767 - 422));
	}
}
@media screen and (min-width: 768px) {
	.index_cover__aim {
		width: 416px;
		top: auto;
	}
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
	.index_cover__aim {
		bottom: calc(-20px + 25 * (100vw - 768px) / (1279 - 768));
	}
}
@media screen and (min-width: 1280px) {
	.index_cover__aim {
		bottom: 5px;
	}
}

.index_cover__aim_body {
	padding-bottom: 100%;
	height: 0;
	position: relative;
	top: 0;
}
@media only screen and (min-width: 768px) {
	.index_cover__aim {
		width: 416px;
	}
}
	.prague_round {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
.prague_star {
	width: 140px;
	height: 186px;
	position: absolute;
	top: 45px;
	right: 0;
	left: 0;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .2);
}
@media only screen and (min-width: 422px) and (max-width: 767px) {
	.prague_star {
		width: calc(140px + 66 * (100vw - 422px) / (767 - 422));
		height: calc(186px + 240 * (100vw - 422px) / (767 - 422));
		top: calc(45px - 16 * (100vw - 422px) / (767 - 422));
	}
}
@media only screen and (min-width: 768px) {
	.prague_star {
		width: 206px;
		height: 426px;
		top: 29px;
	}
}

.prague_star__img {
	width: 223.1654676258993px;
	height: 214.4886363636364px;
	bottom: 9px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	z-index: 2;
}
@media only screen and (min-width: 422px) and (max-width: 767px) {
	.prague_star__img {
		width: calc(223.1654676258993px + 246.8345323741007 * (100vw - 422px) / (767 - 422));
		height: calc(214.4886363636364px + 238.5113636363636 * (100vw - 422px) / (767 - 422));
		bottom: calc(9px + 41 * (100vw - 422px) / (767 - 422));
	}
}

@media only screen and (min-width: 768px) {
	.prague_star__img {
		width: 470px;
		height: 453px;
		bottom: 50px;
	}
}

.index_cover__img {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.index_cover__name {
	color: #333;
	font: bold 22px/1.2 Arial, sans-serif;
	position: relative;
	text-transform: uppercase;
}
@media only screen and (min-width: 422px) and (max-width: 767px) {
	.index_cover__name {
		font-size: calc(22px + 14 * (100vw - 422px) / (767 - 422));
		line-height: 1.2;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1005px) {
	.index_cover__name {
		font-size: 36px;
	}
}
@media only screen and (min-width: 1006px) {
	.index_cover__name {
		font-size: 48px;
		margin-bottom: 18px;
	}
}
@media only screen and (min-width: 1006px) and (max-width: 1440px) {
	.index_cover__name {
		font-size: calc(36px + 12 * (100vw - 1006px) / (1440 - 1006));
		margin-bottom: 18px;
	}
}

	.prague_star .index_cover__name {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 16px;
		margin-left: auto;
		margin-right: auto;
	}
@media only screen and (max-width: 1005px) {
	.prague_star .index_cover__name {
		bottom: calc(16px - 3 * (100vw - 422px) / (1005 - 422));
	}
}

.index_cover__text .index_cover__name {
	display: none;
}
@media only screen and (min-width: 1006px) {
	.index_cover__text .index_cover__name {
		display: block;
	}
	.prague_star .index_cover__name {
		display: none;
	}
}
.index_cover__subheader {
	display: none;
}
@media only screen and (min-width: 1006px) {
	.index_cover__subheader {
		display: block;
		font: bold 24px/1.1666 Arial, sans-serif;
		text-align: center;
		color: #fff;
		width: 540px;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-left: -270px;
	}
		.index_cover__subheader_bg {
			background-color: #333;
			padding: 4px 10px;
			position: relative;
			z-index: 3;
		}
		.index_cover__subheader_bg ~ .index_cover__subheader_bg {
			z-index: 2;
		}
}
.prague_star .index_cover__read_more {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 350px;
	margin-left: -175px;
	margin-top: 108px;
}
@media only screen and (min-width: 1006px) {
	.prague_star .index_cover__read_more {
		display: block;
	}
}

.prague_highlight {
	color: #d0021b;
}
.index_cover__lead {
	font: 14px/1.29 Georgia, serif;
	color: #333;
	// width: 90.625%;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
	.index_cover__lead {
  		font-size: calc(14px + 4 * (100vw - 320px) / (767 - 320));
  		line-height: calc(1.29em + 0.4 * (100vw - 320px) / (767 - 320));
	}
}
@media only screen and (min-width: 768px) and (max-width: 1440px) {
	.index_cover__lead {
		font-size: calc(18px + 6 * (100vw - 768px) / (1440 - 768));
		line-height: calc(1.33em - 0.8 * (100vw - 768px) / (1440 - 768));
	}
}
@media only screen and (min-width: 1006px) {
	.index_cover__lead {
		width: auto;
		margin-left: 0;
		margin-bottom: .375em;
	}
}

@media only screen and (min-width: 1006px) and (max-width: 1440px) {
	.index_cover__lead {
		font-size: calc(15px + 9 * (100vw - 1006px) / (1440 - 1006));
		// line-height: calc(1.33em - 0.8 * (100vw - 1006px) / (1440 - 1006));
	}
}

@media only screen and (min-width: 1440px) {
	.index_cover__lead {
		font-size: 24px;
		line-height: 1.25;
	}
}
.index_cover__read_more {
	font: bold 12px/1 Arial, sans-serif;
	color: #d0021b;
	margin-top: 19px;
	text-transform: uppercase;
	text-align: center;
	z-index: 3;
}
.index_cover__read_more:hover {
	color: #333;
}
@media only screen and (min-width: 1006px) {
	.index_cover__read_more {
		display: none;
	}
}

.index_cover__separator {
	height: 160px;
	position: absolute;
	top: 100%;
	margin-top: -12px;
	left: 0;
	right: 0;
	width: 1px;
	background-color: #999;
	opacity: .4;
	margin-left: auto;
	margin-right: auto;
}
@media only screen and (min-width: 422px) and (max-width: 767px) {
	.index_cover__separator {
		height: calc(140px - 10 * (100vw - 0px) / (767 - 422));
	}
}

@media only screen and (min-width: 768px) {
	.index_cover__separator {
		height: 130px;
	}
}
@media only screen and (min-width: 1006px) {
	.index_cover__separator {
		height: 80px;
	}
}
.index_cover__scroll {
	width: 14px;
	margin-top: 19px;
	text-align: center;
	width: 100%;
}
@media screen and (min-width: 1006px)  {
	.index_cover__scroll {
		max-width: calc(100% / 1220 * 1068);
		margin-top: -14px;
	}
}


.prague_mobile_arrow {
	width: 13px;
	height: 26px;
	display: inline-block;
	fill: #666;
}
.prague_desktop_arrow {
	width: 13px;
	height: 72px;
	display: none;
	fill: #666;
}
@media only screen and (min-width: 768px) {
	.prague_desktop_arrow {
		display: inline-block;
	}
	.prague_mobile_arrow {
		display: none;
	}
}

.index_cover__fence {
	width: 100%;
	display: table;
	border: 1px solid #979797;
	border-collapse: collapse;
	box-sizing: border-box;
}
	.index_cover__fence_row {
		display: table-row;
	}
	.index_cover__fence_item {
		display: table-cell;
		border: 1px solid #979797;
		border-collapse: collapse;
		padding-bottom: 12.827%;
		position: relative;
	}
	.index_cover__fence_box {
		background-color: #fff;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		will-change: opacity;
	}
	.index_cover__fence_box-2 {
		opacity: .2;
	}
	.index_cover__fence_box-3 {
		opacity: .3;
	}
	.index_cover__fence_box-4 {
		opacity: .4;
	}

@keyframes prague_animation {
	0% {
		opacity: .2;
	}
	50% {
		opacity: .4;
	}
	100% {
		opacity: .2;
	}
}

	.prague_animation1 {
		animation: prague_animation 7s infinite linear;
		animation-delay: 0s;
	}
	.prague_animation2 {
		animation: prague_animation 4s infinite linear;
		animation-delay: -5s;
	}
	.prague_animation3 {
		animation: prague_animation 8s infinite linear;
		animation-delay: -6s;
	}
	.prague_animation4 {
		animation: prague_animation 5s infinite linear;
		animation-delay: -1s;
	}
	.prague_animation5 {
		animation: prague_animation 6s infinite linear;
		animation-delay: -3s;
	}
	.prague_animation_breath {
		animation: prague_breath 25s infinite ease-in-out;
	}

@keyframes prague_breath {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.04);
	}
	100% {
		transform: scale(1);
	}
}
