@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Couture';
    src: url('fonts/Couture.eot');
    src: local('☺'), url('fonts/Couture.woff') format('woff'), url('fonts/Couture.ttf') format('truetype'), url('fonts/Couture.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "abchanel-pb-m";
    src: url("fonts/a6a8410e6c6e62393e05ff44ecb5412cc7e4f695-l.woff2") format("woff2"), url("fonts/a6a8410e6c6e62393e05ff44ecb5412cc7e4f695-d.woff") format("woff"), url("fonts/a6a8410e6c6e62393e05ff44ecb5412cc7e4f695-a.otf") format("opentype");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: "abchanel-pb-m";
    src: url("fonts/d20c9faa99ffb19887f2d48ba1341b5f829a0172-l.woff2") format("woff2"), url("fonts/d20c9faa99ffb19887f2d48ba1341b5f829a0172-d.woff") format("woff"), url("fonts/d20c9faa99ffb19887f2d48ba1341b5f829a0172-a.otf") format("opentype");
    font-style: normal;
    font-weight: 600
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background: #131313;
}

nav.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(3 3 3 / 55%);
    z-index: 99;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

nav.navbar:hover {
    background: rgba(3 3 3 / 95%);
}

nav.navbar.fixed {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

nav.navbar.fix {
    -webkit-transform: translateY(0%) !important;
    -ms-transform: translateY(0%) !important;
    transform: translateY(0%) !important;
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 90%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-family: "abchanel-pb-m", sans-serif
}

nav.navbar .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.navbar__logo {
    position: relative;
    max-width: 10%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    height: 48px;
}

a.navbar__logo-link {
    display: block;
    box-sizing: border-box;
    position: absolute;
    text-align: center;
    width: 100%;
    transition: .3s;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 0.9rem;
}

.menu__item {
    position: relative;
    max-width: 15%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    text-align: center;
}

.menu__item.menu__items.menu__ticket {
    max-width: 15%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
}

.menu__ticket::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 100%;
    background: url(../images/ticket2.png) center top / cover no-repeat;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.menu__ticket:hover:before {
    content: "";
    position: absolute;
    top: -50px;
    left: 10%;
    width: 80%;
    height: calc(100% + 50px);
    background: url(../images/ticket2.png) center top / cover no-repeat;
}

a.menu__link {
    position: relative;
    color: hsla(0, 0%, 100%, .54);
    text-transform: uppercase;
    font-size: 0.8em;
    position: relative;
    font-weight: bold;
    display: inline-block;
    margin: 0.25rem 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.menu__item:hover a.menu__link {
    color: #FFD531;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

a.menu__link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: hsla(0, 0%, 100%, .34);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.menu__item:hover a.menu__link::before {
    width: 80%;
}

.menu__button {
    position: relative;
    background: #FFD531;
    color: #181818;
    letter-spacing: -0.02em;
    padding: .9rem .5rem .85rem;
    border-radius: 4px;
    border: 1px solid #181818;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-transform: uppercase;
    font-size: .7em;
    font-weight: bold;
}

.menu__button:hover {
    background: #050505;
    color: #FFD531;
    border: 1px solid #FFD531;
}

.navbar__logo img {
    height: 48px;
    position: relative;
    z-index: 5;
}

.menu__border {
    position: relative;
}

.menu__border::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    width: 2px;
    height: 100%;
    background: hsla(0, 0%, 100%, .24);
}

#viewport {
    width: 100vw;
    height: calc(100vh - 71px);
    overflow: hidden;
}

.slider {
    position: relative;
    width: calc(100% * 3);
    height: calc(100vh - 71px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    background: #181818;
}

.slide {
    position: relative;
    width: 100%;
    height: calc(100vh - 71px);
}

.slide__caption {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    color: hsla(0, 0%, 100%, .94);
    width: 100%;
    height: 100%;
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    transition: .4s ease-out;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
    overflow: hidden;
}

.slide__item {
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20 20 20 / 75%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(19 19 19 / 100%)), to(rgba(20 20 20 / 35%)));
    background: -o-linear-gradient(bottom, rgba(19 19 19 / 100%), rgba(20 20 20 / 35%));
    background: linear-gradient(to top, rgba(19 19 19 / 100%), rgba(20 20 20 / 35%));
    padding: 1rem;
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    transition: .4s ease-out;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.slide__item::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    border-bottom: 300px solid rgba(20 20 20 / 75%);
    border-right: 100px solid transparent;
}

.slide img {
    width: 100%;
    height: calc(100vh - 71px);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 0;
    object-position: 0;
}

.slide__data {
    background: rgba(137 0 18 / 80%);
    position: absolute;
    right: 0.5rem;
    top: 5.65rem;
    width: 150px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    border-radius: 4px;
    opacity: 0;
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    transition: .4s ease-out;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
    z-index: 1;
}

.active .slide__data {
    top: -54px;
    opacity: 1;
}

span.slide__ribbon {
    background: rgba(137 0 18 / 80%);
    position: absolute;
    right: 0.5rem;
    top: 12rem;
    padding: 0.5rem 2rem;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    border-radius: 4px;
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    transition: .4s ease-out;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
    z-index: 1;
}

.active span.slide__ribbon {
    top: 1rem;
}

span.slide__data-text {
    display: block;
    text-align: center;
    padding: 5px;
}

span.slide__data-header {
    display: block;
    text-align: center;
    text-transform: uppercase;
    padding: 10px;
}

.slide__data > strong {
    display: block;
    text-align: center;
    background: rgba(255 255 255 / 10%);
    padding: 10px;
    font-size: 2em;
}

#viewSlider {
    width: calc(30px * 5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.viewSlide {
    width: 20px;
    height: 20px;
    background-color: red;
}

.banner {
    width: 100vw;
    height: calc(100vh - 71px);
    position: relative;
}

button.prev {
    position: absolute;
    left: 0;
    bottom: 0;
    border: 0;
    background: rgba(20 20 20 / 35%);
    color: hsla(0, 0%, 100%, .54);
    padding: .2rem 2rem;
    border-top-right-radius: 50px;
    cursor: pointer;
    font-size: 2em;
    z-index: 5;
}

button.next {
    position: absolute;
    right: 0;
    bottom: 0;
    border: 0;
    background: rgba(20 20 20 / 35%);
    color: hsla(0, 0%, 100%, .54);
    padding: .2rem 2rem;
    border-top-left-radius: 50px;
    cursor: pointer;
    font-size: 2em;
    z-index: 5;
}

h2.slide__title {
    position: relative;
    top: 0;
    left: 2rem;
    margin: 0;
    display: inline-block;
    padding: 0.5rem 0;
    opacity: 0;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 76%), -1px -1px 2px rgb(0 0 0 / 56%);
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    transition: .4s ease-out;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.active h2.slide__title {
    left: 0;
    opacity: 1;
}

p.slide__text {
    position: relative;
    top: 2rem;
    color: #FFFFFF;
    opacity: 0;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 76%), -1px -1px 2px rgb(0 0 0 / 56%);
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    transition: .4s ease-out;
    -webkit-transition-delay: 0.75s;
    -o-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.active p.slide__text {
    top: -1rem;
    opacity: 1;
}

.sortables .row__col-4 {
    position: relative;
}

.p-box__handle {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(5 5 5 / 75%);
    color: rgba(255 255 255 / 35%);
    padding: 5px 9px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.p-box__handle:hover {
    color: rgba(255 255 255 / 90%);
}

.social {
    position: absolute;
    top: calc(50% - 2rem);
    right: 10px;
    z-index: 9;
}

a.vkontakte {
    display: inline-block;
    color: #FFFFFF;
    background: #2787F5;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    padding-top: 9px;
    font-size: 1.25em;
    margin: 10px 0;
}

a.telegram {
    display: inline-block;
    color: #FFFFFF;
    background: #279EDA;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    padding-top: 9px;
    font-size: 1.25em;
    margin: 10px 0;
}

a.ok {
    display: inline-block;
    color: #FFFFFF;
    background: #EE8208;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    padding-top: 9px;
    font-size: 1.25em;
    margin: 10px 0;
}

a.youtube {
    display: inline-block;
    color: #FFFFFF;
    background: #FF0101;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    padding-top: 9px;
    font-size: 1.25em;
    margin: 10px 0;
}

a.facebook {
    display: inline-block;
    color: #FFFFFF;
    background: #3A5897;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    padding-top: 9px;
    font-size: 1.25em;
}

a.instagram {
    display: inline-block;
    color: #FFFFFF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    padding-top: 9px;
    font-size: 1.25em;
    background: #f18506;
    background: -o-linear-gradient(45deg, #AE961E, #A31B23, #5F3183);
    background: linear-gradient(45deg, #AE961E, #A31B23, #5F3183);
}

.burger {
    display: none;
}

.slide__button {
    background: rgba(0 0 0 / 0%);
    display: inline-block;
    padding: 0.75rem 2.4rem;
    border-radius: 50px;
    border: 1px solid #FFD531;
    color: #FFD531;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: -0.02em;
    cursor: pointer;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    transition: .4s ease-out;
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}

.active .slide__button {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.slide__button:hover {
    background: #050505;
    color: #FFD531;
}

.d-tab__button {
    background: rgba(0 0 0 / 0%);
    display: inline-block;
    padding: 0.75rem 2.4rem;
    border-radius: 50px;
    border: 1px solid #FFD531;
    color: #FFD531;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: -0.02em;
    margin-left: 1rem;
    cursor: pointer;
    -webkit-transition: .3s ease-out;
    -o-transition: .3s ease-out;
    transition: .3s ease-out;
}

.d-tab__button:hover {
    background: #050505;
    color: #FFD531;
}

.event {
    padding: 5rem 1rem;
}

.event__text {
    position: relative;
}

.event__edit {
    position: absolute;
    top: 0.25rem;
    right: 0;
    background: #3C2182;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 0.8em;
    padding: 0.25rem;
    border-radius: 4px;
    z-index: 99;
}

.event__caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    overflow-y: auto;
    background: rgba(5 5 5 / 95%);
    padding: 1rem;
    color: #FFFFFF;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(0.8) rotateY(90deg) rotateX(90deg);
    transform: scale(0.8) rotateY(90deg) rotateX(90deg);
}

.event__slide-item:hover .event__caption {
    -webkit-transform: scale(1) rotateY(0deg) rotateX(0deg);
    transform: scale(1) rotateY(0deg) rotateX(0deg);
}

.event__slide-item {
    position: relative;
}

.event__slide-item picture {
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    height: 70vh;
}

.event__slide-title {
    display: block;
    width: 100%;
    padding: 0.9rem 0 0 0;
    color: #CCCCCC;
    font-family: "abchanel-pb-m", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

.event__more {
    padding: 1rem 0;
}

.event__more > a {
    border: 2px solid rgba(255 255 255 / 35%);
    color: rgba(255 255 255 / 35%);
    display: inline-block;
    padding: 0.9rem 2rem;
    background: rgba(255 255 255 / 5%);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.event__more > a:hover {
    border: 2px solid rgba(255 255 255 / 95%);
    color: rgba(255 255 255 / 95%);
}

.event__data {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #FFFFFF;
    font-size: 0.8em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.event__data-left {
    background: #FFD531;
    padding: 10px;
    color: #050505;
    font-weight: bold;
    border-radius: 4px 3px 3px 4px;
}

.event__data-right {
    background: #60197E;
    padding: 10px;
    border-radius: 3px 4px 4px 3px;
    text-align: center;
}

.event__slide-item img {
    width: 100%;
    height: 70vh;
    -o-object-fit: cover;
    object-fit: cover;
}

.event__slide-data {
    color: #CCCCCC;
    font-size: 0.8em;
    padding: 0.25rem 0;
}

.event__slide-item i {
    position: absolute;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    font-size: 2rem;
    color: #FF0101;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.event__slide-item:hover i {
    opacity: 0.9;
}

a.link-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
}

button.owl-prev {
    position: absolute;
    top: calc(50% - 15px);
    left: -50px;
    background: rgba(0 0 0 / 75%) !important;
    color: #FFFFFF !important;
    width: 30px;
    height: 30px;
    border-radius: 4px;
}

button.owl-next {
    position: absolute;
    top: calc(50% - 15px);
    right: -50px;
    background: rgba(0 0 0 / 75%) !important;
    color: #FFFFFF !important;
    width: 30px;
    height: 30px;
    border-radius: 4px;
}

.event__slide {
    padding: 3rem 0;
    border-top: 2px solid #E6D8BD;
    border-bottom: 2px solid #E6D8BD;
    margin: 1rem 0;
}

.event__slide::before {
    content: '';
    position: absolute;
    top: 0.35rem;
    left: 0;
    width: 100%;
    height: 48px;
    background: url('../images/cadr.png') repeat-x;
}

.event__slide::after {
    content: '';
    position: absolute;
    bottom: 0.35rem;
    left: 0;
    width: 200%;
    height: 48px;
    background: url('../images/cadr.png') bottom left repeat-x;
}

.event__slide::after {
    content: '';
    position: absolute;
    bottom: 0.35rem;
    left: 0;
    width: 100%;
    height: 48px;
    background: url(../images/cadr.png) bottom left repeat-x;
}

h2.event__title {
    position: relative;
    color: #FFD531;
    text-transform: uppercase;
    margin: 0;
    padding: 0 1rem 0 1rem;
}

.persona {
    width: 100%;
    min-height: 100vh;
    background: #050505;
    padding: 5rem 0;
}

.persona__text {
    position: relative;
    text-align: center;
    color: #FFD531;
    text-transform: uppercase;
}

.persona__slide {
    padding: 1rem 0;
    margin: 0;
}

.persona__slide-item {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    border: 2px solid #FFD531;
    border-radius: 6px;
    max-height: 437px;
}

.item-play::after {
    content: '\ed11';
    font-family: 'icomoon';
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #FFFFFF;
}

.item-play:hover:after {
    content: '\ed0c';
}

.persona__slide-item picture {
    width: 100%;
    height: 70vh;
    max-height: 437px;
    position: relative;
}

a.persona__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.persona__slide-item img {
    width: 100%;
    height: 70vh;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 437px;
}

.persona__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(0 0 0 / 90%);
}

.persona__caption-title {
    font-size: 1.17em;
    font-weight: bold;
    color: #FFD531;
    margin-bottom: 0.35rem;
    min-height: 42px;
}

.persona__caption-title i {
    color: hsla(0, 0%, 100%, .54);
    font-size: 0.8em;
    width: 2rem;
    text-align: center;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.persona__caption-title:hover i {
    opacity: 1;
}

.c-p {
    cursor: pointer;
}

.persona__caption-text {
    position: relative;
    padding: 0.25rem 1rem 0.25rem 1rem;
    color: #FFFFFF;
    display: inline-block;
}

.persona__caption-text::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    background: #3C2182;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.persona__caption-text.text-1::before {
    background: #3C2182;
}

.persona__caption-text.text-2::before {
    background: #890012;
}

.persona__caption-text.text-3::before {
    background: #60197E;
}

.persona__slide-item:hover .persona__caption-text::before {
    top: 1px;
    left: 0;
    width: 100%;
    height: 100%;
}

.persona__caption-text span {
    color: #FFFFFF;
    position: relative;
    font-size: 0.8em;
    z-index: 2;
}

.persona__social {
    position: absolute;
    bottom: calc(30% - 2rem);
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.persona__social div {
    position: relative;
    margin: 0 0.25rem;
    background: #000;
    display: inline-block;
    color: #FFD531;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 7px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.persona__social a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.persona__social-1 {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: translateY(200px);
    -ms-transform: translateY(200px);
    transform: translateY(200px);
}

.persona__slide-item:hover .persona__social-1 {
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
}

.persona__social-2 {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(200px);
    -ms-transform: translateY(200px);
    transform: translateY(200px);
}

.persona__slide-item:hover .persona__social-2 {
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
}

.persona__social-3 {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateY(200px);
    -ms-transform: translateY(200px);
    transform: translateY(200px);
}

.persona__slide-item:hover .persona__social-3 {
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
}

.persona__social-4 {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(200px);
    -ms-transform: translateY(200px);
    transform: translateY(200px);
}

.persona__slide-item:hover .persona__social-4 {
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
}

.js-photo__post video {
    width: 100%;
    height: 170px;
}

img.img-front {
    opacity: 1;
}

.persona__slide-item:hover img.img-front {
    opacity: 0;
}

.fancybox-slider-wrap {
    background: #000000;
}

picture.event__photo {
    position: relative;
}

h1.event__title {
    padding: 2rem;
    margin: 0;
    border-bottom: 1px solid rgba(255 255 255 / 10%);
}

.row.event {
    padding: 0;
}

picture.event__photo i {
    position: absolute;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    font-size: 2em;
    color: #A60000;
}

.img-back {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.persona__slide-item:hover .img-back {
    opacity: 1;
}

.person-bio {
    background: rgba(5 5 5 / 75%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    color: #FFFFFF;
    font-size: 0.9em;
    height: 53vh;
    overflow-y: auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(-53vh);
    -ms-transform: translateY(-53vh);
    transform: translateY(-53vh);
}

.open .person-bio {
    -webkit-transform: translateY(0vh);
    -ms-transform: translateY(0vh);
    transform: translateY(0vh);
}

.persona__add {
    position: absolute;
    top: 0;
    right: 0;
    background: #2787F5;
    font-size: 0.8em;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 9;
}

h1.person__title {
    padding: 2rem;
    margin: 0;
    border-bottom: 1px solid rgba(255 255 255 / 10%);
}

p.person__action {
    padding: 0 2rem;
    font-size: 0.8em;
    -webkit-transform: translateY(-2.75rem);
    -ms-transform: translateY(-2.75rem);
    transform: translateY(-2.75rem);
}

span.a-repert {
    display: inline-block;
    background: #050505;
    font-size: 0.8em;
    padding: 2px 6px;
    border-radius: 4px;
    transform: translate(10px, -2px);
}

.js-adds {
    font-size: 1.2em;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    padding: 10px;
    cursor: pointer;
}

.pd-1 {
    padding: 0.25rem;
}

button.dj-button {
    background: #60197E;
    color: #FFFFFF;
    width: 100%;
    text-align: center;
    border: 0;
    border-radius: 4px;
    padding: 0.65rem;
    margin-top: 0.35rem;
}

.post__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: rgba(5 5 5 / 65%);
    margin: 0.2rem 0.2rem 1.5rem 0.2rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.post__list:hover {
    background: rgba(5 5 5 / 100%);
}

.post__data {
    max-width: 20%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-right: 1px solid rgba(255 255 255 / 10%);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.post__data-number {
    position: relative;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin: 10px;
    background: #60197E;
    font-size: 2em;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    min-width: 56px;
    text-align: center;
    -webkit-transform: translateY(-9px);
    -ms-transform: translateY(-9px);
    transform: translateY(-9px);
}

.post__data-number > span {
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 0.3em;
    text-transform: uppercase;
    padding: 5px 0;
    text-align: center;
    color: #B6BC1E;
    width: 56px;
    display: inline-block;
}

.post__data-day {
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: rgba(255 255 255 / 35%);
}

button.post__button {
    position: relative;
    background: #FFD531;
    color: #181818;
    border: 0;
    font-size: 0.8em;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
}

input#files {
    width: 0;
    height: 0;
    overflow: hidden;
}

.i-success {
    background: rgba(5 5 5 / 85%);
    position: fixed;
    top: 2rem;
    right: 2rem;
    color: #FFFFFF;
    z-index: 9999;
    padding: 2rem;
    border-radius: 4px;
}

span.icon-paperclip {
    cursor: pointer;
}

.post__data-item {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    text-align: right;
    padding-right: 0.9rem;
}

.post__data-time {
    font-size: 1.7em;
    font-weight: bold;
}

.post__name {
    position: relative;
    max-width: 65%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-right: 1px solid rgba(255 255 255 / 10%);
    padding-left: 10px;
}

.post__delete {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    font-size: 0.7em;
    color: #A60000;
    font-weight: bold;
    cursor: pointer;
}

.post__name-photo {
    max-width: 10%;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
}

.post__name-photo > picture {
    width: 100%;
    height: 70px;
}

.post__name-photo > picture > img {
    width: 100%;
    height: 70px;
    -o-object-fit: contain;
    object-fit: contain;
}

.c-text p {
    padding: 0 2rem;
    line-height: 25px;
    color: hsla(0, 0%, 100%, .54) !important;
}

picture.youtube > img {
    width: 100%;
}

picture.youtube {
    position: relative;
    margin: 1rem;
}

picture.youtube i {
    position: absolute;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    font-size: 2rem;
    color: #A60000;
    opacity: 0.5;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

picture.youtube:hover i {
    opacity: 1;
}

.c-text picture {
    text-align: center;
    padding: 0.5em;
}

a.slide__link {
    display: inline-block;
    color: #FFFFFF;
    border: 1px solid #60197E;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    background: rgba(96 25 126 / 25%);
    -webkit-transform: translateY(-18px);
    -ms-transform: translateY(-18px);
    transform: translateY(-18px);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

a.slide__link:hover {
    background: #60197E;
}

.post__name-item {
    max-width: 90%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    padding: 10px 20px;
}

.post__name-item > h3 {
    color: #FFD434;
    margin: 0;
    padding-bottom: 0.5rem;
}

p.post__name-text {
    margin: 0;
    font-size: 0.8em;
}

.post__caption {
    max-width: 15%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    text-align: center;
}

span.post__age {
    background: rgba(137 0 18 / 80%);
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 10px;
    display: inline-block;
}

span.post__genre {
    display: block;
    padding: 10px;
    font-size: 0.8em;
}

.post__name a {
    color: #FFFFFF;
    font-size: 0.8em;
    display: inline-block;
    margin-top: 9px;
    font-weight: bold;
    background: #60197E;
    padding: 5px;
    border-radius: 4px;
}

.post.c-poster__post {
    background: #131313;
    padding: 1rem;
    margin: 2rem 0;
    border-radius: 4px;
    color: #FFFFFF;
}

.d-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0 0 0 / 75%);
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.d-modal__content {
    width: 800px;
    background: #050505;
    border: 5px solid #FFD531;
    border-radius: 4px;
    padding: 1rem;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.d-modal__header {
    color: rgba(255 255 255 / 54%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #E6D8BD;
    padding-bottom: 1rem;
}

.d-modal__close {
    cursor: pointer;
}

.d-modal__body {
    padding: 2rem 0;
    max-height: 70vh;
    overflow-y: auto;
}

input#file {
    width: 0;
    height: 0;
    overflow: hidden;
    border: 0;
    opacity: 0;
}

.edit-photo {
    text-align: center;
    padding: 0.5rem;
}

div#filesinput {
    background: #3C2182;
    color: #FFFFFF;
    padding: 0.5rem 2rem;
    border-radius: 4px;
    font-size: 0.8em;
    cursor: pointer;
}

div#loaders {
    padding: 0.5rem;
    font-size: 0.8em;
    color: #ACACAC;
}

.js-input {
    box-sizing: border-box;
    width: 100%;
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #E6D8BD;
    background: #050505;
    color: #ACACAC;
    font-size: 0.9em;
    margin: 0.5rem 0;
    font-weight: bold;
}

.d-modal__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #E6D8BD;
    padding-top: 1rem;
}

.js-send {
    background: #60197E;
    border: 0;
    color: #FFFFFF;
    font-size: 0.8em;
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    cursor: pointer;
}

.js-close {
    background: #890012;
    border: 0;
    color: #FFFFFF;
    font-size: 0.8em;
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    cursor: pointer;
}

.js-photo__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.js-photo__post {
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin: 0.25rem;
    -ms-flex-preferred-size: calc(50% - 0.5rem);
    flex-basis: calc(50% - 0.5rem);
    position: relative;
    height: 170px;
    overflow: hidden;
}

.js-photo__post img {
    width: 100%;
    height: 170px;
    -o-object-fit: cover;
    object-fit: cover;
}

.js-photo__delete {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0 0 0 / 50%);
    color: #FFFFFF;
    font-size: 0.8em;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.js-photo__delete:hover {
    background: rgba(0 0 0 / 90%);
}

.small {
    font-size: 0.8em;
}

span.js-photo__cover {
    position: absolute;
    left: 0.5rem;
    bottom: 0.5rem;
    z-index: 9;
    background: rgba(0 0 0 / 90%);
    color: #FFFFFF;
    font-size: .8em;
    padding: 5px 10px;
    border-radius: 4px;
}

.d-modal__result {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
}

.owl-no-post {
    border: 2px solid #FFD531;
    padding: 2rem;
    text-align: center;
    color: #FFFFFF;
    border-radius: 4px;
    margin: 1rem 0;
}

button.owl-next.disabled, button.owl-prev.disabled {
    opacity: 0;
}

.c-about {
    padding: 5rem 0;
}

h2.c-about__title {
    position: relative;
    color: #FFD531;
    text-transform: uppercase;
    background: #050505;
    padding: 1rem;
    margin: 0;
    border-radius: 4px 4px 0 0;
}

h2.c-about__title > span {
    color: #FFFFFF;
}

h2.c-about__title::before {
    content: '';
    position: absolute;
    top: 0.6rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: url('../images/mask.png') center center / contain no-repeat;
}

.c-about__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #050505;
}

.c-about__photo {
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.c-about__caption {
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    background: #050505;
    border-bottom-right-radius: 4px;
    min-height: 70vh;
}

.item.c-about__slide-item, .item.c-about__slide-item picture {
    position: relative;
    width: 100%;
    height: 70vh;
    border-bottom-left-radius: 4px;
    overflow: hidden;
}

.item.c-about__slide-item img {
    width: 100%;
    height: 70vh;
    -o-object-fit: cover;
    object-fit: cover;
}

.item .boxscreen__item {
    right: auto;
    left: 1rem;
}

.c-about__photo::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-top: 70vh solid #050505;
    border-left: 100px solid transparent;
    z-index: 9;
}

.c-about__row {
    background: #050505;
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    transform: translateY(-25px);
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.c-about__text, .about__text {
    padding: 1rem;
    color: #FFFFFF;
}

p.c-about__text-item, p.about__text-item {
    color: hsla(0, 0%, 100%, .54);
    background: hsla(0, 0%, 100%, .05);
    padding: 2rem 3rem;
    border-radius: 4px;
    line-height: 25px;
}

.text-show {
    display: none;
}

.text-show.active {
    display: block;
}

.text-show, .c-about__more.open {
    display: none;
}

.c-about__more, .c-about__hide {
    text-align: center;
    padding: 1rem;
}

.c-poster {
    background: #050505;
    padding: 5rem 0;
}

.c-about__more > span, .c-about__hide > span {
    display: inline-block;
    font-size: 0.8em;
    background: rgba(255 255 255 / 35%);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.c-about__more > span:hover, .c-about__hide > span:hover {
    background: rgba(255 255 255 / 95%);
    color: #131313;
}

h2.c-poster__title {
    background: #131313;
    margin: 0;
    padding: 1rem;
    border-radius: 4px;
    position: relative;
    color: #E6D8BD;
    text-transform: uppercase;
}

h2.c-poster__title > span {
    color: #FFD531;
}

h2.c-poster__title::after {
    content: '\ed0d';
    font-family: 'icomoon';
    color: #FFD531;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.c-poster__list {
    padding: 2rem 0;
}

.c-poster__item {
    background: #131313;
    padding: 1rem;
    border-radius: 4px;
    position: relative;
}

.c-poster__edit {
    color: #FFFFFF;
    padding: 1rem 0;
    cursor: pointer;
    text-align: right;
    font-size: 0.8em;
    display: block;
}

p.repert__action {
    padding: 0 2rem;
    font-size: 0.8em;
    -webkit-transform: translateY(-2.75rem);
    -ms-transform: translateY(-2.75rem);
    transform: translateY(-2.75rem);
}

span.repert__age {
    background: rgba(137 0 18 / 80%);
    display: inline-block;
    padding: 0 5px;
    border-radius: 4px;
    margin-right: 0.5rem;
}

.afisha {
    overflow: hidden;
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.item.c-poster__item.active .afisha {
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
}

.c-poster__caption {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 70vh;
    background: #050505;
    border-radius: 4px;
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.item.c-poster__item.active .c-poster__caption {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.afisha picture {
    overflow: hidden;
    width: 100%;
    height: 70vh;
    border-radius: 4px;
}

.afisha img {
    width: 100%;
    height: 70vh;
    -o-object-fit: cover;
    object-fit: cover;
}

.afisha__link {
    position: absolute;
    bottom: 1rem;
    left: -10rem;
    background: #D8A24F;
    color: #050505;
    font-weight: bold;
    font-size: 0.8em;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.afisha:hover .afisha__link {
    left: 1rem;
}

.c-poster__close {
    background: #D8A24F;
    color: #050505;
    font-weight: bold;
    font-size: 0.8em;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.c-poster__header {
    padding: 1rem;
    color: #f0f2f5;
}

.c-poster__header > h3 {
    font-size: 1.17em;
    margin: 0;
}

.c-poster__header > span {
    display: block;
    text-align: right;
    padding: 0.5rem;
}

.c-poster__header day, .c-poster__header year {
    display: inline-block;
    background: #3C2182;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.c-poster__header > p {
    margin: 0;
    padding-bottom: 1rem;
}

.d-tab__content {
    display: none;
}

.d-tab__content.active {
    display: block;
}

.repertoire {
    padding: 5rem 0;
}

h2.repertoire__title {
    background: #050505;
    padding: 1rem;
    border-radius: 4px;
    margin: 0;
    color: #E6D8BD;
    position: relative;
}

.vk-video {
    position: relative;
}

.vk-video__item {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.vk-video__list {
    display: flex;
    flex-wrap: wrap;
    padding: 2em 0.5em;
    color: #FFFFFF;
    font-size: .875em;
    gap: 10px;
}

.vk-video__list--item {
    border-radius: 4px;
    padding: 7px 13px;
    font-size: .8em;
    box-shadow: 0 0 4px 2px rgb(255 255 255 / 75%);
}

.vk-video__count i {
    width: 20px;
    text-align: center;
    color: #FFD531;
    position: relative;
    font-size: 1em;
    top: 0;
    left: 0;
    opacity: 1;
}

.vk-video__count count {
    display: inline-block;
    padding-right: 5px;
}

.vk-video__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.vk-video__grid--link {
    border-radius: 4px;
    padding: 7px 13px;
    font-size: .8em;
    color: #FFFFFF;
    margin-right: .5rem;
    transition: .3s;
}

h2.repertoire__title > span {
    color: #FFD531;
}

h2.repertoire__title::after {
    content: '\ed31';
    font-family: 'icomoon';
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #FFD531;
}

ul.d-tab__list {
    margin: 0;
    padding: 1rem;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

ul.d-tab__list > li {
    background: #050505;
    color: #FFFFFF;
    font-size: 0.9em;
    padding: 10px;
    border-radius: 4px;
    margin: 10px;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

ul.d-tab__list > li.active {
    background: #60197E;
    color: #FFD531;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.d-tab__text {
    padding: 0 1rem;
    color: rgba(255 255 255 / 55%);
}

h3.d-tab__title {
    text-transform: uppercase;
    padding-left: 1rem;
}

p.d-tab__text {
    padding: 0.5rem 1rem;
    line-height: 25px;
}

.repertoire__item {
    background: rgba(255 255 255 / 5%);
    padding: 2rem;
    border-radius: 8px;
}

.d-tab__photo {
    width: 100%;
    height: 65vh;
    overflow: hidden;
}

.d-tab__photo img {
    width: 100%;
    height: 65vh;
    -o-object-fit: contain;
    object-fit: contain;
}

.c-contact {
    padding: 5rem 0;
    background: #050505;
    color: hsla(0, 0%, 100%, .54);
}

h2.c-contact__title {
    background: #131313;
    margin: 0;
    padding: 1rem;
    border-radius: 4px 4px 0 0;
    position: relative;
    color: #E6D8BD;
}

h2.c-contact__title > span {
    color: #FFD531;
}

h2.c-contact__title::after {
    content: '\ecf4';
    font-family: 'icomoon';
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #FFD531;
}

.c-contact__list {
    margin-top: 2px;
    background: rgba(255 255 255 / 5%);
    border-radius: 0 0 4px 4px;
}

.c-contact__item {
    padding: 1rem;
}

.c-contact__item > h3 {
    margin: 0;
    color: #E6D8BD;
}

div#map {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: #050505;
    margin: 10px;
    border-radius: 4px;
}

.pr {
    position: relative;
}

.c-contact__icon {
    position: absolute;
    z-index: 5;
    top: 1rem;
    left: 1rem;
    background: rgba(0 0 0 / 90%);
    font-size: 0.9em;
    border-radius: 4px;
    padding: 5px 10px;
}

.c-contact__icon span {
    width: 1.25rem;
    display: inline-block;
    text-align: center;
    color: #FFD531;
}

.c-contact__address {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 5;
    background: rgba(96 25 126 / 90%);
    color: #FFFFFF;
    font-size: 0.9em;
    padding: 5px 10px;
    border-radius: 4px;
}

.c-contact__text {
    padding: 0.5rem 0;
}

.c-contact__text > span {
    display: block;
    font-size: 0.9em;
    padding: 0.25rem 0;
}

.c-contact__text > i {
    width: 1.25rem;
    height: 1.25rem;
    text-align: center;
    background: #D8A253;
    font-size: 0.7em;
    padding-top: 4px;
    box-sizing: border-box;
    border-radius: 2px;
}

.c-contact__text > a {
    color: #D8A253;
    display: inline-block;
    transform: translateY(2px);
    padding-left: 8px;
}

.c-contact__item h4 {
    border-top: 1px solid hsla(0, 0%, 100%, .54);
    border-bottom: 1px solid hsla(0, 0%, 100%, .54);
    padding: 0.35rem;
    margin: 10px 0;
}

.c-contact__company p {
    font-size: 0.9em;
}

.c-contact__company i {
    width: 1.25em;
    text-align: center;
    color: #FFD531;
}

.c-contact__company span {
    color: #E6D8BD;
}

.c-contact__company strong {
    width: 100px;
    display: inline-block;
}

.footer__logo img {
    height: 50px;
}

footer {
    border-top: 1px solid rgba(255 255 255 / 10%);
    padding: 3rem 0;
}

.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer__logo {
    width: 72px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.footer__name {
    width: calc(100% - 72px);
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    padding: 1rem;
    color: hsla(0, 0%, 100%, .54);
}

.as-c {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.row__link {
    text-align: right;
}

.row__link a {
    color: #FFD531;
    font-size: 0.8em;
}

.row__see {
    text-align: right;
    color: #FFD531;
    padding-top: 0.5rem;
    font-size: 0.8em;
    cursor: pointer;
}

.copy {
    background: #050505;
    padding: 1rem 0;
    color: hsla(0, 0%, 100%, .54);
    font-size: 0.8em;
}

a.author {
    display: block;
    text-align: right;
    color: rgba(255 255 255 / 35%);
}

a.author span {
    color: #D8A253;
    text-transform: uppercase;
}

button.js-del {
    background: #A60000;
    border: 0;
    color: #FFFFFF;
    font-size: 0.8em;
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    cursor: pointer;
}

.d-c {
    display: none;
}

.delete {
    color: rgba(255 255 255 / 54%);
}

button.js-delete {
    background: #00A600;
    border: 0;
    color: #FFFFFF;
    font-size: 0.8em;
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    margin-right: 1rem;
    cursor: pointer;
}

h2.c-form__title {
    max-width: 800px;
    margin: auto;
    padding: 1rem;
    border-radius: 4px 4px 0 0;
    position: relative;
    color: #E6D8BD;
}

h2.c-form__title > span {
    color: #FFD531;
}

.c-form {
    padding: 5rem 0;
}

.c-form__item {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
    background: rgba(255 255 255 / 10%);
    border-radius: 8px;
    margin-top: 1rem;
}

.c-form__group {
    position: relative;
    background: #131313;
    margin: 1rem;
    padding: 1rem 1rem 0 1rem;
    border-radius: 4px;
}

.c-form__group > label {
    position: absolute;
    top: 1rem;
    color: rgba(255 255 255 / 54%);
    z-index: 1;
    left: 1rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.c-form__group > label.active {
    top: 0.45rem;
    font-size: 0.8em;
    left: 1.5rem;
}

.c-form__input {
    background: rgba(255 255 255 / 0%);
    border: 0;
    padding: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    color: rgba(255 255 255 / 90%);
    position: relative;
    z-index: 5;
}

.c-form__error {
    position: absolute;
    top: .5rem;
    z-index: 1;
    right: 1rem;
    font-size: 0.7em;
    color: red;
}

.c-form__btn {
    padding: 1rem;
}

button.c-form__button {
    background: #FFD531;
    border: 0;
    padding: 0.75rem 2.5rem;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

button.c-form__button:hover {
    background: #A68710;
}

.p-modal {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0 0 0 / 85%);
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.p-modal__content {
    width: 80vw;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    max-height: 90vh;
    overflow-y: auto;
}

.p-modal__header {
    background: #131313;
    border-radius: 4px 4px 0 0;
    padding: 0.9rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: rgba(255 255 255 / 54%);
}

.p-modal__header > h3 {
    margin: 0;
}

.p-modal__close {
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.p-modal__close:hover {
    color: #FFFFFF;
    -webkit-transform: rotate(90deg) scale(1.5) translateY(5px);
    -ms-transform: rotate(90deg) scale(1.5) translateY(5px);
    transform: rotate(90deg) scale(1.5) translateY(5px);
}

iframe.frames {
    width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    height: 90vh;
    border-radius: 0 0 4px 4px;
}

.banner__edit {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 99;
    background: #D8A253;
    padding: 0.5rem;
    font-size: 0.8em;
    cursor: pointer;
    border-radius: 4px;
}

div#ui-datepicker-div {
    background: #131313;
    border: 0;
}

.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
    background: #050505;
    border: 0;
}

a.ui-datepicker-prev.ui-corner-all::before {
    content: '\ecc0';
    font-family: 'icomoon';
    position: absolute;
    top: 5px;
    left: 10px;
}

a.ui-datepicker-next.ui-corner-all::before {
    content: '\ecbf';
    font-family: 'icomoon';
    position: absolute;
    top: 5px;
    right: 10px;
}

.p-box {
    background: #050505;
    padding: 0.9rem;
    max-height: 80vh;
    overflow-y: auto;
}

.p-box > h4 {
    color: rgba(255 255 255 / 54%);
    margin: 0;
    padding-bottom: 1rem;
}

.p-box .js-photo__post {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.p-box__item {
    color: rgba(255 255 255 / 54%);
    padding: 1rem;
    font-size: 0.8em;
}

.p-box__panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 0.5rem;
}

.p-box .row {
    border: 1px solid #050505;
    margin-bottom: 1rem;
}

.p-box .row:hover {
    border: 1px solid rgba(255 255 255 / 10%);
}

.p-box__item > h4 {
    margin: 0;
}

.p-box.p-banned .row__col-4 {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.p-box__edit {
    cursor: pointer;
    color: #D8A253;
    opacity: 0;
    padding: 1px 5px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.p-box__edit:hover {
    background: #D8A253;
    color: #050505;
}

.p-box__delete {
    color: #890012;
    cursor: pointer;
    opacity: 0;
    padding: 1px 5px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.p-box__delete:hover {
    background: #890012;
    color: #050505;
}

.p-banned .row:hover .p-box__edit, .p-banned .row:hover .p-box__delete {
    opacity: 1;
}

.p-box__item > span {
    background: #60197E;
    padding: 1px 5px;
    border-radius: 4px;
}

.slide__items {
    position: relative;
    width: 100%;
    display: block;
}

.slide__items .container {
    width: 1200px;
    position: relative;
}

.repertoire__edit {
    color: #FFFFFF;
    padding: 1rem 0;
    cursor: pointer;
    text-align: right;
    font-size: 0.8em;
}

.row__normal {
    display: none;
}

.pay-button {
    position: fixed;
    left: 0;
    bottom: 0;
    background: #FFD531;
    text-align: center;
    width: 100%;
    font-weight: bold;
    font-size: 0.8em;
    text-transform: uppercase;
    padding: 0.9rem;
    cursor: pointer;
    display: none;
    z-index: 99;
}

header.wrap__header {
    max-width: 1200px;
    margin: auto;
    padding: 0 0.9rem;
    padding-top: 5rem;
}

.wrap {
    color: hsla(0, 0%, 100%, .54);
}

ul.news__breadcrumbs_list {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.8em;
}

ul.news__breadcrumbs_list a {
    color: #FFFFFF;
    display: inline-block;
    padding-right: 10px;
}

.banner .owl-dots {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.banner .owl-dots > button > span {
    width: 40px;
    height: 5px;
    background: rgba(255 255 255 / 35%);
    display: block;
    margin: 0.5rem;
}

.banner .owl-dots > button.active > span {
    background: rgba(255 212 52 / 75%);
}

.banner button.owl-prev {
    left: 1rem;
    top: 8rem;
}

.banner button.owl-next {
    right: 1rem;
    top: 8rem;
}

.wrap__header {
    padding-top: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255 255 255 / 10%);
}

h1.wrap__title {
    font-size: 1.27em;
    margin: 0;
    padding: 1rem;
    text-transform: uppercase;
}

.wrap__add {
    align-self: center;
    border-radius: 4px;
    font-size: 0.8em;
    cursor: pointer;
}

.row.wrap__list {
    padding: 1rem;
}

.docs {
    margin: 0.25rem;
    padding: 0.5rem;
    border: 1px solid rgba(255 255 255 / 10%);
    border-radius: 4px;
    position: relative;
}

.docs > picture {
    text-align: center;
    width: 100%;
    padding: 1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.docs > picture > img {
    max-width: 70%;
}

.docs__caption > h3 {
    font-size: 1em;
    margin: 0;
    padding: 0 0 0.5rem 0.5rem;
    border-bottom: 1px solid rgba(255 255 255 / 10%);
    min-height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.docs__caption > h3 > span {
    width: 100%;
    display: block;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-size: .8em;
}

.docs__caption-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.5rem;
}

.docs__caption-item > a {
    display: block;
    color: #FFFFFF;
    font-size: 1.2em;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.docs__caption-item > a:hover {
    color: #FFD434;
}

.docs__delete {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.docs:hover .docs__delete {
    opacity: 1;
}

.js-setting {
    position: fixed;
    z-index: 99;
}

ul.pagination.pagination-large {
    list-style: none;
    margin: 0;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

ul.pagination.pagination-large > li > a {
    background: rgba(255 255 255 / 10%);
    display: inline-block;
    border-radius: 4px;
    min-width: 40px;
    padding: 10px 0;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

ul.pagination.pagination-large > li > a:hover {
    background: rgba(255 255 255 / 35%);
}

ul.pagination.pagination-large > li.active > a {
    background: #FFD434;
    color: #050505;
}

.event .row__col-4 {
    padding: 0.45rem;
}

.row.persona, .row.c-poster {
    min-height: 100vh;
    height: auto;
    padding: 2rem 0;
    background: #131313;
}

.row.persona .row__col-3 {
    padding: 0.45rem;
}

.row.about img {
    border-radius: 4px;
}

.about__slide-item img {
    height: 60vh;
    width: 100%;
    object-fit: cover;
}

.about__slide-item {
    text-align: center;
    padding: 2rem 1rem;
}

.row.repert .row__col-4 {
    padding: 0.45rem;
}

.row.repert {
    padding: 2rem 0;
}

.item.repert__slide-item {
    position: relative;
    overflow: hidden;
}

.repert__slide-title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(5 5 5 / 95%);
    padding: 0 1rem 1rem 1rem;
}

.repert__slide-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: -20px;
    border-bottom: 20px solid rgba(5 5 5 / 95%);
    border-right: 350px solid transparent;
}

.repert__slide-data {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(60 33 130 / 95%);
    display: inline-block;
    padding: 0.7rem 1rem;
    font-size: 0.9em;
    border-radius: 4px;
    font-weight: bold;
}

a.repert__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.row__col-5 {
    max-width: 45.666667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45.666667%;
    flex: 0 0 45.666667%;
}

.row__col-7 {
    max-width: 54.333333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 54.333333%;
    flex: 0 0 54.333333%;
}

h1.repert__title {
    padding: 2rem;
    margin: 0;
    border-bottom: 1px solid rgba(255 255 255 / 10%);
}

p.repert__text {
    padding: 0 2rem;
    line-height: 25px;
}

button.repert__buttom {
    border: 0;
    background: #050505;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: bold;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

button.repert__buttom:hover {
    color: #FFD434;
}

a.back-page {
    display: inline-block;
    font-size: 0.8em;
    margin-bottom: 1rem;
    background: rgba(255 255 255 / 10%);
    color: rgba(255 255 255 / 75%);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

a.back-page:hover {
    background: rgba(255 255 255 / 25%);
    color: rgba(255 255 255 / 100%);
}

a.back-page > i {
    width: 1.25em;
}

.persona__more {
    text-align: center;
    padding: 2rem 1rem;
}

.persona__more > a {
    background: #60197E;
    color: #FFFFFF;
    display: inline-block;
    font-size: 0.9em;
    padding: 10px 30px;
    border-radius: 4px;
    margin: 10px;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.d-tab__more a {
    display: inline-block;
    padding: 1rem 2rem;
    color: #FFFFFF;
    background: #131313;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.8em;
    margin-left: 0.5rem;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.d-tab__more a:hover {
    background: #050505;
}

span.g-repert {
    padding-left: 1rem;
    font-size: 0.9em;
    color: rgba(255 255 255 / 35%);
}

.mb-1 {
    margin-bottom: 1rem;
}

p.event__action {
    padding: 0 2rem;
}

.display-close {
    display: none;
}

.p-1 > label {
    color: #FFD531;
}

.nalog {
    padding: 1rem;
}

.docs__video {
    padding: 1rem 0;
}

.docs__video > video {
    width: 100%;
}

.music {
    max-width: 100%;
    flex: 0 0 100%;
    margin: 1rem 0;
    position: relative;
    background: hsla(0, 0%, 100%, .94);
    border-radius: 4px;
    color: #131313;
}

.music__caption {
    color: #2787F5;
    font-size: .8em;
    padding: 1rem 1rem 0 1rem;
}

.mejs-container.progression-skin {
    width: 100% !important;
}

.page {
    padding: 5em 1em;
}

h1.title__text {
    font-size: 1.27em;
    margin: 0;
    padding: 1rem;
    text-transform: uppercase;
}

.title {
    border-bottom: 1px solid rgba(255 255 255 / 10%);
    margin-bottom: 2em;
}

.tool {
    position: relative;
    padding-top: 2em;
}

.tool__loader.hidden {
    opacity: 0;
}

.tool__loader {
    display: flex;
    position: absolute;
    top: 10px;
    left: 0;
    width: 50%;
    background: rgba(255 255 255 / 5%);
    padding: 0.5em;
    border-radius: 4px;
    justify-content: space-between;
    transition: .5s;
}

.c-text__doc_text a {
    color: #FFFFFF;
    font-size: .75em;
}

.c-text__doc_item img {
    max-width: 40px;
}

.c-text__doc {
    margin: 0.25rem;
    padding: 0.5rem;
    border: 1px solid rgba(255 255 255 / 10%);
    border-radius: 4px;
    position: relative;
}

.c-text__doc_item span {
    display: inline-flex;
    height: 41px;
    align-items: center;
    font-size: 1.8em;
}

.fancybox-content {
    min-height: 80vh;
}

.c-text__video video {
    width: 100%;
}
.c-text__video--text {
    color: #FFFFFF;
    padding: 0 1em;
}

@media (max-width: 1200px) {
    .slide__items .container {
        width: 100%;
        position: relative;
    }
}

@media (max-width: 1024px) {
    .menu__button {
        font-size: 0.6em;
    }
}

@media (max-width: 992px) {
    .menu__button {
        font-size: 0.6em;
    }

    .row__col-3, .event .row__col-4 {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}


@media (max-width: 768px) {
    .row__col-5, .row__col-7 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .post__data, .post__name {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        border-right: 0;
        border-bottom: 1px solid rgba(255 255 255 / 10%);
    }

    .post__name-photo {
        max-width: 20%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        -ms-flex-item-align: normal;
        -ms-grid-row-align: normal;
        align-self: normal;
        padding-top: 10px;
    }

    .post__name-item {
        max-width: 80%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
        flex: 0 0 80%;
    }

    button.post__button {
        max-width: 100%;
        flex: 0 0 100%;
        border-radius: 4px;
        font-weight: bold;
        font-size: 1em;
        text-transform: uppercase;
        margin-top: 0.5rem;
    }

    .post__caption span {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .post__caption {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 10px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    span.post__age {
        margin: 0;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .post__list {
        margin-bottom: 2rem;
    }

    nav.navbar .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .pay-button {
        display: block;
    }

    .p-modal__content, .d-modal__content {
        width: 100%;
    }

    .navbar__logo {
        display: block;
        max-width: 20%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    }

    .burger {
        display: block;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .menu__logo, .menu__border::after {
        display: none;
    }

    .menu {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 9999;
        background: #181818;
        background: -o-linear-gradient(45deg, #030303, #101010, #181818);
        background: linear-gradient(45deg, #030303, #101010, #181818);
        width: 100%;
        max-width: 100%;
        padding: 1rem;
    }

    .menu.open {
        display: block;
    }

    .burger i {
        position: relative;
        width: 30px;
        height: 3px;
        background: #FFFFFF;
        display: block;
        opacity: 0.74;
        margin-bottom: 4px;
        -webkit-transition: .7s;
        -o-transition: .7s;
        transition: .7s;
    }

    nav.navbar {
        background: rgba(3 3 3 / 95%);
    }

    .burger i:last-child {
        margin-bottom: 0;
    }

    .burger.open > i:first-child {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 7px;
    }

    .burger.open > i:nth-child(2) {
        opacity: 0;
    }

    .burger.open > i:last-child {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: -7px;
    }

    .menu__item, .menu__item.menu__items.menu__ticket {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    a.menu__link {
        display: block;
        padding: 0.9rem;
        font-size: 1.17em;
        letter-spacing: 0;
    }

    .menu__button {
        margin: 1rem;
        font-size: 1em;
        font-weight: bold;
    }

    .slide__data {
        bottom: auto;
        top: 1rem;
        right: 1rem;
        z-index: 1;
        width: calc(100% - 2rem);
    }

    .active .slide__data {
        top: -50vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        right: auto;
        left: 1rem;
    }

    .slide__item {
        width: 100%;
        padding: 1rem 1rem 2rem 1rem;
    }

    .slide img {
        -o-object-position: center;
        object-position: center;
    }

    .slider, .slide, #viewport, .slide img, .banner {
        height: 90vh;
        background: #050505;
    }

    .c-poster .container {
        padding: 0;
    }

    .post.c-poster__post {
        padding: 1rem 0.2rem;
    }

    .event {
        padding: 5rem 0;
    }

    .event .container {
        padding: 0;
    }

    .event__text {
        position: relative;
        padding: 0 0.9rem;
    }

    .event__slide-title {
        padding: 0.9rem 0.9rem 0 0.9rem;
        font-size: 1.17em;
        font-weight: 500;
    }

    .event__slide-data {
        padding: 0.25rem 0.9rem;
        font-size: 0.9em;
    }

    .version {
        width: auto;
        top: 55px;
    }

    span.slide__data-text {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        background: #050505;
        width: 80px;
        text-align: center;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 0 4px 4px 0;
    }

    span.slide__data-header {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        width: calc(100% - 150px);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .active h2.slide__title {
        top: 0;
    }

    .active p.slide__text {
        top: 0;
    }

    h2.slide__title {
        text-transform: uppercase;
        font-size: 1.17em;
    }

    p.slide__text {
        font-size: 0.8em;
        padding-right: 2rem;
    }

    .c-about .container {
        padding: 0;
    }

    .c-about__photo, .c-about__caption {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .c-about__photo::after {
        border-top: 0;
        border-bottom: 100px solid #050505;
        border-right: 50vw solid transparent;
        border-left: 0;
        top: auto;
        bottom: 0;
        left: 0;
        right: auto;
    }

    .c-about__photo::before {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        border-bottom: 100px solid #050505;
        border-left: 50vw solid transparent;
        z-index: 9;
    }

    .c-about__caption {
        -webkit-transform: translateY(-1px);
        -ms-transform: translateY(-1px);
        transform: translateY(-1px);
        position: relative;
        z-index: 99;
        height: auto;
    }

    div#map {
        height: 300px;
    }

    .d-tab__text {
        padding: 1rem;
    }

    h3.d-tab__title, p.d-tab__text {
        padding: 0;
    }

    .repertoire .container, .repertoire__item {
        padding: 0;
    }

    .slide img {
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;
    }

    .social {
        transform: scale(.7);
        right: 5px;
        top: 78%;
    }

    .d-tab__photo {
        height: auto;
    }

    .d-tab__photo img {
        height: auto;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .d-tab__button {
        margin: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .d-tab__more a {
        width: 100%;
        text-align: center;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0;
    }

    .c-contact .container {
        padding: 0;
    }

    h2.c-contact__title::after {
        display: none;
    }

    .c-contact__list {
        margin-top: 2px;
    }

    .slide__data > strong {
        width: 60px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background: #B72E3E;
        border-radius: 4px;
        -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
        transform: scale(1.15);
    }

    p.c-about__text-item, p.about__text-item {
        padding: 1rem 2rem;
    }

    .active span.slide__ribbon {
        top: -55vh;
    }

    .c-about__text, .about__text {
        padding: 1rem 0;
    }

    .c-text p {
        padding: 0;
    }

    a.slide__link {
        -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px);
    }

    .post__data {
        background: #60197E;
        color: #FFFFFF;
    }

    .post__data-number {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    .post__data-number > span {
        top: calc(100% - 15px);
    }

    .post__name a {
        display: block;
        text-align: center;
    }

    p.post__name-text {
        width: 100%;
        height: 56px;
        overflow: hidden;
        position: relative;
    }

    .event .row__col-4 {
        padding: 0.45rem;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .row__col-3.m-t {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 460px) {

    .c-text.row__col-3 {
        width: 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

@media (max-height: 460px) {

    .c-text.row__col-3 {
        width: 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .navbar__logo img {
        height: 50px;
    }

    .active span.slide__ribbon {
        top: -50vh;
    }

    .slide__item {
        padding: 1rem;
    }

    a.menu__link {
        font-size: 1em;
        padding: .7rem;
    }

    .menu.open {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .menu__item {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .menu__item.menu__items {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .slide__caption {
        font-size: 0.8em;
    }

    .slide__data {
        width: 100px;
        -webkit-transform: scale(0.75);
        -ms-transform: scale(0.75);
        transform: scale(0.75);
    }

    .active .slide__data {
        top: -7rem;
    }
}

::-webkit-scrollbar {
    position: relative;
    z-index: 99999;
    width: 8px;
    height: 6px;
    background-color: rgba(0 0 0 / 15%);
}

::-webkit-scrollbar-thumb {
    position: relative;
    z-index: 99999;
    background-color: #FFD531;
    border-radius: 4px;
    -webkit-box-shadow: inset 1px 1px 10px rgba(42 42 42 / 50%);
    box-shadow: inset 1px 1px 10px rgba(42 42 42 / 50%);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(128 128 128 / 75%);
}