html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}


@font-face {
	font-family: 'Geometria';
	font-style: normal;
	font-weight: 400;
	src: url('/assets/fonts/geometria_light.otf') format('opentype'), 
}
@font-face {
	font-family: 'Geometria';
	font-style: normal;
	font-weight: 600;
	src: url('/assets/fonts/geometria_medium.otf') format('opentype'), 
}
@font-face {
	font-family: 'Geometria';
	font-style: normal;
	font-weight: 800;
	src: url('/assets/fonts/geometria_bold.otf') format('opentype'), 
}
@font-face {
	font-family: 'Tupo Vyaz';
	font-style: normal;
	font-weight: 400;
	src: url('/assets/fonts/tupo-vyaz-regular.eot');
	src: url('assets/fonts/tupo-vyaz-regular.eot?#iefix') format('embedded-opentype'),
		 url('/assets/fonts/tupo-vyaz_regular.ttf') format('truetype'),
		 url('/assets/fonts/tupo-vyaz-regular.woff2') format('woff2'),
		 url('/assets/fonts/tupo-vyaz-regular.woff') format('woff'), 
}

:root {
	--col-darkgrey:  	#393D43;
	--col-grey:       	#666C76;
	--col-gold:			#957336;
	--col-lightgrey:	#F2F2F2;
	--col-white:      	#FFF;
}


body {
	line-height: 1;
	font-family: 'Geometria', sans-serif;
	font-weight: 400;
	background-color: #fff;
	font-size: 22px;
	line-height: 26px;
	color: var(--col-grey);
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a { 
	text-decoration: none;
	color: var(--col-grey);
}
section {
	position: relative;
	display: block;
}


h2 {
	font-size: 49px;
	font-weight: 600;
}
h3 {
	font-size: 34px;
	font-weight: 600;
	text-transform: capitalize;
}

.vis-sm {
	display: none;
}
.vis-md {
	display: none;
}
.vis-lg {
	display: none;
}
.hidden-sm {
	display: block;
}
.hidden-md {
	display: block;
}
.hidden-lg {
	display: block;
}

/* General Objects */
.basictext {
	font-size: 22px;
	line-height: 27px;
	font-family: 'Geometria', sans-serif;
	font-weight: 400;
}
.nero-button {
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	width: 250px;
	height: 60px;
	background-color: var(--col-grey);
	color: var(--col-white);
	transition: all ease .2s;
}
.nero-button:hover, .nero-button:focus {
	background-color: var(--col-gold);
}

.arrow {
	position: relative;
	display: flex;
	align-items: center;
	top: -1px;
	margin-right: 8px;
}
.arrow > div:nth-child(1){
	width: 15px;
	height: 1px;
}
.arrow > div:nth-child(2){
	width: 8px;
	height: 8px;
	transform: rotate(45deg);
	margin-left: -10px;
}
.arrow.white > div:nth-child(1){
	background-color: var(--col-white);
}
.arrow.white > div:nth-child(2){
	border-top: 1px solid var(--col-white);
	border-right: 1px solid var(--col-white);
}
.arrow.grey > div:nth-child(1){
	background-color: var(--col-grey);	
}
.arrow.grey > div:nth-child(2){
	border-top: 1px solid var(--col-grey);
	border-right: 1px solid var(--col-grey);
}

.block-numbers {
	font-weight: 600;
	color: var(--col-lightgrey);
}
.block-numbers > .count {
	color: inherit;
	font-size: 128px;
	font-weight: inherit;
	line-height: 120px;
}
.block-numbers > .caption {
	color: inherit;
	font-size: 46px;
	font-weight: inherit;
	text-transform: capitalize;
}

.container {
	position: relative;
	display: block;
	margin: 0px auto;
}
@media only screen and (min-width: 300px) and (max-width: 470px) {}
@media only screen and (min-width: 471px) and (max-width: 767px) {
	.container {
		margin: 0px 45px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.container {
		max-width: 94%;	
	}
}
@media only screen and (min-width: 1024px) and (max-width: 1365px) {
	.container {
		max-width: 96%;	
	}	
}
@media only screen and (min-width: 1366px) and (max-width: 1919px) {
	.container {
		max-width: 96%;	
	}	
}
@media only screen and (min-width: 1920px) {
	.container {
		max-width: 1800px;	
	}
}

.topup {
	position: absolute;
	display: block;
	width: 100vw;
	height: 100vh;
	z-index: 0;
	overflow: hidden;
}
.topup.ontop {
	z-index: 100;
}
.topup > .cover {
	position: absolute;
	display: block;
	width: 105%;
	height: 100%;
	background-color: rgba(0,0,0,.9);
	transition: all ease .3s;
	opacity: 0;
}
.topup.viz > .cover {
	opacity: 1;
	transition: all ease 1s;
}
.topup > .menu {
	background: #fff;
    opacity: 1;
    z-index: 101;
    display: block;
    position: absolute;	
    width: 60%;
    height: 100%;
    transition: all ease .4s;
    transition-delay: .5s;
    left: -70%;
    padding: 40px;
}
.topup.viz > .menu {
	left: 0%;
	transition-delay: .5s;
}
.topup > .menu > .wrapper {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    height: 100%;	
}

.topup > .menu > .wrapper > .topup-nero-top {
	position: relative;
	display: flex;
	height: 40px;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}
.topup > .menu > .wrapper > .topup-nero-top > div {
	flex:  0 0 40px;
}
.topup > .menu > .wrapper > .topup-nero-top > .nero-logo {
	background: url('/assets/static/icons/nero.svg') center no-repeat;
    background-size: cover;
    width: 40px;
    height: 40px;
    position: relative;
    display: block;
}
.topup > .menu > .wrapper > .topup-nero-top > .close-btn {
	flex: 0 0 100px;
	text-align: right;
	user-select: none;
}
.topup > .menu > .wrapper > .topup-nero-top > .close-btn > span{
	position: relative;
	display: block;
	user-select: none;
}
.topup > .menu > .wrapper > .topup-nero-top > .close-btn > span:after{
	position: relative;
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--col-grey);
}
.topup > .menu > .wrapper > nav{
	font-size: 42px;
    line-height: 54px;
}
.topup > .menu > .wrapper > nav > ul{}
.topup > .menu > .wrapper > nav > ul > li{}
.topup > .menu > .wrapper > nav > ul > li:not(:first-child){
	margin-top: 8px;
}
.topup > .menu > .wrapper > nav > ul > li > a{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;	
}
.topup > .menu > .wrapper > nav > ul > li > a > div{
	display: flex;
    width: 20px;
    height: 2px;
    background-color: var(--col-grey);
    align-items: center;
    justify-content: right;
    margin-right: 5px;
}
.topup > .menu > .wrapper > nav > ul > li > a > div:after{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border-top: 2px solid var(--col-grey);
    border-right: 2px solid var(--col-grey);
}
.topup > .menu > .wrapper > nav > ul > li > a > span{}

.topup > .menu > .wrapper > .nero-socials {
	display: flex;
	flex-flow: row nowrap;
}
.topup > .menu > .wrapper > .nero-socials > div {
	flex: 0 0 30px;
	height: 30px;
	width: 30px;
}
.topup > .menu > .wrapper > .nero-socials > div:not(:first-child) {
	margin-left: 20px;
}
.topup > .menu > .wrapper > .nero-socials > div > a {
	position: relative;
	display: block;
	height: inherit;
	width: inherit;
}
.topup > .menu > .wrapper > .nero-socials > div > a > span{
	position: relative;
	display: block;
	height: inherit;
	width: inherit;	
	background-size: cover;
}
.topup > .menu > .wrapper > .nero-socials > .vk > a > span{
	background-image: url('/assets/static/icons/vk.svg');
}
.topup > .menu > .wrapper > .nero-socials > .tg > a > span{
	background-image: url('/assets/static/icons/tg.svg');
}



.topmenu {
    position: fixed;
    display: none;
    height: 100px;
    width: calc((100vw - 1920px) / 2 + 1920px / 3 - 6px);
    z-index: 11111;
    background-color: #fff;
    border-bottom: 3px solid var(--col-gold);
    left: -100%;
    transition: all ease-in-out .5s;
}
.topmenu.vis {
	left: 0px;
}
.topmenu > .wrapper {
	position: absolute;
    display: flex;
    top: 0px;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    width: calc(100% - (100vw - 1920px) / 2 - 20px);
    height: 100%;
}
.topmenu > .wrapper > div {}
.topmenu > .wrapper > div:nth-child(1) {
	flex: 0 0 60px;
	height: 40px;
}
.topmenu > .wrapper > div:nth-child(2) {
	flex: 0 0 60px;
}
.topmenu > .wrapper > div > .nero-logo {
	width: 40px;
	aspect-ratio: 1/1;
	margin-left: 20px;	
	background: url('/assets/static/icons/nero.svg') center no-repeat;
	background-size: cover;
}
.topmenu > .wrapper > div > .topnav-button {
	width: 40px;
	aspect-ratio: 1/1;
	position: relative;
	display: flex;
	flex-flow: row wrap;
	justify-content: right;
	align-items: center;
	margin-right: 20px;
}
.topmenu > .wrapper > div > .topnav-button > span {
	position: relative;
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--col-grey);
}
.topmenu > .wrapper > div > .topnav-button > span:first-child {
	flex: 0 0 70%;
}



header, main, footer {
	z-index: 10;
}

.sec-01 {
	position: relative;
	display: block;
	width: 100%;
	height: 1080px;
}

.sec-01 .sec-wrapper{
	position: relative;
	display: block;
	width: 100%;
	margin-top: 34px;
}
.sec-01 .top-pic {
	position: absolute;
	display: block;
	width: 1180px;
	height: 1046px;	
	top: 0px;
	right: 0px;
	background: url('/assets/static/b-nera.jpg') center;
    background-size: 110%;
    background-repeat: no-repeat;
    background-color: #efefef;
    background-position-y: -950px;
}
.sec-01 .top-icons {
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: start;
	width: 560px;
}

.sec-01 .top-icons > .nero-icon {
	flex: 0 0 60px;
}
.sec-01 .top-icons > .nero-socials {
	position: relative;
	display: flex;
	flex:  0 0 150px;
}
.sec-01 .top-icons > .nero-socials > div {
	position: relative;
	flex:  0 0 60px;
	height: 60px;
	width: 60px;
}
.sec-01 .top-icons > .nero-socials > div:not(:first-child) {
	margin-left: 30px;
}
.sec-01 .top-icons > .topnav-button {}
.sec-01 .top-icons > .topnav-button > div {}
.sec-01 .top-icons > .topnav-button > div > span {
	position: relative;
	display: block;
	height: 2px;
	background-color: var(--col-white);
	width: 100%;
}
.sec-01 .top-icons > .topnav-button > div > span:not(:first-child) {
	margin-top: 10px;
}
.sec-01 .top-icons > .topnav-button > div > span:not(:last-child) {
	width: 70%;
	margin-left: auto;
}
.sec-01 .top-icons > .topnav-button > div > span:nth-child(3) {}


.nero-icon > a > span {
	background-image: url('/assets/static/icons/nero.svg');
	background-size: cover;
}
.vk-icon > a > span {
	background-image: url('/assets/static/icons/vk.svg');
	background-size: cover;
}
.tg-icon > a > span {
	background-image: url('/assets/static/icons/tg.svg');
	background-size: cover;
}
.nero-icon:hover > a > span {
	background-image: url('/assets/static/icons/nero-gold.svg');
	background-size: cover;
}
.vk-icon:hover > a > span {
	background-image: url('/assets/static/icons/vk-gold.svg');
	background-size: cover;
}
.tg-icon:hover > a > span {
	background-image: url('/assets/static/icons/tg-gold.svg');
	background-size: cover;
}



.sec-01 .top-icons > div {
	position: relative;
	display: block;
	flex: 0 0 60px;
	height: 60px;
	width: 60px;
}
.sec-01 .top-icons > div > a, .sec-01 .top-icons > div > a > span, .sec-01 .top-icons > div > div > a, .sec-01 .top-icons > div > div > a > span {
	position: inherit;
	display: inherit;
	width: inherit;
	height: inherit;
}

.sec-01 .date {
	position: relative;
	display: block;
	font-size: 84px;
	font-family: 'Tupo Vyaz';
	margin-top: 150px;
}

.sec-01 .nero-word {
	position: relative;
	display: block;
	font-family: 'Tupo Vyaz';
	font-size: 215px;
	margin-top: 50px;
	line-height: 158px;
	left: -5px;
}
.sec-01 .nero-word > .nsub {
	font-size: 32pt;
	line-height: 32pt;
}
.sec-01 .nero-word-subh {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 18px;
	font-weight: 500;
	margin-top: 20px;
	width: 254px;
}
.sec-01 .nero-word-subh > p{}
.sec-01 .button-wrapper {
	position: relative;
	display: block;
	margin-top: 30px;
}
.sec-01 .button-wrapper > .nero-button {
	font-size: 20px;
	font-weight: 500;
}

.sec-01 .hash-navigation {
	font-size: 22px;
	font-weight: 500;
	width: 560px;
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	margin-top: 180px;
}
.sec-01 .hash-navigation > div {
	flex: 0 0 50%;
	position: relative;
	display: block;

}
.sec-01 .hash-navigation > div > div {
	flex: 0 0 100%;
	position: relative;
	display: block;
	line-height: 24px;
} 
.sec-01 .hash-navigation > div > div:not(:first-child) {
	margin-top: 8px;	
}

.sec-01 .hash-navigation > div > div > a {
	position: relative;
	display: flex;
	height: 24px;
	width: 100%;
	align-items: center;
	user-select: none;
}
.sec-01 .hash-navigation > div > div > a > div {
	position: relative;
	display: block;
	flex: 0 0 24px;
	height: 24px;
	width: 24px;
	background-image: url('/assets/static/icons/arrow-to-right.svg');
	background-position: center;
	background-repeat: no-repeat;
}
.sec-01 .hash-navigation > div > div > a > span{
	position: relative;
	display: block;
	margin-left: 10px;
}


.sec-02 {
	padding: 70px 0px 0px;
}
.about-wrapper {
	position: relative;
	display: flex;
	flex-flow: row nowrap;
}
.about-wrapper > div {
	flex: 0 0 calc(33.3333% - 26.6666px);
}
.about-wrapper > div:not(:first-child) {
	margin-left: 40px;
}



.sec-03 {
	padding: 70px 0px;
}
.artists-wrapper {
	position: relative;
	display: flex;
	flex-flow: row wrap;
	gap: 40px;
}
.artists-wrapper > div {
	position: relative;
	display: block;
	flex: 0 0 calc(33.3333% - 26.6666px);
	width: 100%;
}
.artists-wrapper > .artist {}
.artists-wrapper > .artist > .main {
	position: inherit;
	display: inherit;
	width: inherit;
	aspect-ratio: 1/1;
}
.artists-wrapper > .artist > .main > div:nth-child(1){
	position: inherit;
	display: inherit;
	width: 100%;
	height: 100%;
}
.artists-wrapper > .artist > .main > div:nth-child(2){
	position: absolute;
    width: inherit;
    width: 100%;
    height: 40%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    bottom: 0px;
    left: 0px;
}
.artists-wrapper > .artist > .main > p{
	position: absolute;
	width: inherit;
	font-size: 49px;
	bottom: 30px;
	left: 30px;
	font-weight: 800;
	color: var(--col-lightgrey);
	text-transform: uppercase;
	width: calc(100% - 60px);
	line-height: 32pt;
}
.artists-wrapper > .artist > .main > p > span {
	text-transform: none;
}
.artists-wrapper > .artist > .locale {
	position: relative;
	display: block;
	margin-top: 20px;
}


.artists-wrapper > .artist.krasarosa > .main > div:nth-child(1){
	background-image: url('/assets/static/artists/dt_krasarosa.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.fonarev > .main > div:nth-child(1){
	background-image: url('/assets/static/artists/dt_fonarev.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.lilova > .main > div:nth-child(1){
	background-image: url('/assets/static/artists/dt_lilova.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.agma > .main > div:nth-child(1){
	background-image: url('/assets/static/artists/dt_agma.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.mindo > .main > div:nth-child(1){
	background-image: url('/assets/static/artists/dt_mindo.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.paranoir > .main > div:nth-child(1){
	background-image: url('/assets/static/artists/dt_paranoir.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.steering > .main > div:nth-child(1){
	background-image: url('/assets/static/artists/dt_steering.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.sunbios > .main > div:nth-child(1){
	background-image: url('/assets/static/artists/dt_sunbios.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.she > .main > div:nth-child(1){
	background-image: url('/assets/static/artists/dt_she.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.deekthat > .main > div:nth-child(1){
	background-image: url('/assets/static/artists/dt_deekthat.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.elizabel > .main > div:nth-child(1){
	background-image: url('/assets/static/artists/dt_elizabel.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.govor > .main > div:nth-child(1){
	background-image: url('/assets/static/artists/dt_govor.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.lex > .main > div:nth-child(1){
	background-image: url('/assets/static/artists/dt_lex.jpg');
	background-size: cover;
}



.artists-wrapper > .artist.lilova > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-lilova.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.acrobat > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-acrobat.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.ranta > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-ranta.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.promi > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-promi.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.priorova > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-priorova.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.olonso > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-olonso.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.nikitagrib > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-nikitagrib.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.musicmatters > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-musicmatters.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.miroshin > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-miroshin.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.mindo > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-mindo.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.martin > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-martin.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.kirin > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-kirin-get-naked.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.gavr > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-gavr.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.catmoonk > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-catmoonk.jpg');
	background-size: cover;
}
.artists-wrapper > .artist.audiense > .main > div:nth-child(1){
	background-image: url('/assets/static/artists-25/a-audiense.jpg');
	background-size: cover;
}

.artists-wrapper > .blank {}
.artists-wrapper > .blank.h2 {
    font-size: 49px;
    color: var(--col-grey);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    flex-flow: column nowrap;
}
.artists-wrapper > .blank > .block-numbers {
	margin-top: 0px;
}
.artists-wrapper > .blank.h2 > .block-numbers {
	margin-top: 280px;
}

.sec-lineup {
	display: block;
	margin: 50px 0px;
}
.lineup-wrapper {
	position: relative;
	display: flex;
	flex-flow: row wrap;
	gap: 40px;
}
.lineup-wrapper > div {}
.lineup-wrapper > .left {
	flex: 0 0 calc(33.3333% - 20px);
}
.lineup-wrapper > .right {
	flex: 0 0 calc(66.6667% - 20px);
}
.lineup-wrapper .heading > p {
	margin-top: 20px;
}

.lineup-wrapper .timing {
	padding:
}
.lineup-wrapper .timing > div {
	position: relative; 
	display: flex; 
	flex-flow: row nowrap;
	justify-content: space-between;
	padding: 20px;
	/* background-color: var(--col-lightgrey); */
}
.lineup-wrapper .timing > div:not(:first-child) {
	border-top: 1px solid var(--col-lightgrey);
}
.lineup-wrapper .timing > div > div {}
.lineup-wrapper .timing > div > div:nth-child(1) {
	font-weight: 600;
}
.lineup-wrapper .timing > div > div:nth-child(2) {}
.lineup-wrapper .timing > div > div:nth-child(3) {}
.lineup-wrapper .timing > div > div > span {}


/* .lineup-wrapper .timing2 {}
.lineup-wrapper .timing2 > div {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
} 
.lineup-wrapper .timing2 > div > div {
	display: flex;
    flex: 0 0 calc(33.3333% - 40px);
    flex-flow: row wrap;
	width: 100%;
	padding: 20px;
	aspect-ratio: 1;
} 
.lineup-wrapper .timing2 > div > div > div {
	display: flex;
	flex: 0 0 100%;
	justify-content: space-between;
} 
.lineup-wrapper .lg {
	background-color: var(--col-lightgrey);
} */


.sec-04 {
	padding: 70px 0px;
}
.tickets-wrapper {
	position: relative;
	display: flex;
	flex-flow: row wrap;
	gap: 40px;
}
.tickets-wrapper > div {
	position: relative;
	display: block;
	width: 100%;
}
.tickets-wrapper > .left {
	flex: 0 0 calc(33.3333% - 20px);	
}
.tickets-wrapper > .right {
	flex: 0 0 calc(66.6667% - 20px);
}

.tickets-wrapper > .left { 
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
}
.tickets-wrapper > .left > div > span {
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
	width: 365px;
}


.tickets-wrapper > .right > .item {
	position: relative;
	background-color: var(--col-lightgrey);
	font-size: 20px;
}
.tickets-wrapper > .right > .item:not(:first-child) {
	margin-top: 30px;
}
.tickets-wrapper > .right > .item > .wrapper {
	display: flex;
	flex-flow: row nowrap;
	padding: 30px 30px 50px;
}
.tickets-wrapper > .right > .item > .wrapper > .r1 {
	flex: 0 0 25%;
}
.tickets-wrapper > .right > .item > .wrapper > .r2, .tickets-wrapper > .right > .item > .wrapper > .r3 { 
	flex: 0 0 50%; 
}
.tickets-wrapper > .right > .item > .wrapper > .r2 {
	font-weight: 600;
}
.tickets-wrapper > .right > .item > .wrapper > .r2 > p {
	font-weight: 400;
}
.tickets-wrapper > .right > .item > .wrapper > .r2 > ul {
	margin: 30px 0px;
}
.tickets-wrapper > .right > .item > .wrapper > .r2 > ul > li:not(:first-child), .tickets-wrapper > .right > .item > .wrapper > .r3 > ul > li:not(:first-child) {
	margin-top: 15px;
}
.tickets-wrapper > .right > .item > .wrapper > .r2 span:before {
	content: '+';
	margin-right: 6px;
}
.tickets-wrapper > .right > .item > .wrapper > .r3 span:before {
	content: '-';
	margin-right: 6px;
}


.tickets-wrapper > .right > .item > .wrapper > .r4 {
	flex: 0 0 25%;
}
.tickets-wrapper > .right > .item > .wrapper > .r4 > ul {
	position: relative;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	height: 100%;
}
.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li {
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}
.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li > div:nth-child(1) {
	flex: 1 0 100px;
	font-weight: 600;
}
.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li > div:nth-child(2) {
    height: 1px;
    background-color: var(--col-grey);
    flex: 1 0 30%;
}
.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li > div:nth-child(3) {
	flex: 1 0 90px;
	text-align: right;
}

.booking-row {
	display: block;
	margin-top: 150px;
}
.booking-wrapper {}
.booking-wrapper > div {}
.booking-wrapper > .top {
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	gap: 40px;
	row-gap: 40px;
}
.booking-wrapper > .top > div {}
.booking-wrapper > .top > .l {
	flex: 0 0 calc(33.3333% - 20px);
	position: relative;
	display: flex;
	flex-flow: row wrap;
	align-items: space-between;
}
.booking-wrapper > .top > .l > * {
	flex: 0 0 100%;
}
.booking-wrapper > .top > .l > .btn {
	display:flex;
	flex-flow: column nowrap;
	justify-content: space-between;
}
.booking-wrapper > .top > .l > .btn > p {
	font-weight: 700;
}
.booking-wrapper > .top > .l > div > p:not(:first-child) {
	margin-top:20px;
}
.booking-wrapper > .top > .r {
	flex: 0 0 calc(66.6666% - 20px);
}
.booking-wrapper > .top > .r > .wrapper {}
.booking-wrapper > .top > .r > .wrapper > picture {
	position: relative;
	display: block;
	width: 100%;
}
.booking-wrapper > .top > .r > .wrapper > picture > img {
	position: relative;
	display: block;
	width: 100%;	
}
.booking-wrapper > .bottom {
	margin-top: 50px;
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	gap: 40px;
	row-gap: 40px;	
}
.booking-wrapper > .bottom > div {}
.booking-wrapper > .bottom > .l {
	flex: 0 0 calc(33.3333% - 20px);
	position: relative;
	display: flex;
	flex-flow: row wrap;
    align-items: end;
    justify-content: right;	
}
.booking-wrapper > .bottom > .l > div > p {
	font-weight: 700;
	text-align: right;
}
.booking-wrapper > .bottom > .l > div > p:last-child {
	margin-top: 40px;
	padding-top: 40px;	
	padding-bottom: 30px;	
}
.booking-wrapper > .bottom > .r {
	flex: 0 0 calc(66.6666% - 20px);
	width: 100%;
}
.booking-wrapper > .bottom > .r > .tables {
	width:100%;
	display: flex;
	flex-flow: row nowrap;
}
.booking-wrapper > .bottom > .r > .tables > .item {
	flex: 0 0 25%;
}
.booking-wrapper > .bottom > .r > .tables > .item:not(:first-child) {
	border-left: 1px solid var(--col-grey);
}
.booking-wrapper > .bottom > .r > .tables > .item > img {
    max-width: 170px;
    margin: auto;
    position: relative;
    display: block;
}
.booking-wrapper > .bottom > .r > .tables > .item > div:nth-child(2) {
	margin-top: 40px;
    padding-left: 15%;
}
.booking-wrapper > .bottom > .r > .tables > .item > div:nth-child(3) {
	margin-top: 40px;
	padding-top: 40px;
	padding-bottom: 30px;
	padding-left: 15%;
	border-top: 1px solid var(--col-grey);
}
.booking-wrapper > .bottom > .r > .tabledesc-wrapper {
	display: none;
}

.sec-partners {
	padding: 0px 0px 100px;
}

.partners-wrapper {}
.partners-wrapper > .row {
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	gap: 40px;
	row-gap: 40px;
}
.partners-wrapper > div:not(:first-child) {
	margin-top: 100px;
}
.partners-wrapper > .row > .l {
	flex: 0 0 calc(33.3333% - 20px);
}
.partners-wrapper > .row > .r {
	flex: 0 0 calc(66.6666% - 20px);
	width: 100%;
}
.partners-wrapper > .row > .r > div {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;
	row-gap: 30px;
}
.partners-wrapper > .row > .r > div:not(:first-child) {
	margin-top: 40px;
}
.partners-wrapper > .row > .r > div > div > img {
	position: relative;
	display: block;
	width: 80%;
	margin: 0px auto 0px 0px;
}
.partners-wrapper > .row > .r > .p1 > div {
	flex: 0 0 50%;
}
.partners-wrapper > .row > .r > .p2 > div {
	flex: 0 0 calc(50% - 20px / 2);	
}
.partners-wrapper > .row > .r > .p3 > div {
	flex: 0 0 calc(33.3333% - 20px * 2 / 3);		
}
.partners-wrapper > .row > .r > .p4 > div {
	flex: 0 0 calc(25% - 20px * 3 / 4);	
}
.partners-wrapper > .row > .r > .p5 > div {
	flex: 0 0 calc(20% - 20px * 4 / 5);
}
.partners-wrapper > .row > .r > div > div:not(:first-child) {
	margin-left: 20px;
}



.sec-05 {}
.sec-05 > .pattern-c {
	width: 100%;
	height: 450px;
	background: url('/assets/static/ornament.svg') repeat-x center;
}


.sec-06 {
	padding: 100px 0px;
}
.log-wrapper {
	position: relative;
	display: flex;
	flex-flow: row wrap;
	gap: 40px;	
}
.log-wrapper > .left {
	flex: 0 0 calc(33.3333% - 20px);	
}
.log-wrapper > .right {
	flex: 0 0 calc(66.6667% - 24px);
}
.log-wrapper > .left > .wrapper {
	position: relative;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	font-size: 22px;
	height: 100%;
}
.log-wrapper .transport {}
.log-wrapper .transport > .item {
	position: relative;
	display: block;
	width: 80%;
}
.log-wrapper .transport > .item:not(:first-child) {
	margin-top: 60px;
}
.log-wrapper .transport > .item > .heading {
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}
.log-wrapper .transport > .item > .heading > div {}
.log-wrapper .transport > .item > .heading > div:nth-child(1) {
	font-weight: 600;
}
.log-wrapper .transport > .item > .heading > div:nth-child(2) {
	flex: 0 0 30%;
	width: 100%;
	display: flex;
	align-items: center;
	margin: 0px 10px;

}
.log-wrapper .transport > .item > .heading > div:nth-child(2) > div:nth-child(1) {
	width: 100%;
	flex: 1 0 50%;
	height: 1px;
	background-color: var(--col-grey);
}
.log-wrapper .transport > .item > .heading > div:nth-child(2) > div:nth-child(2) {
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
	border-top: 1px solid var(--col-grey);
	border-right: 1px solid var(--col-grey);
	margin-left: -11px;
}
.log-wrapper .transport > .item > .heading > div:nth-child(3) {}
.log-wrapper .transport > .item > .types {
	margin-top: 30px;
}
.log-wrapper .transport > .item > .types > div {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}
.log-wrapper .transport > .item > .types > div > .icon {
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-size: contain;
}
.log-wrapper .transport > .item > .types > div > .icon.bus {
	background-image: url('/assets/static/icons/bus.svg');
}
.log-wrapper .transport > .item > .types > div > .icon.car {
	background-image: url('/assets/static/icons/car.svg');
}
.log-wrapper .transport > .item > .types > div > .icon.train {
	background-image: url('/assets/static/icons/train.svg');
}
.log-wrapper .transport > .item > .types > div > .time {
	margin-left: 30px;
}
.log-wrapper .transport > .item > .range {
	position: absolute;
	bottom: 0px;
	right: 0px;
	font-size: 46px;
	font-weight: 600;
	color: var(--col-lightgrey);
}

.log-wrapper > .right > .wrapper {
	width: 100%;
	height: 880px;
	background-color: #eeeeee;
}


.sec-07, .sec-08 {
	padding: 100px 0px 150px;
}
.spots-wrapper {
    display: flex;
    flex-flow: row wrap;
    gap: 40px;
}
.spots-wrapper > div {
    flex: 0 0 calc(33.3333% - 26.6666px);
    width: 100%;	
}
.spots-wrapper > div > .main {
	width: 100%;
}
.spots-wrapper > div > .main > div {
	width: 100%;
	aspect-ratio: 1/1;
	background-size: cover;
}
.spots-wrapper > div > .locale {
	margin-top: 30px;
	line-height: 27px;
}
.spots-wrapper > div > .locale > div:nth-child(1){}
.spots-wrapper > div > .locale > div:nth-child(2){}
.spots-wrapper > div > .locale > div > span {
	font-weight: 600;
}

.spots-wrapper > div > .main.about {}
.spots-wrapper > div > .main.about > div {
	display: flex;
	align-items: end;
	background-color: transparent;
}
.spots-wrapper > div > .main.about > div > div {}
.spots-wrapper > div > .main.about > div > div > p {
	text-indent: 80px;
	text-align: justify;
}
.spots-wrapper > div > .main.about > div > div > p:not(:first-child) {
	margin-top: 20px;
}

.sec-07 .spots-wrapper > div:nth-of-type(even) > .main, .sec-08 .spots-wrapper > div:nth-of-type(even) > .main {
	width: 100%;
	aspect-ratio: 1/1;
	position: relative;
}
.sec-07 .spots-wrapper > div:nth-of-type(even) > .main > div, .sec-08 .spots-wrapper > div:nth-of-type(even) > .main > div{
	width: 50%;
	aspect-ratio: 1/1;
	position: absolute;
	margin-top: 50%;
}
.sec-07 .spots-wrapper > div:nth-of-type(even) > .main > div > div, .sec-08 .spots-wrapper > div:nth-of-type(even) > .main > div > div {
	width: 100%;
	aspect-ratio: 1/1;
	position: absolute;
}

.sec-08 .spots-wrapper {}
.sec-08 .spots-wrapper > div:last-child > .main > div {
	width: 100%; 
	margin-top: 0px;
}
.footer-wrapper > .right > .row > .smedia > .short {
	display: none;
}

.spots-wrapper > div > .main.dvor {}
.spots-wrapper > div > .main.dvor > div {
	display: flex;
	align-items: end;
	background-color: transparent;
	flex-flow: row wrap;
}
.spots-wrapper > div > .main.dvor > div > div {
	height: 50%;
	flex: 0 0 100%;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: end;
}
.spots-wrapper > div > .main.dvor > div > div > div{
	font-family: 'Tupo Vyaz';
	font-size: 60px;
	line-height: 33px;
	flex: 0 0 50%;
}
.spots-wrapper > div > .main.dvor > div > div > div.dvor{}



.spots-wrapper > div > .main.dvorbtn {}
.spots-wrapper > div > .main.dvorbtn > div {
	background-color: unset;
	display: flex;
	align-items: end;
}
.spots-wrapper > div > .main.dvorbtn > div > a {}


.spots-wrapper > .stay.loftapart > .main > div {
	background: url('/assets/static/stays/dt_loftapart.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .stay.azimut > .main > div {
	background: url('/assets/static/stays/dt_azimut.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .stay.selivanov > .main > div {
	background: url('/assets/static/stays/dt_selivanov.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .stay.bravis > .main > div {
	background: url('/assets/static/stays/dt_bravis.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .stay.podvorye > .main > div {
	background: url('/assets/static/stays/dt_podvorye.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .stay.rozhdestvenskiy > .main > div {
	background: url('/assets/static/stays/dt_rozhdestvenskiy.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .stay.frunze > .main > div {
	background: url('/assets/static/stays/dt_frunze.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .stay.pleshanov > .main > div {
	background: url('/assets/static/stays/dt_pleshanov.jpg') no-repeat center;
	background-size: cover;
}

.spots-wrapper > .spot.gimnazia > .main > div {
	background: url('/assets/static/spots/dt_gimnazia.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .spot.uspenskiy > .main > div {
	background: url('/assets/static/spots/dt_uspenskiy.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .spot.ozero > .main > div {
	background: url('/assets/static/spots/dt_ozero.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .spot.kremlin > .main > div {
	background: url('/assets/static/spots/dt_kremlin.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .spot.voznesenskiy > .main > div {
	background: url('/assets/static/spots/dt_voznesenskiy.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .spot.dvor > .main > div {
	background: url('/assets/static/spots/dt_dvor.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .spot.ryady > .main > div {
	background: url('/assets/static/spots/dt_ryady.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .spot.monastyr > .main > div {
	background: url('/assets/static/spots/dt_monastyr.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .spot.lozhkin > .main > div {
	background: url('/assets/static/spots/dt_lozhkin.jpg') no-repeat center;
	background-size: cover;
}
.spots-wrapper > .spot.finift > .main > div {
	background: url('/assets/static/spots/dt_finift.jpg') no-repeat center;
	background-size: cover;
}

.sec-09, .sec-10, .sec-11 {
	display: none;
}


footer {
	padding: 250px 0px 100px;
	background-color: var(--col-grey);
	color: #fff;
}
footer a {
	color: #fff;
}
.footer-wrapper {
	display: flex;
    flex-flow: row wrap;
    gap: 40px;
}
.footer-wrapper > .left {
	flex: 0 0 calc(33.3333% - 20px);
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;	
}
.footer-wrapper > .right {
	flex: 0 0 calc(66.6667% - 20px);
}
.footer-wrapper > .left > .branding {
	position: relative;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
}
.footer-wrapper > .left > .branding > .logo {}
.footer-wrapper > .left > .branding > .logo > h2 {
	font-family: 'Tupo Vyaz';
	font-size: 215px;
	line-height: 215px;
	font-weight: 400;
}
.footer-wrapper > .left > .branding > .logo > span{}
.footer-wrapper > .left > .branding > .sub{
	font-size: 16.5px;
	line-height: 20px;
}

.footer-wrapper > .right {}
.footer-wrapper > .right > .row {
	display: flex;
	flex-flow: row nowrap;
}
.footer-wrapper > .right > .row:nth-child(2) {
	margin-top: 232px;
}

.footer-wrapper > .right > .row > .date {
	font-family: 'Tupo Vyaz';
	font-size: 84px;
	line-height: 84px;
	flex: 0 0 20%
}
.footer-wrapper > .right > .row > .timing {
	line-height: 27px;
	flex: 0 0 25%;
}
.footer-wrapper > .right > .row > .address {
	flex: 0 0 30%;
	font-weight: 600;
}
.footer-wrapper > .right > .row > .tomap {
	flex: 0 0 25%;
	display: flex;
	justify-content: right;
	align-items: start;
}
.footer-wrapper > .right > .row > .tomap a {
	color: #fff;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}

.footer-wrapper > .right > .row > .smedia {
	flex: 0 0 45%;
}
.footer-wrapper > .right > .row > .smedia > div {}
.footer-wrapper > .right > .row > .smedia > ul {
	margin-top: 60px;
}
.footer-wrapper > .right > .row > .smedia > .full {}
.footer-wrapper > .right > .row > .smedia > .full > li {}
.footer-wrapper > .right > .row > .smedia > .full > li:not(:first-child) {
	margin-top: 7px;
}
.footer-wrapper > .right > .row > .smedia > .full > li > a {
	display: flex;
	flex-flow: row nowrap;
}
.footer-wrapper > .right > .row > .smedia > .short {}
.footer-wrapper > .right > .row > .smedia > .short > li {}
.footer-wrapper > .right > .row > .smedia > .short > li > a {}
.footer-wrapper > .right > .row > .smedia > .short > li > a > span {}
.footer-wrapper > .right > .row > .smedia > .short > li.vk > a > span {}
.footer-wrapper > .right > .row > .smedia > .short > li.tg > a > span {}

.footer-wrapper > .right > .row > .mindo {
	flex: 0 0 55%;
	display: flex;
    flex-flow: column nowrap;
    justify-content: end;	
}
.footer-wrapper > .right > .row > .mindo a {
	font-size: 27px;
	font-weight: 800;
}
.footer-wrapper > .right > .row > .mindo > .caption {
	margin-top: 31px;
}




/* Breakpoints */

@media only screen and (min-width: 300px) and (max-width: 470px) {}
@media only screen and (min-width: 471px) and (max-width: 767px) {}
@media only screen and (min-width: 768px) and (max-width: 1023px) {}
@media only screen and (min-width: 1024px) and (max-width: 1365px) {}
@media only screen and (min-width: 1366px) and (max-width: 1919px) {}
@media only screen and (min-width: 1920px) {}


@media only screen and (min-width: 300px) and (max-width: 470px) {

	.container {
		margin: 0px 10px;
	}

	h2 {
		font-size: 28px;
		line-height: 30px;
		letter-spacing: 5%;
	}
	.heading-h2 {
		margin-bottom: 80px;
	}
	h3 {
		font-size: 22px;
	}

	.vis-sm {
		display: block;
	}
	.hidden-sm {
		display: none!important;
	}
	main {
		font-size: 14px;
		line-height: 16px;
	}


	.topup {
		top: 0px;
	}
	.topup > .menu {
		width: calc(100% - 80px);
		height: calc(100% - 80px);
		left: -100%;
	}
	.topup > .menu > .wrapper > nav {
	    font-size: 28px;
	    line-height: 46px;
	}


	.sec-01 {
		height: calc(640px + 10vh);
	}	

	.sec-01 .top-pic {
		width: 100vw;
        height: calc(640px + 10vh);
        top: -35px;
        background-position-y: calc(0px - 48vh);
        left: -10px;
	}
	.sec-01 .top-icons {
		width: 100%;
	}
	.sec-01 .top-icons > .nero-icon {
		flex: 0 0 30px;
	}
	.nero-icon > a > span {
		background-image: url('/assets/static/icons/nero-white.svg');
	}
	.sec-01 .top-icons > div {
		width: 30px;
		height: 30px;
		flex: 0 0 30px;
	}
	.sec-01 .top-icons > .topnav-button > div > span:not(:first-child) {
    	margin-top: 6px;
    }

	.sec-01 .date {
		font-size: 34px;
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
		color: #fff;
		width: 200px;
		margin: 16vh auto 0px;
	}	
    .sec-01 .nero-word {
    	font-size: 180px;
    	line-height: 166px;
    	text-align: center;
    	color: #fff;
    	left: unset;
    }
    .sec-01 .nero-word > .nsub {
    }    
    .sec-01 .nero-word-subh {
    	color: #fff;
    	text-align: center;
    	width: 100%;
    }
    .sec-01 .nero-word-subh > p {
    	margin: auto;
    }
    .sec-01 .button-wrapper > .nero-button {
    	background-color: var(--col-gold);
    	margin: auto;
    }

    /* about */

    .sec-02 .spots-wrapper {}
    .sec-02 .spots-wrapper > div:nth-child(1) > div:nth-child(3) {
    	display: none;
    }
    .sec-02 .spots-wrapper > div:nth-child(2) {
    	display: none;
    }
    .sec-02 .spots-wrapper > div:nth-child(3) {
    	display: none;
    }
	.sec-02 .spots-wrapper > div:nth-child(4) {
		order: 8;
	}
	.spots-wrapper > div > .main.dvorbtn > div {
		align-items: start;
		aspect-ratio: 3/1;
	}
	.sec-02 .spots-wrapper > div:nth-child(5) {}	
	.sec-02 .spots-wrapper > div:nth-child(6) {
		display: none;
	}

    .sec-02 .spots-wrapper > div.aboutswipersec {
    	flex: 0 0 100%;
    }
    .sec-02 .spots-wrapper > div.aboutswipersec > .main > div {
		aspect-ratio: 3/2;
    }
    .sec-02 .spots-wrapper > div.aboutswipersec .swiper-slide{
		text-align: center;
		font-size: 18px;
		background: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 75%;
    	background-size: cover;
    }
    .sec-02 .spots-wrapper > div.aboutswipersec .swiper-slide:nth-child(1) {
    	background: url('/assets/static/about-01.jpg') center;
    	background-size: cover;
    }
    .sec-02 .spots-wrapper > div.aboutswipersec .swiper-slide:nth-child(2) {
		background: url('/assets/static/about-02.jpg') center;
		background-size: cover;
    }
    .sec-02 .spots-wrapper > div.aboutswipersec .swiper-slide:nth-child(3) {
    	background: url('/assets/static/about-01.jpg') center;
    	background-size: cover;
    }
    .sec-02 .spots-wrapper > div.aboutswipersec .swiper-slide:nth-child(4) {
		background: url('/assets/static/about-02.jpg') center;
		background-size: cover;
    } 		

	/* artists */

	.artists-wrapper {}
	.artists-wrapper > div {
		flex:  0 0 100%;
		width: unset;
	}
	.artists-wrapper > .blank.h2 > div.block-numbers {
		margin-top: 40px;
		text-align: left;
	}
	.artists-wrapper > .blank.h2 > div:last-child {
		text-align: right;
	}
	.artists-wrapper > .artist > .main > p {
		font-size: 30px;
	}

	.lineup-wrapper > .left {
		flex: 0 0 100%;
	}
	.lineup-wrapper > .right {
		flex: 0 0 100%;
	}

	
	.tickets-wrapper > .left {
		flex: 0 0 100%;
	}
	.tickets-wrapper > .right {
		flex: 0 0 100%;
	}

	.tickets-wrapper > .left > .block-numbers {
		margin-top: 50px;
	}
	.tickets-wrapper > .left > div:nth-child(3) {
		margin-top: 30px;
	}
	.tickets-wrapper > .left > div:nth-child(3) > span {
		font-size: 18px;
		line-height: 22px;
	}
	.tickets-wrapper > .right > .item {
		font-size: unset;
	}
	.tickets-wrapper > .right > .item > .wrapper {
		flex-flow: row wrap;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r1 {
		flex: 0 0 100%;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r2 {
		flex: 0 0 100%;
		margin-top: 60px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r3 {
		flex: 0 0 100%;
		margin-top: 30px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r4 {
		flex: 0 0 100%;
		margin-top: 30px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li {
		margin-top: 10px;
	}

	.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li > div {
		flex: 1 1 clamp(10%, 100px, 30%);
	}
	.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li > div:nth-child(2) {
		flex: 1 1 30%;
	}	 
	.tickets-wrapper > .right > .button-wrapper > a {
		margin: auto;
	}

	.booking-wrapper {}
	.booking-wrapper > .top {
		flex-flow: row wrap;
	}
	.booking-wrapper > .top > .l {
		flex: 0 0 100%;
	}
	.booking-wrapper > .top > .r {
		flex: 0 0 100%;		
	}
	.booking-wrapper > .top > .l > div:not(:first-child) {
		margin-top: 40px;
	}
	.booking-wrapper > .top > .l > .btn > a {
		margin: 40px auto 0px;
	}

	.booking-wrapper > .bottom {
		flex-flow: row wrap
	}
	.booking-wrapper > .bottom > .l {
		display: none;
		flex: 0 0 0;
	}
	.booking-wrapper > .bottom > .r {
		flex: 0 0 100%;
	}
	
	.booking-wrapper > .bottom > .r > .tables > .item > img {
		max-width: 82%;
	}
	.booking-wrapper > .bottom > .r > .tables > .item > div {
		display: none;
	}

	.booking-wrapper .tabledesc-wrapper {
		display: block;
		margin-top: 30px;
	}
	.booking-wrapper .tabledesc-wrapper > .heading-wrapper {
		width: 100%;
		text-align: center;
	}
	.booking-wrapper .tabledesc-wrapper > .heading-wrapper > h3 {
		font-size: 18px;
		margin-top: 20px;
	}
	.booking-wrapper .tabledesc-wrapper > .prices {
		display: flex;
		flex-flow: row nowrap;
		justify-content: flex-start;
		margin-top: 15px;
	}
	.booking-wrapper .tabledesc-wrapper > .prices > div {
		flex: 0 0 25%;
		text-align: center;
	}
	.booking-wrapper .tabledesc-wrapper > .prices > div:not(:first-child) {
		border-left: 1px solid var(--col-grey);
	}


	.spots-wrapper > div {
		flex:  0 0 100%;
	}
	.spots-wrapper > div > .main.dvor > div > div {
		align-items: start;
	}

	#about .spots-wrapper > div:nth-child(1) .dvor > img{
		width: 150px;
		height: 44px;
		display: block;
		margin: 40px 0px 0px auto;
	}


	.sec-05 > .pattern-c {
        background-size: 190%;
        height: 250px;
	}

	.log-wrapper .transport {
		font-size: 18px;
    	line-height: 18px;
	}
	.log-wrapper > .left {
		flex:  0 0 100%;
	}
	.log-wrapper > .right {
		flex: 0 0 100%;
	}
	.log-wrapper .transport > .item {
		width: 100%;
		font-size: 14px;
		line-height: 14px;
	}
	.log-wrapper .transport > .item > .heading > div:nth-child(2) {
		flex: 0 0 20%;
	}
	.log-wrapper .transport > .item > .types > div > .icon {
		width: 30px;
		height: 30px;
	}
	.log-wrapper > .right {
		order: -1;
	}
	.log-wrapper > .right > .wrapper {
		height: 320px;
		width: 100%;
		/* margin-left: -10px; */
	}
	.sec-07, .sec-08 {
		display: none;
	}
	.sec-09, .sec-10, .sec-11 {
		display: block;
		padding: 60px 0px;
	}
	.sec-11 .button-wrapper {
		margin-top: 60px;
	}

	.nero-carousel-wrapper {
		margin-top: 40px;
		color: var(--col-grey);
	}
	.nero-carousel-wrapper .swiper-slide {
        width: 85%;
        aspect-ratio: 1 / 1.2;		
	}
	.nero-carousel-wrapper .swiper-slide > .wrapper {
		width: 100%;
		height: inherit;
		display: flex;
		flex-flow: column nowrap;
		justify-content: start;
	}
	.nero-carousel-wrapper .swiper-slide > .wrapper > div {
		width: 100%;
		height: inherit;		
	}
	/* swiper item background */
	.nero-carousel-wrapper .swiper-slide > .wrapper > div:nth-child(1) {
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		background-color: #efefef;
		height: 90%;
	}
	/* swiper item captions */
	.nero-carousel-wrapper .swiper-slide > .wrapper > div:nth-child(2) {
		font-size: 16px;
		height: auto;
		margin-top: 16px;
	}
	.nero-carousel-wrapper .swiper-slide > .wrapper > div:nth-child(2) > div {}
	.nero-carousel-wrapper .swiper-slide > .wrapper > div:nth-child(2) > div > span {
		font-weight: 800;
	}
	.nero-carousel-wrapper .swiper-slide > .wrapper > div:nth-child(2) > div:nth-child(2) {
		margin-top: 6px;
	}

	/* stays */
	.nero-carousel-wrapper .swiper-slide.loft > .wrapper > div:nth-child(1) {
		background: url('/assets/static/stays/dt_loftapart.jpg');
		background-size: cover;
        background-position: top center;
	}
	.nero-carousel-wrapper .swiper-slide.azimut > .wrapper > div:nth-child(1) {
		background: url('/assets/static/stays/dt_azimut.jpg');
		background-size: cover;
        background-position: top center;
	}
	.nero-carousel-wrapper .swiper-slide.selivanov > .wrapper > div:nth-child(1) {
		background: url('/assets/static/stays/dt_selivanov.jpg');
		background-size: cover;
        background-position: top center;
	}
	.nero-carousel-wrapper .swiper-slide.bravis > .wrapper > div:nth-child(1) {
		background: url('/assets/static/stays/dt_bravis.jpg');
		background-size: cover;
        background-position: top center;
	}
	.nero-carousel-wrapper .swiper-slide.podvorye > .wrapper > div:nth-child(1) {
		background: url('/assets/static/stays/dt_podvorye.jpg');
		background-size: cover;
        background-position: top center;
	}
	.nero-carousel-wrapper .swiper-slide.rozhdestvenskiy > .wrapper > div:nth-child(1) {
		background: url('/assets/static/stays/dt_rozhdestvenskiy.jpg');
		background-size: cover;
        background-position: top center;
	}
	.nero-carousel-wrapper .swiper-slide.frunze > .wrapper > div:nth-child(1) {
		background: url('/assets/static/stays/dt_frunze.jpg');
		background-size: cover;
        background-position: top center;
	}	
	.nero-carousel-wrapper .swiper-slide.pleshanov > .wrapper > div:nth-child(1) {
		background: url('/assets/static/stays/dt_pleshanov.jpg');
		background-size: cover;
        background-position: top center;
	}
	/* spots */
	.nero-carousel-wrapper .swiper-slide.nero > .wrapper > div:nth-child(1) {
		background: url('/assets/static/spots/dt_ozero.jpg');
		background-size: cover;
        background-position: top center;
	}
	.nero-carousel-wrapper .swiper-slide.uspenskiy > .wrapper > div:nth-child(1) {
		background: url('/assets/static/spots/dt_uspenskiy.jpg');
		background-size: cover;
        background-position: top center;
	}
	.nero-carousel-wrapper .swiper-slide.gimnazia > .wrapper > div:nth-child(1) {
		background: url('/assets/static/spots/dt_gimnazia.jpg');
		background-size: cover;
        background-position: top center;
	}
	.nero-carousel-wrapper .swiper-slide.kremlin > .wrapper > div:nth-child(1) {
		background: url('/assets/static/spots/dt_kremlin.jpg');
		background-size: cover;
        background-position: top center;
	}
	.nero-carousel-wrapper .swiper-slide.ryady > .wrapper > div:nth-child(1) {
		background: url('/assets/static/spots/dt_ryady.jpg');
		background-size: cover;
        background-position: top center;
	}
	.nero-carousel-wrapper .swiper-slide.voznesenskiy > .wrapper > div:nth-child(1) {
		background: url('/assets/static/spots/dt_voznesenskiy.jpg');
		background-size: cover;
        background-position: top center;
	}
	.nero-carousel-wrapper .swiper-slide.monastyr > .wrapper > div:nth-child(1) {
		background: url('/assets/static/spots/dt_monastyr.jpg');
		background-size: cover;
        background-position: top center;
	}	


	/* meals  */
	.nero-carousel-wrapper .swiper-slide.dvor > .wrapper > div:nth-child(1) {
		background: url('/assets/static/spots/dt_dvor.jpg');
		background-size: cover;
        background-position: top center;
	}
	.nero-carousel-wrapper .swiper-slide.lozhkin > .wrapper > div:nth-child(1) {
		background: url('/assets/static/spots/dt_lozhkin.jpg');
		background-size: cover;
        background-position: top center;
	}
	.nero-carousel-wrapper .swiper-slide.finift > .wrapper > div:nth-child(1) {
		background: url('/assets/static/spots/dt_finift.jpg');
		background-size: cover;
        background-position: top center;
	}



	.sec-partners {
		padding: 150px 0px;
	}
	.partners-wrapper {}
	.partners-wrapper > .row {
		position: relative;
		display: flex;
		flex-flow: row wrap;
		gap: 40px;
		row-gap: 40px;
	}
	.partners-wrapper > div:not(:first-child) {
		margin-top: 80px;
	}
	.partners-wrapper > .row > .l {
		flex: 0 0 100%;
	}
	.partners-wrapper > .row > .r {
		flex: 0 0 100%;
		width: 100%;
	}
	.partners-wrapper > .row > .r > div {
		display: flex;
		flex-flow: row wrap;
		justify-content: flex-start;
		align-items: center;
		row-gap: 20px
	}
	.partners-wrapper > .row > .r > div:not(:first-child) {
		margin-top: 40px;
	}
	.partners-wrapper > .row > .r > div > div > img {
		position: relative;
		display: block;
		width: 90%;
		margin: 0px auto 0px 0px;
	}
	.partners-wrapper > .row > .r > .p1 > div {
		flex: 0 0 65%;
	}
	.partners-wrapper > .row > .r > .p2 > div {
		flex: 0 0 calc(50% - 20px / 2);	
	}
	.partners-wrapper > .row > .r > .p3 > div {
		flex: 0 0 calc(33.3333% - 20px * 2 / 3);		
	}
	.partners-wrapper > .row > .r > .p4 > div {
		flex: 0 0 calc(25% - 20px * 3 / 4);	
	}
	.partners-wrapper > .row > .r > .p5 > div {
		flex: 0 0 calc(20% - 20px * 4 / 5);
	}
	.partners-wrapper > .row > .r > div > div:not(:first-child) {
		margin-left: 20px;
	}
	
	

	footer {
		padding: 60px 0px 40px;
	}
	.footer-wrapper > .left > .branding > .logo > h2 {
		font-size: 120px;
	}
	.footer-wrapper > .left > .icon {
		width: 40px;
		height: 40px;
		margin-left: 11px;
	}
	.footer-wrapper > .left > .icon > svg {
		width: 100%;
		height: 100%;
	}
	.footer-wrapper > .right {
		flex:  0 0 100%;
	}
	.footer-wrapper > .right > .row {
		flex-flow:  row wrap;
	}
	.footer-wrapper > .right > .row > .date {
		flex: 0 0 100%;
	}
	.footer-wrapper > .right > .row > .timing {
		flex: 0 0 100%;
		font-size: calc(16px + 1vw);
		line-height: calc(18px + 2vw);
	}
	.footer-wrapper > .right > .row > .address {
		margin-top: 40px;
		flex: 0 0 100%;
	}
	.footer-wrapper > .right > .row > .tomap {
		margin-top: 40px;
		justify-content: unset;
	}
	.footer-wrapper > .right > .row > .smedia {
		flex: 0 0 30%;
	}
	.footer-wrapper > .right > .row > .mindo {
		flex: 0 0 70%;
	}
	.footer-wrapper > .right > .row > .mindo a {
		font-size: 20px;
	}
	.footer-wrapper > .right > .row > .mindo > .caption {
		font-size: 20px;
	}
	.footer-wrapper > .right > .row > .smedia > *:nth-child(1) {
		display: none;
	}
	.footer-wrapper > .right > .row > .smedia > .full {
		display: none;
	}
	.footer-wrapper > .right > .row > .smedia > .short {
		display: block;
	}
	.footer-wrapper > .right > .row > .smedia > .short > li {}
	.footer-wrapper > .right > .row > .smedia > .short > li:not(:first-child) {
		margin-top: 20px;
	}
	.footer-wrapper > .right > .row > .smedia > .short > li > a {}
	.footer-wrapper > .right > .row > .smedia > .short > li > a > span{
		position: relative;
		display: block;
		width: 30px;
		height: 30px;
	}
	.footer-wrapper > .right > .row > .smedia > .short > li.tg > a > span {
		background-image: url('/assets/static/icons/tg-white.svg');
		background-size: cover;
	}
	.footer-wrapper > .right > .row > .smedia > .short > li.vk > a > span {
		background-image: url('/assets/static/icons/vk-white.svg');
		background-size: cover;
	}

}
@media only screen and (min-width: 471px) and (max-width: 767px) {
	.vis-sm {
		display: block;
	}
	.hidden-sm {
		display: none;
	}

	h2 {
		font-size: 38px;
		line-height: 38px;
	}

	.topup {
		top: 0px;
	}
	.topup > .menu {
		height: calc(100% - 80px);
		left: -100%;
	}
	.topup > .menu > .wrapper > nav {
        font-size: calc(26px + 1.2vw);
        line-height: calc(34px + 1.2vw);
	}
	.topup > .menu > .wrapper > nav > ul > li > a > div {
		margin-right: 10px;
	}


	.sec-01 {
		height: 100vh;
	}
	.sec-01 .sec-wrapper {
		margin-top: 0px;
	}
	.sec-01 .top-pic {
		width: 100vw;
        height: 100vh;
        top: 0px;
        background-position-y: calc(0px - 38vh);
        left: -45px;
	}
	.sec-01 .top-icons {
		width: 100%;
		top: 34px;
	}
	.sec-01 .top-icons > .nero-socials {
		display: none;
	}
	.sec-01 .top-icons > .nero-icon {
		flex: 0 0 30px;
	}
	.nero-icon > a > span {
		background-image: url('/assets/static/icons/nero-white.svg');
	}
	.sec-01 .top-icons > div {
		width: 30px;
		height: 30px;
		flex: 0 0 30px;
	}
	.sec-01 .top-icons > .topnav-button > div > span:not(:first-child) {
    	margin-top: 6px;
    }

	.sec-01 .date {
		font-size: 34px;
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
		color: #fff;
		width: 200px;
		margin: 34vh auto 0px;
	}	
    .sec-01 .nero-word {
    	font-size: 180px;
    	line-height: 166px;
    	text-align: center;
    	color: #fff;
    	left: unset;
    }
    .sec-01 .nero-word-subh {
    	color: #fff;
    	text-align: center;
    	width: 100%;
    }
    .sec-01 .nero-word-subh > p {
    	margin: auto;
    }
    .sec-01 .button-wrapper > .nero-button {
    	background-color: var(--col-gold);
    	margin: auto;
    }
    .sec-01 .hash-navigation {
    	display: none;
    }


    .sec-02 {

    }
    .sec-02 .spots-wrapper {}
    .sec-02 .spots-wrapper > div {
    	flex: 0 0 100%;
    }
    .sec-02 .spots-wrapper > div:nth-child(1) {}
    .sec-02 .spots-wrapper > div:nth-child(1) > div:not(:first-child) {
    	display: none;
    }
    .sec-02 .spots-wrapper > div:nth-child(2) {
    	padding-top: 40px;
    }
    .sec-02 .spots-wrapper > div:nth-child(2) > div > div {
    	align-items: center;
    	aspect-ratio: unset;
    }
    .sec-02 .spots-wrapper > div:nth-child(2) > div > div img {
    	display: block;
    	width: auto;
    	margin-left: auto;
    }
    .sec-02 .spots-wrapper > div:nth-child(2) > div > div > div:nth-child(1) {
    	align-items: center;
    	justify-content: end;
    }
    .sec-02 .spots-wrapper > div:nth-child(2) > div > div > div:not(:first-child) {
    	display: none;
    }

	.sec-02 .spots-wrapper > div:nth-child(3) {
		display: none;
	}
	.sec-02 .spots-wrapper > div:nth-child(4) {
		display: none;
	}
	.sec-02 .spots-wrapper > div:nth-child(5) {
		padding-top: 40px;
	}
	.sec-02 .spots-wrapper > div:nth-child(5) > div > div {
		aspect-ratio: unset;
	}
	.sec-02 .spots-wrapper > div:nth-child(6) {
		display: none;
	}

	.sec-02 .spots-wrapper > div.aboutswipersec .swiper-slide:nth-child(1) {
		background: url('/assets/static/about-01.jpg') center;
	}
	.sec-02 .spots-wrapper > div.aboutswipersec .swiper-slide:nth-child(2) {
		background: url('/assets/static/about-02.jpg') center;
	}
	.sec-02 .spots-wrapper > div.aboutswipersec .swiper-slide {
		width: 85%;
	}

	.artists-wrapper > div {
		flex: 0 0 100%;
		width: unset;
	}	
	.artists-wrapper > .blank.h2 > *:nth-child(2) {
		margin-top: 50px;
	}
	.artists-wrapper > .blank.h2 > *:nth-child(3) {
		margin-top: 50px;
		text-align: right;
	}
	.artists-wrapper > div:nth-child(4) {
		display: none;
	}



	.tickets-wrapper > .left {
		flex: 0 0 100%;
	}
	.tickets-wrapper > .right {
		flex: 0 0 100%;
	}

	.tickets-wrapper > .left > .block-numbers {
		margin-top: 50px;
	}
	.tickets-wrapper > .left > div:nth-child(3) {
		margin-top: 30px;
	}
	.tickets-wrapper > .left > div:nth-child(3) > span {
		font-size: 18px;
		line-height: 22px;
	}


	.tickets-wrapper > .right > .item > .wrapper {
		flex-flow: row wrap;
		padding: 30px 30px 70px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r1 {
		flex: 0 0 100%;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r2 {
		flex: 0 0 calc(100% - 80px);
		margin-top: 60px;
		padding: 0px 40px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r3 {
		flex: 0 0 calc(100% - 80px);
		margin-top: 30px;
		padding: 0px 40px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r4 {
		flex: 0 0 calc(100% - 80px);
		margin-top: 60px;
		padding: 0px 40px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li {
		margin-top: 10px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li > div {
		flex: 1 1 clamp(10%, 100px, 30%);
	}
	.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li > div:nth-child(2) {
		flex: 1 1 30%;
	}
	
	
	.booking-wrapper {}
	.booking-wrapper > .top {
		flex-flow: row wrap;
	}
	.booking-wrapper > .top > .l {
		flex: 0 0 100%;
	}
	.booking-wrapper > .top > .l > div:not(:first-child) {
		margin-top: 40px;
	}
	.booking-wrapper > .top > .l > .btn > a {
		margin-top: 30px;
	}
	.booking-wrapper > .top > .r {
		flex: 0 0 100%;
	}

	.booking-wrapper > .bottom {
		flex-flow: row wrap;
	}
	.booking-wrapper > .bottom > .l{
		flex: 0 0 0%;
		display: none;
	}
	.booking-wrapper > .bottom > .r{
		flex: 0 0 100%;
	}
	.booking-wrapper > .bottom > .r > .tables > .item > img {
		max-width: 82%;
	}
	.booking-wrapper > .bottom > .r > .tables > .item > div {
		display: none;
	}

	.booking-wrapper .tabledesc-wrapper {
		display: block;
		margin-top: 30px;
	}
	.booking-wrapper .tabledesc-wrapper > .heading-wrapper {
		width: 100%;
		text-align: center;
	}
	.booking-wrapper .tabledesc-wrapper > .heading-wrapper > h3 {
		font-size: 20px;
		margin-top: 24px;
	}
	.booking-wrapper .tabledesc-wrapper > .prices {
		display: flex;
		flex-flow: row nowrap;
		justify-content: flex-start;
		margin-top: 15px;
	}
	.booking-wrapper .tabledesc-wrapper > .prices > div {
		flex: 0 0 25%;
		text-align: center;
	}
	.booking-wrapper .tabledesc-wrapper > .prices > div:not(:first-child) {
		border-left: 1px solid var(--col-grey);
	}


	.log-wrapper > .left {
    	flex: 0 0 100%;
	}
	.log-wrapper > .right {
		flex: 0 0 100%;
		order: -1;
		margin: 80px 0px 40px;
	}
	.log-wrapper .transport > .item {
		width: 100%;
	}

	.spots-wrapper > div {	
		flex: 0 0 calc(50% - 20px);
	}
	.sec-07 .spots-wrapper > div:nth-of-type(even) > .main, .sec-08 .spots-wrapper > div:nth-of-type(even) > .main {

	}
	.sec-07 .spots-wrapper > div:nth-of-type(even) > .main > div, .sec-08 .spots-wrapper > div:nth-of-type(even) > .main > div {
	    width: 100%;
	    aspect-ratio: 1 / 1;
	    position: absolute;
	    margin-top: 0%;
	}
	.sec-08 .spots-wrapper > div.blank.button.bottom {
		order: +2;
	}
	.spots-wrapper > div > .locale {
	    margin-top: 30px;
	    line-height: 27px;
	    font-size: calc(11px + 1.1vw);
	    line-height: calc(14px + 1.1vw);
	}

	.sec-partners {
		padding: 150px 0px;
	}
	.partners-wrapper {}
	.partners-wrapper h3 {
		font-size: calc(18px + 1vw);
		line-height: calc(20px + 1.2vw);
	}
	.partners-wrapper > .row {
		position: relative;
		display: flex;
		flex-flow: row wrap;
		gap: 40px;
		row-gap: 40px;
	}
	.partners-wrapper > div:not(:first-child) {
		margin-top: 80px;
	}
	.partners-wrapper > .row > .l {
		flex: 0 0 100%;
	}
	.partners-wrapper > .row > .r {
		flex: 0 0 100%;
		width: 100%;
	}
	.partners-wrapper > .row > .r > div {
		display: flex;
		flex-flow: row wrap;
		justify-content: flex-start;
		align-items: center;
		row-gap: 20px
	}
	.partners-wrapper > .row > .r > div:not(:first-child) {
		margin-top: 40px;
	}
	.partners-wrapper > .row > .r > div > div > img {
		position: relative;
		display: block;
		width: 90%;
		margin: 0px auto 0px 0px;
	}
	.partners-wrapper > .row > .r > .p1 > div {
		flex: 0 0 50%;
	}
	.partners-wrapper > .row > .r > .p2 > div {
		flex: 0 0 calc(50% - 20px / 2);	
	}
	.partners-wrapper > .row > .r > .p3 > div {
		flex: 0 0 calc(33.3333% - 20px * 2 / 3);		
	}
	.partners-wrapper > .row > .r > .p4 > div {
		flex: 0 0 calc(25% - 20px * 3 / 4);	
	}
	.partners-wrapper > .row > .r > .p5 > div {
		flex: 0 0 calc(20% - 20px * 4 / 5);
	}
	.partners-wrapper > .row > .r > div > div:not(:first-child) {
		margin-left: 20px;
	}	


	footer {
		padding: 60px 0px 40px;
	}
	.footer-wrapper > .left > .branding > .logo > h2 {
		font-size: 120px;
	}
	.footer-wrapper > .left > .icon {
		width: 40px;
		height: 40px;
		margin-left: 11px;
	}
	.footer-wrapper > .left > .icon > svg {
		width: 100%;
		height: 100%;
	}
	.footer-wrapper > .right {
		flex:  0 0 100%;
	}
	.footer-wrapper > .right > .row {
		flex-flow:  row wrap;
	}
	.footer-wrapper > .right > .row:nth-child(2) {
		margin-top: 180px;
	}
	.footer-wrapper > .right > .row > .date {
		flex: 0 0 100%;
	}
	.footer-wrapper > .right > .row > .timing {
		flex: 0 0 100%;
		font-size: calc(16px + 1vw);
		line-height: calc(18px + 2vw);
	}
	.footer-wrapper > .right > .row > .address {
		margin-top: 40px;
		flex: 0 0 100%;
	}
	.footer-wrapper > .right > .row > .tomap {
		margin-top: 40px;
		justify-content: unset;
	}
	.footer-wrapper > .right > .row > .smedia {
		flex: 0 0 30%;
	}
	.footer-wrapper > .right > .row > .mindo {
		flex: 0 0 70%;
		text-align: right;
	}
	.footer-wrapper > .right > .row > .mindo a {
		font-size: 20px;
	}
	.footer-wrapper > .right > .row > .mindo > .caption {
		font-size: 20px;
	}
	.footer-wrapper > .right > .row > .smedia > *:nth-child(1) {
		display: none;
	}
	.footer-wrapper > .right > .row > .smedia > .full {
		display: none;
	}

	.footer-wrapper > .right > .row > .smedia > .short {
		display: block;
	}
	.footer-wrapper > .right > .row > .smedia > .short > li {}
	.footer-wrapper > .right > .row > .smedia > .short > li:not(:first-child) {
		margin-top: 20px;
	}
	.footer-wrapper > .right > .row > .smedia > .short > li > a {}
	.footer-wrapper > .right > .row > .smedia > .short > li > a > span{
		position: relative;
		display: block;
		width: 30px;
		height: 30px;
	}
	.footer-wrapper > .right > .row > .smedia > .short > li.tg > a > span {
		background-image: url('/assets/static/icons/tg-white.svg');
		background-size: cover;
	}
	.footer-wrapper > .right > .row > .smedia > .short > li.vk > a > span {
		background-image: url('/assets/static/icons/vk-white.svg');
		background-size: cover;
	}	


}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.vis-md {
		display: block;
	}
	.hidden-md {
		display: none!important;
	}

	h2 {
		font-size: 36px;
	}
	h3 {
		font-size: 22px;
	}
	.basictext {
		font-size: 20px;
	}

	.topup > .menu {
		height: calc(100% - 80px);
	}

	.sec-01 {
		width: 100vw;
		height: 100vh;
		padding: 30px 0px 0px;
	}
	.sec-01 .sec-wrapper {
		margin-top: 0px;
	}
	.sec-01 .top-icons {
		width: 100%;
		flex: 0 0 40px;
	}
	.sec-01 .top-icons > div {
		height: 40px;
		width: 40px;
		flex: 0 0 40px;
	}
	.sec-01 .top-icons > .nero-icon {
		height: 40px;
		width: 40px;
		flex: 0 0 40px;
	}
	.sec-01 .top-icons > .nero-icon > a > span {
    	background-image: url('/assets/static/icons/nero-white.svg');
	}
	.sec-01 .top-icons > .nero-socials {
		display: none;
	}
	.sec-01 .top-icons > .nero-socials {}
	.sec-01 .top-icons > .topnav-button {
		display: block;
	}
	.sec-01 .top-pic {
        width: 102vw;
        height: 100vh;
        right: -34px;
        top: -30px;
        background: url(/assets/static/b-nera.jpg);
        background-position-y: center;
		background-position-x: calc(-200px - 0vw);
        background-size: calc(130% + 20vw);
	}
	.sec-01 .date, .sec-01 .nero-word, .sec-01 .nero-word-subh {
		color: #fff;
	}
	.sec-01 .date {
		line-height: 84px;
	}
	.sec-01 .button-wrapper > .nero-button {
		background-color: var(--col-gold);
	}
	.sec-01 .hash-navigation {
		display: none;
	}


    .sec-02 .spots-wrapper {}

	.sec-02 .spots-wrapper p {
		font-size: 16px;
	}
	.sec-02 .spots-wrapper > div:nth-child(1) {
		display: flex;
		flex-flow: column nowrap;
		justify-content: space-between;
	}
    .sec-02 .spots-wrapper > div:nth-child(2), .sec-02 .spots-wrapper > div:nth-child(3), .sec-02 .spots-wrapper > div:nth-child(4), .sec-02 .spots-wrapper > div:nth-child(6) {
    	display: none;
    }

    .sec-02 .spots-wrapper > div.aboutswipersec {
    	flex: 0 0 100%;
    }
    .sec-02 .spots-wrapper > div.aboutswipersec > .main > div {
		aspect-ratio: 3/2;
    }
    .sec-02 .spots-wrapper > div.aboutswipersec .swiper-slide{
		text-align: center;
		font-size: 18px;
		background: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 70%;
    	background-size: cover;
    }
    .sec-02 .spots-wrapper > div.aboutswipersec .swiper-slide:nth-child(1) {
    	background: url('/assets/static/about-01.jpg') center;
    }
    .sec-02 .spots-wrapper > div.aboutswipersec .swiper-slide:nth-child(2) {
		background: url('/assets/static/about-02.jpg') center;
    }
    .sec-02 .spots-wrapper > div.aboutswipersec .swiper-slide:nth-child(3) {
    	background: url('/assets/static/about-01.jpg') center;
    }
    .sec-02 .spots-wrapper > div.aboutswipersec .swiper-slide:nth-child(4) {
		background: url('/assets/static/about-02.jpg') center;
    }    

	.artists-wrapper > div {
		flex: 0 0 calc(50% - 20px);
		width: unset;
	}	
	.artists-wrapper > .artist > .main > p {
		font-size: 36px;
		line-height: 36px;
	}
	.artists-wrapper > .blank.h2 > .block-numbers {
		margin-top: 0px;
	}
	.artists-wrapper > .blank.h2 > *:nth-child(3) {
		text-align: right;
	}
	.sec-03 .artists-wrapper > div:nth-child(4) {
		display: none;
	}


	.log-wrapper {
		flex-flow: column nowrap;
	}
	.log-wrapper > .left {
		flex: 0 0 100%;
	}
	.log-wrapper > .right {
		flex: 0 0 100%;
		order: -1;
		margin-top: 60px;
	}
	.log-wrapper .transport > .item {
		width: 100%;
	}



	.spots-wrapper > div {
		flex: 0 0 calc(50% - 20px);
    	width: 100%;
	}

	.footer-wrapper > .left > .icon {
		margin-top: 40px;
	}
	.footer-wrapper > .right {
		flex:  0 0 100%;
	}
	.footer-wrapper > .right > .row {
		flex-flow: row wrap;
		justify-content: space-between;
	}
	.footer-wrapper > .right > .row > .date {
		flex: 0 0 12%;
	}
	.footer-wrapper > .right > .row > .timing {
		flex: 0 0 25%;
	}
	.footer-wrapper > .right > .row > .address {
		flex: 0 0 50%;
	}
	.footer-wrapper > .right > .row > .tomap {
		margin-top: 30px;
		justify-content: left;
	}
	.footer-wrapper > .right > .row:nth-child(2) {
		margin-top: 120px;
	}
	.footer-wrapper > .right > .row > .mindo {
		justify-content: start;
	}

}
@media only screen and (min-width: 768px) and (max-width:1169px) {
	.tickets-wrapper > .left {
		flex: 0 0 100%;
		flex-flow: row nowrap;
	}
	.tickets-wrapper > .right {
		flex: 0 0 100%;	
	}
	.tickets-wrapper > .right > .item {
	
	}
	.tickets-wrapper > .right > .item > .wrapper {
		flex-flow: row wrap;
		gap: 40px;
        row-gap: 5px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r1 {
		flex: 0 0 100%;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r1 > h3 {
		font-size: 32px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r2, .tickets-wrapper > .right > .item > .wrapper > .r3 {
		margin-top: 40px;
		flex: 1 0 33.3333%;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r4 {
		margin-top: 40px;
		flex: 0 0 33.3333%
	}
	.tickets-wrapper > .right > .item > .wrapper > .r2 > ul {
		margin: 20px 0px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r2 > ul > li:not(:first-child), .tickets-wrapper > .right > .item > .wrapper > .r3 > ul > li:not(:first-child) {
		margin-top: 8px;
	}

	.booking-wrapper {}
	.booking-wrapper > .top {
		flex-flow: row wrap;
	}
	.booking-wrapper > .top > .l {
		flex: 0 0 100%;
	}
	.booking-wrapper > .top > .l > div:not(:first-child) {
		margin-top: 40px;
	}
	.booking-wrapper > .top > .l > .btn > a {
		margin-top: 30px;
	}
	.booking-wrapper > .top > .r {
		flex: 0 0 100%;
	}

	.booking-wrapper > .bottom {
		flex-flow: row wrap;
	}
	.booking-wrapper > .bottom > .l{
		flex: 0 0 0%;
		display: none;
	}
	.booking-wrapper > .bottom > .r{
		flex: 0 0 100%;
	}
	.booking-wrapper > .bottom > .r > .tables > .item > img {
		max-width: 82%;
	}
	.booking-wrapper > .bottom > .r > .tables > .item > div {
		display: none;
	}

	.booking-wrapper .tabledesc-wrapper {
		display: block;
		margin-top: 50px;
	}
	.booking-wrapper .tabledesc-wrapper > .heading-wrapper {
		width: 100%;
		text-align: center;
	}
	.booking-wrapper .tabledesc-wrapper > .heading-wrapper > h3 {
		font-size: 20px;
		margin-top: 34px;
	}
	.booking-wrapper .tabledesc-wrapper > .prices {
		display: flex;
		flex-flow: row nowrap;
		justify-content: flex-start;
		margin-top: 25px;
	}
	.booking-wrapper .tabledesc-wrapper > .prices > div {
		flex: 0 0 25%;
		text-align: center;
	}
	.booking-wrapper .tabledesc-wrapper > .prices > div:not(:first-child) {
		border-left: 1px solid var(--col-grey);
	}	


}

@media only screen and (min-width: 1170px) and (max-width: 1600px) {
	.tickets-wrapper > .left {
		flex: 0 0 100%;
		flex-flow: row nowrap;
	}
	.tickets-wrapper > .right {
		flex: 0 0 100%;	
	}
	.tickets-wrapper > .right > .item {
		font-size: 16px + 1vw;
	}
	.tickets-wrapper > .right > .item > .wrapper {
		padding: 20px 20px 50px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r2 > ul > li:not(:first-child), .tickets-wrapper > .right > .item > .wrapper > .r3 > ul > li:not(:first-child) {
		margin-top: 6px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li > div:nth-child(1), .tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li > div:nth-child(3) {
		flex: 1 0 75px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li > div:nth-child(2) {
		flex: 1 0 20%;
	}

}

@media only screen and (min-width: 1024px) and (max-width: 1365px) {
	.hidden-md {
		display: none!important;
	}
	h2 {
		font-size: 36px;
		line-height: 40px;
	}
	h3 {
		font-size: 22px;
	}
	main {
		font-size: calc(16px + .1vw);
		line-height: calc(20px + .05vw);
	}
	.sec-01 .top-icons > .nero-icon {
		flex: 0 0 40px;
	}
	.sec-01 .top-icons > .top-icons > div {
		flex: 0 0 40px;
    	height: 40px;
    	width: 40px;
	}
	.sec-01 .top-icons > .topnav-button {}
	.sec-01 .top-icons > .topnav-button > div {}
	.sec-01 .top-pic {
		width: 55vw;
		background-position-y: -450px;
	}
	.sec-01 .top-icons {
		width: 40vw;
	}
	.sec-01 .top-icons > div {
		width: 40px;
		height: 40px;
	}
	.sec-01 .top-icons > .nero-socials > div {
		flex: 0 0 40px;
		height: 40px;
		width: 40px;
	}
	.sec-01 .top-icons > .nero-socials > div:not(:first-child) {
		margin-left: 20px;
	}
	.sec-01 .date {
		font-size: 64px;
	}
	.sec-01 .nero-word {
		font-size: 162px;
	}
	.sec-01 .hash-navigation {
		width: 40vw;
	}


	/* about */
	
	.sec-02 .spots-wrapper > div {}
	.sec-02 .spots-wrapper > div:nth-child(1) {}
	.sec-02 .spots-wrapper > div:nth-child(1) > div:nth-child(2) {
		display: none;
	}
	.sec-02 .spots-wrapper > div:nth-child(1) > div:nth-child(3) {
		display: none;
	}

	.sec-02 .spots-wrapper > .aboutswipersec {
		display: none;
	}

	.spots-wrapper > div > .main.about {
		font-size: calc(13px + .1vw);
		line-height: calc(18px + .05vw);
	}
	.spots-wrapper > div > .main.about > div > div > p:not(:first-child) {
		margin-top: calc(10px + .5vw);
	}	
	.spots-wrapper > div > .main.dvor > div > div > div {
		font-size: calc(40px + .5vw);
		line-height: calc(40px + .4vw);
	}
	.spots-wrapper > div > .main.dvor > div > div:nth-child(2) > div:nth-child(2){
		text-align: right;
	}

	/* artists */
	.sec-03 .artists-wrapper > .blank.h2 > .block-numbers {
		margin-top: 0px;	
	}
	.sec-03 .artists-wrapper > .blank.h2 > *:nth-child(3) {
		display: none;
	}
	.artists-wrapper > .artist > .main > p {	
		font-size: 34px;
		line-height: 36px;
	}	


	/* logistics */
	.sec-06 > .container > .row:nth-child(2) {
		margin-top: 60px;
	}

	.log-wrapper > .right > .wrapper {
		height: 800px;
	}	
	.log-wrapper .transport {
		font-size: 18px;
		display: flex;
		flex-flow: column nowrap;
		justify-content: space-between;
	}
	.log-wrapper .transport > .item {
		width: 100%;
	}


	footer {}
	.footer-wrapper > .left > .branding > .logo > h2 {
		line-height: 194px;
	}
	.footer-wrapper > .right > .row {
		flex-flow: row wrap;
	}
	.footer-wrapper > .right > .row > .timing {
		flex: 0 0 calc(80% - 40px);
        margin-left: 40px;
	}
	.footer-wrapper > .right > .row > .timing > span {}
	.footer-wrapper > .right > .row > .address {
		flex: 0 0 100%;
		margin-top: 20px;
	}
	.footer-wrapper > .right > .row > .tomap {
		flex: 0 0 100%;
		margin-top: 20px;
		justify-content: left;
	}
	.footer-wrapper > .right > .row:nth-child(2) {
		margin-top: 170px;
	}
	.footer-wrapper > .right > .row > .mindo {
		text-align: right;
	}

	.footer-wrapper > .right > .row > .smedia > .short {
		display: none;
	}	
}

@media only screen and (min-width: 1366px) and (max-width: 1919px) {
	.hidden-lg {
		display: none!important;
	}	
	main {
		font-size: calc(18px + .1vw);
		line-height: calc(22px + .05vw);
	}
	.sec-01 {
		overflow-x: hidden;
	}
	h3 {
		font-size: 28px;
	}	
	.sec-01 .top-pic {
		width: 55vw;
		background-position-y: -680px;
		right: -5%;
	}
	.sec-01 .top-icons {
		width: clamp(400px, 550px, 40vw);
	}

	.sec-02 .spots-wrapper > div {}
	.sec-02 .spots-wrapper > div:nth-child(1) {}
	.sec-02 .spots-wrapper > div:nth-child(1) > div:nth-child(2) {
		display: none;
	}
	.sec-02 .spots-wrapper > div:nth-child(1) > div:nth-child(3) {
		display: none;
	}

	.sec-02 .spots-wrapper > .aboutswipersec {
		display: none;
	}

	.artists-wrapper > .blank.h2 > .block-numbers {
		margin-top: 0px;
	}
	.artists-wrapper > .blank.h2 > *:nth-child(3) {
		display: none;
	}
	.artists-wrapper > div:nth-child(4) {
	}

	.tickets-wrapper {
		font-size: 18px;
	}
	.tickets-wrapper > .right > .item > .wrapper {
		width: unset;
		gap: 40px;
		row-gap: 8px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r1 {
		flex: 0 0 25%;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r2, .tickets-wrapper > .right > .item > .wrapper > .r3 {
		flex: 1 0 40%;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r2 > ul {
		margin: 20px 0px;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r4 {
		flex: 1 0 25%;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li > div:nth-child(1) {
		flex: 0 0 35%;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li > div:nth-child(2) {
		flex: 0 0 30%;
	}
	.tickets-wrapper > .right > .item > .wrapper > .r4 > ul > li > div:nth-child(3) {
		flex: 0 0 35%;
	}

	.footer-wrapper > .right > .row > .smedia > .short {
		display: none;
	}	

}
@media only screen and (min-width: 1920px) {
	.hidden-lg {
		display: none!important;
	}

	.sec-02 .spots-wrapper > div:nth-child(1) > div:nth-child(2) {
		display: none;
	}
	.sec-02 .spots-wrapper > div:nth-child(1) > div:nth-child(3) {
		display: none;	
	}
    .sec-02 .spots-wrapper > div.aboutswipersec {
    	display: none;
    }
	.artists-wrapper > .blank.h2 > div:nth-child(3) {
		display: none;	
	}

}
