@charset "UTF-8";
.skewed-button {
    display: block;
    width: 200px;
    height: 50px;
    background: #931B0E;
    border: 2px solid #931B0E;
    color: #FFF;
    font-family: "OpenSans Bold";
    font-size: 12px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    transform-origin: 50% 100%;
    transform: skewX(-15deg);
    transition: background 0.3s ease;
}

.skewed-button-bordered {
    display: block;
    position: relative;
    height: 55px;
    width: 210px;
    transform-origin: 50% 100%;
    transform: skewX(-15deg);
}

.skewed-button-bordered .skewed-button {
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: 100% 100%;
    transform: skewX(0deg);
}

.skewed-button-bordered .skewed-button:hover {
    background: rgba(0, 0, 0, 0);
    color: #931B0E;
}

.skewed-button-bordered:hover:before {
    left: 0;
    bottom: 0;
}

.skewed-button-bordered:before {
    box-sizing: border-box;
    position: absolute;
    left: 10px;
    bottom: 6px;
    display: block;
    width: 200px;
    height: 50px;
    border: 2px solid #999;
    content: '';

    transition: left 0.3s ease, bottom 0.3s ease;
}

.skewed-button span {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    transform: skewX(15deg);
    transition: color 0.3s ease;
}

.skewed-button span a {
    text-decoration: none;
    color: white;
}

.skewed-button span a:hover {
    text-decoration: none;
    color: #931B0E;
}

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 {
    box-sizing: border-box;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ul,
ol {
    list-style-type: none;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    background: transparent;
    border: 0;
    border-radius: 0;
    cursor: pointer;
}

button:focus, button:active {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
}

a {
    cursor: pointer;
    text-decoration: none;
}

@font-face {
    font-family: 'Oswald Regular';
    src: url("../../../fonts/Oswald-Regular.ttf");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'Oswald Medium';
    src: url("../../../fonts/Oswald-Medium.ttf");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: 'Oswald Bold';
    src: url("../../../fonts/Oswald-Bold.ttf");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: 'OpenSans Light';
    src: url("../../../fonts/OpenSans-Light.ttf");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: 'OpenSans Regular';
    src: url("../../../fonts/OpenSans-Regular.ttf");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'OpenSans SemiBold';
    src: url("../../../fonts/OpenSans-SemiBold.ttf");
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: 'OpenSans Bold';
    src: url("../../../fonts/OpenSans-Bold.ttf");
    font-style: normal;
    font-weight: 700;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes Up {
    from {
        transform: translateY(101%);
    }
    to {
        transform: none;
    }
}

@keyframes Down {
    from {
        transform: translateY(-101%);
    }
    to {
        transform: none;
    }
}

@keyframes Left {
    from {
        transform: translateX(101%);
    }
    to {
        transform: none;
    }
}

@keyframes Right {
    from {
        transform: translateX(-101%);
    }
    to {
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(101%);
        opacity: 0;
    }
    to {
        transform: none;
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        transform: translateY(-101%);
        opacity: 0;
    }
    to {
        transform: none;
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        transform: translateX(101%);
        opacity: 0;
    }
    to {
        transform: none;
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        transform: translateX(-101%);
        opacity: 0;
    }
    to {
        transform: none;
        opacity: 1;
    }
}

@keyframes fadeOutUp {
    from {
        transform: translateY(101%);
        opacity: 1;
    }
    to {
        transform: none;
        opacity: 0;
    }
}

@keyframes fadeOutDown {
    from {
        transform: translateY(-101%);
        opacity: 1;
    }
    to {
        transform: none;
        opacity: 0;
    }
}

@keyframes fadeOutLeft {
    from {
        transform: translateX(101%);
        opacity: 1;
    }
    to {
        transform: none;
        opacity: 0;
    }
}

@keyframes fadeOutRight {
    from {
        transform: translateX(-101%);
        opacity: 1;
    }
    to {
        transform: none;
        opacity: 0;
    }
}

@keyframes toUp {
    from {
        transform: none;
    }
    to {
        transform: translateY(-101%);
    }
}

@keyframes toDown {
    from {
        transform: none;
    }
    to {
        transform: translateY(101%);
    }
}

@keyframes toLeft {
    from {
        transform: none;
    }
    to {
        transform: translateX(-101%);
    }
}

@keyframes toRight {
    from {
        transform: none;
    }
    to {
        transform: translateX(101%);
    }
}

@keyframes fadeInToUp {
    from {
        transform: none;
        opacity: 0;
    }
    to {
        transform: translateY(-101%);
        opacity: 1;
    }
}

@keyframes fadeInToDown {
    from {
        transform: none;
        opacity: 0;
    }
    to {
        transform: translateY(101%);
        opacity: 1;
    }
}

@keyframes fadeInToLeft {
    from {
        transform: none;
        opacity: 0;
    }
    to {
        transform: translateX(-101%);
        opacity: 1;
    }
}

@keyframes fadeInToRight {
    from {
        transform: none;
        opacity: 0;
    }
    to {
        transform: translateX(101%);
        opacity: 1;
    }
}

@keyframes fadeOutToUp {
    from {
        transform: none;
        opacity: 1;
    }
    to {
        transform: translateY(-101%);
        opacity: 0;
    }
}

@keyframes fadeOutToDown {
    from {
        transform: none;
        opacity: 1;
    }
    to {
        transform: translateY(101%);
        opacity: 0;
    }
}

@keyframes fadeOutToLeft {
    from {
        transform: none;
        opacity: 1;
    }
    to {
        transform: translateX(-101%);
        opacity: 0;
    }
}

@keyframes fadeOutToRight {
    from {
        transform: none;
        opacity: 1;
    }
    to {
        transform: translateX(101%);
        opacity: 0;
    }
}

@keyframes widthToParent {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes heightToParent {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

@keyframes widthToScreen {
    from {
        width: 0;
    }
    to {
        width: 100vw;
    }
}

@keyframes heightToScreen {
    from {
        height: 0;
    }
    to {
        height: 100vh;
    }
}

@keyframes widthFromParent {
    from {
        width: 100%;
    }
    to {
        width: 0;
    }
}

@keyframes heightFromParent {
    from {
        height: 100%;
    }
    to {
        height: 0;
    }
}

@keyframes widthFromScreen {
    from {
        width: 100vw;
    }
    to {
        width: 0;
    }
}

@keyframes heightFromScreen {
    from {
        height: 100vh;
    }
    to {
        height: 0;
    }
}

@keyframes pulse {
    0%,
    30%,
    60%,
    100% {
        transform: scale(1);
    }
    40%,
    50% {
        transform: scale(1.08);
    }
    50%,
    80% {
        transform: scale(0.95);
    }
}

@keyframes rightAndHalfDown {
    from {
        transform: translate3d(-101%, 0, 0);
    }
    50% {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(0, 50%, 0);
    }
}

@keyframes flyUp {
    0% {
        opacity: 0;
        transform: translateY(90vh);
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes goUp {
    0% {
        transform: none;
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-90vh);
    }
}

@keyframes cow {
    0% {
        top: 100%;
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        top: -10%;
        opacity: 0;
    }
}

@keyframes pulseBuyTicket {
    from {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    50% {
        width: 120%;
        height: 120%;
        opacity: 0;
    }
    to {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}

/*preloader start*/

.preloader {
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 100vh;
    position: relative;
    background: #1a4170;
    overflow: hidden;
    z-index: 50;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.preloader .animationlogo {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    box-shadow: 0px 0px 1px 1px rgba(245, 212, 100, 0.64);
    z-index: 7;
}

.preloader .animationlogo img {
    position: relative;
    z-index: 4;
    width: 100%;
}

.preloader .animationlogo:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 20;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 180px 180px 0;
    border-color: transparent rgba(0, 123, 255, 0.03) transparent transparent;
    animation: triangleAnimate 2s ease-in-out infinite alternate;
}

.preloader .animationlogo .light {
    display: block;
    width: 5px;
    height: 2px;
    border-radius: 50%;
    background: #f4e668;
    position: absolute;
    box-shadow: 0px 0px 9px 3px #f09339;
    top: -2px;
    left: -2px;
    animation: Move 4s ease-in-out infinite;
    z-index: 1;
}

.preloader .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 6;
    width: 100%;
    background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.4) 0%, black 100%);
    animation: Gradient 2s ease-in-out infinite alternate;
}

@keyframes Gradient {
    0% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.5) 0%, black 100%);
    }
    5% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.51) 0%, black 100%);
    }
    10% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.52) 0%, black 100%);
    }
    15% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.53) 0%, black 100%);
    }
    20% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.54) 0%, black 100%);
    }
    25% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.55) 0%, black 100%);
    }
    30% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.56) 0%, black 100%);
    }
    35% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.57) 0%, black 100%);
    }
    40% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.58) 0%, black 100%);
    }
    45% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.59) 0%, black 100%);
    }
    50% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.6) 0%, black 100%);
    }
    55% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.61) 0%, black 100%);
    }
    60% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.62) 0%, black 100%);
    }
    65% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.63) 0%, black 100%);
    }
    70% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.64) 0%, black 100%);
    }
    75% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.65) 0%, black 100%);
    }
    80% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.66) 0%, black 100%);
    }
    85% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.67) 0%, black 100%);
    }
    90% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.68) 0%, black 100%);
    }
    95% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.69) 0%, black 100%);
    }
    100% {
        background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.7) 0%, black 100%);
    }
}

@keyframes OpacityLogo {
    0% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
    }
}

@keyframes triangleAnimate {
    0% {
        border-color: transparent rgba(3, 34, 66, 0.3) transparent transparent;
    }
    100% {
        border-color: transparent rgba(0, 123, 255, 0) transparent transparent;
    }
}

@keyframes Move {
    0% {
        top: -2px;
        left: -2px;
        width: 4px;
        height: 2px;
        box-shadow: 0px 0px 9px 3px #fdcf04;
    }
    25% {
        top: 0;
        left: calc(100% - 0.5px);
        width: 2px;
        height: 4px;
        box-shadow: 0px 0px 9px 3px #f09339;
    }
    50% {
        top: calc(100% - 2px);
        left: calc(100% - 2px);
        width: 4px;
        height: 2px;
        box-shadow: 0px 0px 9px 3px #fdcf04;
    }
    75% {
        top: calc(100% - 2px);
        left: -2px;
        width: 2px;
        height: 4px;
        box-shadow: 0px 0px 9px 3px #f09339;
    }
    100% {
        top: -2px;
        left: -2px;
    }
}

.preloader .container {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 550px;
}

.preloader .container .border, .preloader .container .border2 {
    width: 262px;
    z-index: 1;
    height: 100%;
    animation: opacityAnimation 2s ease-in-out infinite alternate;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(5, 5, 5, 0) 100%);
}

.preloader .container .border {
    position: relative;
    top: 0;
    margin: 0 auto;
    bottom: 0;
    transform: skew(-24deg);
}

.preloader .container .border2 {
    position: absolute;
    left: 70px;
    margin: 0 auto;
    bottom: 0;
    width: 262px;
    transform: skew(24deg);
}

@media (max-width: 400px) {
    .preloader .container {
        display: none;
    }
}

@keyframes opacityAnimation {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*preloader end*/

b, strong {
    font-family: 'OpenSans Bold';
}

i, em {
    font-style: italic;
}


.main-menu {
    position: absolute;
    top: 0;
    right: 0;
    height: 116px;
    width: 116px;
    overflow: hidden;
}

.main-menu .open-close-menu {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    padding: 40px 35px 0;
    width: 116px;
    height: 116px;
    background: #333;
    color: #666;
    font-family: "Oswald Regular";
    transition: background 0.15s;
}

.main-menu .open-close-menu:hover .row--1 .inner-row--1 {
    animation-delay: 0s;
}

.main-menu .open-close-menu:hover .row--1 .inner-row--2 {
    animation-delay: 0.4s;
}

.main-menu .open-close-menu:hover .row--2 .inner-row--1 {
    animation-delay: 0.0666666667s;
}

.main-menu .open-close-menu:hover .row--2 .inner-row--2 {
    animation-delay: 0.4666666667s;
}

.main-menu .open-close-menu:hover .row--3 .inner-row--1 {
    animation-delay: 0.2s;
}

.main-menu .open-close-menu:hover .row--3 .inner-row--2 {
    animation-delay: 0.6s;
}

.main-menu .open-close-menu:hover .inner-row--1 {
    animation: toRight 0.3s linear forwards;
}

.main-menu .open-close-menu:hover .inner-row--2 {
    animation: Right 0.3s linear forwards;
}

.main-menu .hamburger {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    height: 25px;
}

.main-menu .row {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 3px;
    overflow: hidden;
    transition: top 0.15s, left 0.15s, width 0.15s, transform 0.15s;
}

.main-menu .row--1 {
    top: 0;
}

.main-menu .row--2 {
    top: 50%;
}

.main-menu .row--3 {
    top: 100%;
}

.main-menu .inner-row {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
}

.main-menu .inner-row--2 {
    transform: translateX(-100%);
}

.main-menu .text {
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    transition: opacity 0.15s, color 0.15s;
}

.main-menu .light {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    width: 380px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(242, 173, 55, 0.75) 0%, rgba(242, 173, 55, 0.35) 80%, rgba(0, 0, 0, 0) 100%);
    transform: translateY(100%);
}

.main-menu .menu {
    position: absolute;
    top: 116px;
    right: 0;
    z-index: 4;
    padding: 40px 55px 0;
    width: 380px;
}

.main-menu .menu li {
    margin-bottom: 4vh;
}

.main-menu .menu a {
    position: relative;
    color: #FFF;
    font-family: "Oswald Bold";
    font-size: 24px;
    text-transform: uppercase;
    transition: color 0.15s ease-in;
}

.main-menu .menu a:before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FFF;
    content: '';
    transition: left 0.3s, width 0.3s;
}

.main-menu .menu a:hover:before {
    left: 0;
    width: 100%;
}

.main-menu .menu a.disabled {
    pointer-events: none;
    color: #931B0E;
}

.main-menu .cow {
    position: absolute;
    top: 100%;
    right: 190px;
    z-index: 4;
    width: 140px;
    height: 110px;
}

.main-menu .cow img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(20deg);
}

.main-menu .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.15s;
}

.main-menu.opened, .main-menu.closed {
    width: 100vw;
    height: 100vh;
    transition: width 0s, height 0s;
}

.main-menu.opened .open-close-menu, .main-menu.closed .open-close-menu {
    background: rgba(0, 0, 0, 0);
}

.main-menu.opened .text, .main-menu.closed .text {
    opacity: 0;
}

.main-menu.opened .row, .main-menu.closed .row {
    height: 3px;
}

.main-menu.opened .row--1, .main-menu.opened .row--3, .main-menu.closed .row--1, .main-menu.closed .row--3 {
    top: 50%;
    left: 25%;
    width: 50%;
    transform: rotate(45deg);
}

.main-menu.opened .row--2, .main-menu.closed .row--2 {
    width: 0;
}

.main-menu.opened .row--3, .main-menu.closed .row--3 {
    transform: rotate(-45deg);
}

.main-menu.opened .background, .main-menu.closed .background {
    opacity: 1;
}

.main-menu.opened .light {
    animation: Down 0.9s both;
}

.main-menu.opened .menu li {
    animation: flyUp 0.7s cubic-bezier(0, 0.75, 0.49, 0.99) both;
}

.main-menu.opened .menu li:nth-of-type(1) {
    animation-delay: 0.9s;
}

.main-menu.opened .menu li:nth-of-type(2) {
    animation-delay: 1.05s;
}

.main-menu.opened .menu li:nth-of-type(3) {
    animation-delay: 1.2s;
}

.main-menu.opened .menu li:nth-of-type(4) {
    animation-delay: 1.35s;
}

.main-menu.opened .menu li:nth-of-type(5) {
    animation-delay: 1.5s;
}

.main-menu.opened .menu li:nth-of-type(6) {
    animation-delay: 1.65s;
}

.main-menu.opened .menu li:nth-of-type(7) {
    animation-delay: 1.8s;
}

.main-menu.opened .menu li:nth-of-type(8) {
    animation-delay: 1.95s;
}

.main-menu.opened .menu li:nth-of-type(9) {
    animation-delay: 2.10s;
}

.main-menu.opened .menu li:nth-of-type(10) {
    animation-delay: 2.25s;
}

.main-menu.closed .light {
    animation: toUp 0.9s 2.25s both;
}

.main-menu.closed .menu li {
    animation: goUp 0.7s cubic-bezier(0.95, 0.01, 0.98, 0.7) both;
}

.main-menu.closed .menu li:nth-of-type(1) {
    animation-delay: 0s;
}

.main-menu.closed .menu li:nth-of-type(2) {
    animation-delay: 0.15s;
}

.main-menu.closed .menu li:nth-of-type(3) {
    animation-delay: 0.3s;
}

.main-menu.closed .menu li:nth-of-type(4) {
    animation-delay: 0.45s;
}

.main-menu.closed .menu li:nth-of-type(5) {
    animation-delay: 0.6s;
}

.main-menu.closed .menu li:nth-of-type(6) {
    animation-delay: 0.75s;
}

.main-menu.closed .menu li:nth-of-type(7) {
    animation-delay: 0.9s;
}

.main-menu.closed .menu li:nth-of-type(8) {
    animation-delay: 1.05s;
}

.main-menu.closed .menu li:nth-of-type(9) {
    animation-delay: 1.20s;
}

.main-menu.closed .menu li:nth-of-type(10) {
    animation-delay: 1.35s;
}

.main-menu.closed .cow {
    animation: cow 0.9s 1.5s cubic-bezier(0.95, 0.01, 0.98, 0.7) both;
}

.header-page {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    z-index: 6;
    width: 100%;
    min-width: 320px;
    height: 116px;
    background: #000;
}

.header-page .logo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 116px;
    height: 116px;
}

.header-page .logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.header-page .optional-panel {
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    width: 61%;
    max-width: 1170px;
}

.header-page .options,
.header-page .enter {
    -ms-flex: 1 0;
    flex: 1 0;
    position: relative;
}

.header-page .options:before,
.header-page .enter:before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #333;
    content: '';
}

.header-page .languages,
.header-page .socials {
    padding-left: 15px;
    cursor: default;
}

.header-page .languages,
.header-page .go-to-cabinet {
    padding-bottom: 15px;
}

.header-page .languages a,
.header-page .go-to-cabinet a {
    margin-left: 10px;
    color: #FFF;
    font-family: "Oswald Medium";
    font-size: 18px;
    text-transform: uppercase;
    transition: color 0.15s;
}

.header-page .languages a:hover,
.header-page .go-to-cabinet a:hover {
    color: #999;
}

.header-page .languages a:first-of-type,
.header-page .go-to-cabinet a:first-of-type {
    margin-left: 0;
}

.header-page .languages a.disabled,
.header-page .go-to-cabinet a.disabled {
    color: #999;
    pointer-events: none;
}

.header-page .socials {
    flex: 1 0;
    display: flex;
    justify-content: flex-end;
}

.header-page .socials a {
    margin-right: 10px;
}

.header-page .socials a:hover svg {
    fill: #FFF;
}

.header-page .socials svg {
    width: 16px;
    height: 16px;
    fill: #999;
    transition: fill 0.15s;
}

.socials a.youtube svg,
.socials a.vk svg {
    height: 20px;
    margin-top: -2px;
    width: auto;
}

.header-page .buy-ticket {
    position: relative;
    width: 310px;
    height: 44px;
}

.header-page .buy-ticket .skewed-button {
    margin: -3px auto 0;
    transform-origin: 50% 50%;
}

.header-page .buy-ticket .skewed-button:hover {
    background: #FFF;
    color: #931B0E;
}

.header-page .buy-ticket:before, .header-page .buy-ticket:after {
    display: block;
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: #333;
    content: '';
    transform: rotate(15deg);
}

.header-page .buy-ticket:before {
    left: 0;
}

.header-page .buy-ticket:after {
    right: 0;
}

.header-page .go-to-cabinet {
    padding-right: 15px;
    text-align: right;
}

.header-page .go-to-cabinet img {
    display: none;
}

.header-page--index {
    position: -webkit-sticky;
    position: sticky;
    z-index: 20;
    top: 0;
}

.header-page--index .main-menu {
    position: fixed;
}

.header-page--index .main-menu.indexed .open-close-menu {
    background: rgba(0, 0, 0, 0);
}

.header-page--index .main-menu.indexed .text {
    color: rgba(0, 0, 0, 0);
}

.background-page {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    min-height: 100vh;
    font-size: 0;
    will-change: transform;
    background-position-x: center;
    -webkit-background-size: 100%;
    background-size: 100%;
}

.background-page img {
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
}

.wrapper {
    padding: 116px 0 50px;
}

.container {
    margin: 0 auto;
    width: 61%;
}

.content-container {
    margin-top: 70px;
    padding: 30px 0 0;
    background: #FFF;
}

.content {
    color: #333;
}

.content p {
    margin-bottom: 25px;
    font-family: "OpenSans Regular";
    font-size: 16px;
    line-height: 1.3;
}

.content p.capital-letter:first-letter {
    float: left;
    padding-right: 30px;
    color: #931B0E;
    font-family: "OpenSans Bold";
    font-size: 100px;
    line-height: 1;
}

.content blockquote {
    margin: 70px 0;
    padding: 20px 40px;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    color: #931B0E;
    font-family: "OpenSans Light";
    font-size: 24px;
    font-style: italic;
    line-height: 1.3;
}

.content ul,
.content ol {
    margin: 10px 0;
    padding: 10px 20px;
    font-family: "OpenSans Regular";
    font-size: 16px;
    line-height: 1.3;
    list-style-type: initial;
}

.content ul li,
.content ol li {
    margin-bottom: 15px;
}

.content ul ul,
.content ul ol,
.content ol ul,
.content ol ol {
    margin-top: 30px;
    padding-left: 90px;
}

.content ol {
    list-style-type: decimal;
}

.content a {
    text-decoration: underline;
}

.content a:hover {
    text-decoration: none;
}

.content a.link {
    color: #931B0E;
}

.content table {
    margin: 100px 0;
}

.content table caption {
    margin-bottom: 15px;
    color: #999;
    font-family: "Oswald Bold";
    font-size: 36px;
    text-align: left;
}

.content table tr {
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #999;
    color: #333;
}

.content table tr:last-child {
    border-bottom: 0;
}

.content table th {
    min-width: 140px;
    font-family: "Oswald Bold";
    font-size: 24px;
}

.content table td {
    -ms-flex: 1 0;
    flex: 1 0;
    padding: 0 60px;
    font-family: "OpenSans Regular";
    font-size: 16px;
    line-height: 1.3;
}

.content table td:last-child {
    -ms-flex: initial;
    flex: initial;
    padding: 0;
    min-width: 35px;
    color: #999;
    font-family: "Oswald Bold";
}

.content img {
    width: 100%;
}

.content .block-title,
.content .text-title {
    display: block;
    margin: 70px 0 40px;
    font-family: "Oswald Bold";
    font-size: 30px;
    line-height: 1.3;
    text-transform: uppercase;
}

.content .text-title {
    font-size: 24px;
    text-transform: initial;
}

.content .map {
    width: 100%;
    height: 450px;
    background: #666;
}

.content-wrapper .map img {
    display: block;
    margin: 0;
}

.content .plan {
    font-size: 0;
    margin-bottom: 20px;
}

.content .top-block {
    position: relative;
    margin-top: 15px;
    width: 100%;
    height: 620px;
    overflow: hidden;
}

.content .top-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.content .top-block-title {
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: 100%;
    padding: 160px 18% 55px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
}

.content .top-block-title-text {
    display: block;
    width: 80%;
    color: #FFF;
    font-family: "Oswald Bold";
    font-size: 48px;
    line-height: 1.2;
    text-transform: uppercase;
}

.content .top-block:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    content: '';
}

.content .share-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin: 80px 0 20px;
}

.content .share-block .likes {
    padding-left: 10px;
    min-width: 70px;
    cursor: pointer;
    color: #333;
    font-family: "OpenSans Regular";
    font-size: 14px;
    text-align: center;
}

.content .share-block .likes img {
    display: none;
    margin: 0;
    width: 60px;
    height: 50px;
    object-fit: cover;
}

.content .share-block .likes span:before {
    content: '♡  ';
}

.content .share-block .likes:hover {
    color: #931B0E;
}

.content .share-block .likes.liked {
    cursor: default;
}

.content .share-block .likes.liked img {
    display: block;
}

.content .share-block .likes.liked span {
    display: none;
}

.content .share-block .other-news {
    padding: 20px 0;
    width: 60%;
    color: #333;
    border-right: 1px solid #666;
    border-left: 1px solid #666;
    font-family: "OpenSans SemiBold";
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.content .share-block .other-news:hover {
    color: #999;
}

.content .author-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 40px 0 20px;
    color: #999;
    font-family: "OpenSans Regular";
    font-size: 14px;
}

.content .bottom-panel {
    margin-top: 100px;
}

.content .bottom-panel .skewed-button-bordered {
    margin: 0 auto;
}

.content .bottom-line {
    width: 100%;
    height: 15px;
    background: #931B0E;
}

.content .crossed-block {
    margin: 50px 0;
    width: 100%;
    height: 70px;
    background: url("../images/cross-title.png");
}

.content .tags-block {
    padding: 10px 0 30px;
}

.content .tags ul {
    padding: 0;
    padding-left: 40px;
}

.content .tags ul li {
    margin-bottom: 0;
}

.content .error {
    padding: 18vh 0;
    text-align: center;
}

.content .error-title {
    color: #333;
    font-family: "Oswald Bold";
    font-size: 40px;
}

.content .error-title span {
    display: block;
    margin-bottom: 20px;
    font-size: 180px;
}

.content .error .skewed-button-bordered {
    margin: 70px auto 0;
}

.content-wrapper {
    padding: 0 18% 30px;
}

.content-wrapper img {
    display: block;
    margin: 80px 0;
}

#substrate {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.popup {
    position: relative;
    top: 150px;
    margin: 0 auto;
    padding-bottom: 100px;
    width: 50%;
}

.popup .close-btn {
    display: block;
    position: -webkit-sticky;
    position: sticky;
    top: 25px;
    z-index: 2;
    margin-left: auto;
    width: 50px;
    height: 50px;
    background: #FFF;
    border: 1px solid #999;
    border-radius: 50%;
    color: #333;
    cursor: pointer;
    font-family: "Oswald Regular";
    font-size: 25px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    transform: translate3d(50%, 50%, 0);
}

.popup-content {
    position: relative;
    z-index: 1;
    background: #FFF;
}

.popup-content .top-block {
    margin-top: 0;
}

.popup-content .top-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.popup-content .top-block-title {
    padding: 160px 10% 55px;
}

.popup .page-title {
    margin-bottom: 110px;
    padding: 5px 10%;
}

.popup .page-title-container {
    padding-top: 90px;
}

.popup-content-wrapper {
    padding: 0 10%;
}

.popup-content-wrapper img {
    display: block;
    margin: 30px 0;
    width: 100%;
}

.footer-page {
    position: relative;
    z-index: 5;
    padding-bottom: 20px;
    padding-top: 50px;
}

.footer-page .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
    width: 61%;
    max-width: 1170px;
    color: #999;
    font-family: "OpenSans Light";
    font-size: 14px;
}

.footer-page .bottom-menu li {
    margin-bottom: 10px;
}

.footer-page .bottom-menu a {
    color: #999;
    transition: color 0.3s;
}

.footer-page .bottom-menu a:hover {
    color: #FFF;
}

.footer-page .phones a {
    display: block;
    margin-bottom: 14px;
    color: #FFF;
    transition: color 0.3s;
}

.footer-page .phones a:hover {
    color: #999;
}

.footer-page .phones a:last-of-type {
    margin-bottom: 0;
}

.footer-page .e-mail {
    display: block;
    margin-top: 80px;
    color: #999;
    transition: color 0.3s;
}

.footer-page .e-mail:hover {
    color: #FFF;
}

.footer-page .socials {
    margin-top: 20px;
}

.footer-page .socials a {
    margin-right: 15px;
}

.footer-page .socials a:hover svg {
    fill: #FFF;
}

.footer-page .socials a:last-of-type {
    margin-right: 0;
}

.footer-page .socials svg {
    width: 16px;
    height: 16px;
    fill: #999;
    transition: fill 0.15s;
}

.footer-page .buy-ticket {
    width: 260px;
}

.footer-page .buy-ticket p {
    line-height: 1.3;
}

.footer-page .buy-ticket .skewed-button {
    margin-top: 40px;
    background: #FFF;
    border: 2px solid #FFF;
    color: #333;
}

.footer-page .buy-ticket .skewed-button:hover {
    background: #333;
    color: #FFF;
}

.footer-page .bottom-panel {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 130px;
    padding: 0 90px 15px;
    color: #999;
    font-family: "OpenSans Regular";
    font-size: 12px;
}

.footer-page .clock-logo {
    height: 30px;
    color: #999;
}

.footer-page .clock-logo svg {
    display: inline-block;
    vertical-align: sub;
    margin-left: 15px;
    width: 70px;
    height: 30px;
    fill: #999;
}

.bread-crumbs {
    padding: 0 30px;
}

.bread-crumbs li {
    display: inline-block;
}

.bread-crumbs li:last-of-type a {
    pointer-events: none;
    color: #999;
    text-decoration: none;
}

.bread-crumbs li:last-of-type a:after {
    display: none;
}

.bread-crumbs a {
    position: relative;
    margin-right: 26px;
    color: #333;
    font-family: "Oswald Regular";
    font-size: 14px;
    line-height: 24px;
    text-decoration: underline;
}

.bread-crumbs a:after {
    position: absolute;
    right: -20px;
    color: #333;
    content: '→';
}

.bread-crumbs a:hover {
    color: #999;
    text-decoration: none;
}

.page-title {
    margin: 15px 0 50px;
    padding: 5px 30px;
    background: url("../images/cross-title.png");
    color: #333;
    font-family: "Oswald Bold";
    font-size: 48px;
    line-height: 1.1;
    text-transform: uppercase;
}

.tags {
    padding: 15px 0 10px;
    width: 100%;
    background: #FFF;
}

.tags ul {
    position: relative;
    padding-left: 40px;
}

.tags ul:before {
    position: absolute;
    top: 2px;
    left: 20px;
    color: #999;
    content: '#';
}

.tags li {
    display: inline-block;
    font-size: 0;
}

.tags a {
    margin-right: 30px;
    color: #333;
    font-family: "Oswald Regular";
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
    text-transform: uppercase;
}

.tags a:hover {
    color: #999;
    text-decoration: none;
}

.tags a.selected {
    pointer-events: none;
    color: #999;
    text-decoration: none;
}

.tags-title {
    display: block;
    font-family: "Oswald Bold";
    font-size: 24px;
    text-transform: uppercase;
}

.feed {
    padding: 30px 0 0;
    background: #FFF;
}

.feed-title {
    padding: 0 15px 0 40px;
}

.feed-title .page-title {
    margin-top: 15px;
}

.feed-newsline {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 35px;
    padding-bottom: 100px;
}

.feed-newsline:hover .feed-item-photo {
    filter: brightness(50%);
}

.feed-newsline:hover .feed-item:hover .feed-item-photo {
    filter: none;
}

.feed-item {
    position: relative;
    margin: 15px;
    background: #F8F8F8;
    border-radius: 5px;
    overflow: hidden;
    transition: filter 0.3s;
}

.feed-item-photo {
    width: 100%;
    height: 245px;
    transition: filter 0.3s;
}

.feed-item-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-item-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    padding: 0 15px 20px;
    width: 100%;
}

.feed-item-info .date,
.feed-item-info .likes {
    margin-top: 35px;
    color: #999;
    font-family: "OpenSans Regular";
    font-size: 12px;
}

.feed-item-info .likes {
    color: #333;
}

.feed-item-info .text {
    margin-top: 15px;
    width: 100%;
    color: #333;
    font-family: "Oswald Bold";
    font-size: 22px;
    line-height: 1.3;
    text-transform: uppercase;
}

.feed-more-news {
    display: block;
    width: 260px;
    height: 60px;
    background: #931B0E;
    border: 2px solid #931B0E;
    border-radius: 40px;
    color: #FFF;
    font-family: "OpenSans Bold";
    font-size: 13px;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.3s ease, background 0.3s ease;
    margin: 110px auto 0;
}

.feed-more-news:hover {
    background: #FFF;
    color: #931B0E;
}

.slider {
    position: relative;
    width: 100%;
    height: 550px;
    background: #000;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    padding: 15px 0 30px;
    background: #000;
}

.slider-wrapper .dots {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    font-size: 0;
}

.slider-wrapper .dot {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    width: 20px;
    height: 20px;
}

.slider-wrapper .dot-inner {
    width: 10px;
    height: 10px;
    border: 1px solid #666;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.slider-wrapper .dot:hover .dot-inner, .slider-wrapper .dot.current .dot-inner {
    background: #931B0E;
    border-color: #931B0E;
}

.slider-wrapper .red-line,
.slider-wrapper .crossed-line {
    position: relative;
    width: 100%;
    height: 15px;
    background: #931B0E;
}

.slider-wrapper .red-line {
    z-index: 2;
}

.slider-wrapper .red-line .skewed-button-bordered {
    position: absolute;
    bottom: 15px;
    left: 60%;
}

.slider-wrapper .red-line .skewed-button-bordered:hover .skewed-button {
    background: #FFF;
}

.slider-wrapper .crossed-line {
    background: url("../images/cross-title.png");
}

.slider-wrapper--second {
    padding-top: 0;
    background: #FFF;
}

.slider-title-circle {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 25%;
    height: 284px;
    background: #FFF;
}

.slider-title-circle .circle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: -20%;
    bottom: -100px;
    padding: 0 40px;
    width: 310px;
    height: 310px;
    background: #333 url("../images/cross-title.png");
    border: 5px solid #FFF;
    border-radius: 50%;
    color: #FFF;
    font-family: "Oswald Bold";
    font-size: 48px;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
}

.slider-cover-block {
    position: absolute;
    z-index: 3;
    width: 40%;
    height: 100%;
    overflow: hidden;
    border-left: 10px solid #000;
    border-right: 10px solid #000;
    transform: skewX(-15deg) translateX(-50%);
}

.slider-cover-block-inner {
    width: 100%;
    height: 100%;
}

.slider-cover-block-inner .background {
    width: 100%;
    height: 100%;
    background: url("../images/cross.png");
    background-position: top left;
    pointer-events: none;
}

.slider-cover-block .slider-control-btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 50%;
    width: 80px;
    height: 114px;
    background: #000;
    border: 2px solid #FFF;
    transform: translateY(-50%);
    transition: background 0.3s;
}

.slider-cover-block .slider-control-btn:before {
    content: '❮';
    color: #FFF;
    font-size: 50px;
    transition: color 0.3s;
}

.slider-cover-block .slider-control-btn:hover {
    background: #FFF;
}

.slider-cover-block .slider-control-btn:hover:before {
    color: #000;
}

.slider-cover-block .slider-control-btn--left {
    right: -4px;
}

.slider-cover-block .slider-control-btn--right {
    left: -4px;
}

.slider-cover-block .slider-control-btn--right:before {
    content: '❯';
}

.slider-cover-block--left {
    left: 0;
}

.slider-cover-block--right {
    left: 100%;
}

.slider-cover-block--center {
    z-index: 1;
    left: 20%;
    width: 60%;
    border: 0;
    transform: skewX(-15deg);
    overflow: hidden;
}

.slider-cover-block--center img {
    display: block;
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    object-fit: cover;
    transform: skewX(15deg);
}

.slider-cover-block--center:before, .slider-cover-block--center:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
}

.slider-cover-block--center:before {
    z-index: 2;
    background: url("../images/cross-title.png");
}

.slider-cover-block--center:after {
    z-index: 1;
    background: rgba(0, 0, 0, 0.8);
}

.slider .slides {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
    height: 570px;
    width: 100%;
    cursor: -webkit-grab;
    cursor: grab;
    font-size: 0;
    overflow: hidden;
}

.slider .slides.gradding {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.slider .slide {
    padding: 0 10px;
    width: 60%;
    min-width: 60%;
    height: 100%;
    background: #000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transform: skewX(-15deg);
}

.slider .slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #FFF;
    overflow: hidden;
}

.slider .slide-content {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    transform-origin: 0 100%;
    transform: skewX(15deg);
}

.slider .slide-photo {
    width: 60%;
    height: 100%;
}

.slider .slide-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slider .slide-info {
    padding: 50px 40px;
    width: 40%;
    color: #333;
    max-height: calc(100% - 75px);
    overflow: hidden;
    position: relative;
    -moz-column-count: 2; /* Для Firefox */
    -moz-column-width: 300px;
    -moz-column-gap: 100%;
    -webkit-column-count: 2; /* Для Safari и Chrome */
    -webkit-column-width: 300px;
    -webkit-column-gap: 100%;
    column-count: 2;
    column-width: 300px;
    column-gap: 100%;
}

.slider .slide-info:before {
    content: '';
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: -10px;
    left: 0;
    background: linear-gradient(to top, #fff 30%, transparent);
}

.slider--second .slide-info {
    max-height: calc(100% - 50px);
}

.slider--second .slide-info:before {
    display: none;
}

.slider .slide-title {
    display: block;
    width: 100%;
    font-family: "Oswald Bold";
    font-size: 36px;
    line-height: 1.3;
}

.slider .slide-text {
    margin-top: 30px;
    font-family: "OpenSans Regular";
    font-size: 16px;
    line-height: 1.3;
}

.slider .slide-button {
    position: absolute;
    right: 30px;
    bottom: 20px;
    height: 60px;
    width: 220px;
}

.slider .slide-button-inner {
    position: absolute;
    left: 0;
    bottom: 0;
}

.slider .slide-button:before {
    box-sizing: border-box;
    position: absolute;
    left: 10px;
    bottom: 6px;
    display: block;
    width: 200px;
    height: 50px;
    border: 2px solid #999;
    content: '';
    transform-origin: 50% 100%;
    transform: skewX(-15deg);
    transition: left 0.3s ease, bottom 0.3s ease;
}

.slider .slide-button:hover .slide-button-inner {
    background: rgba(0, 0, 0, 0);
    color: #931B0E;
}

.slider .slide-button:hover:before {
    left: 0;
    bottom: 0;
}

.slider .slide--ghost {
    width: 40%;
    min-width: 40%;
}

.slider .slide--ghost .slide-inner {
    background: #666;
}

.slider .slide:last-child {
    margin-right: 0;
}

.slider--second {
    padding-top: 260px;
    height: 810px;
    background: #FFF;
}

.slider--second .slider-cover-block {
    top: 260px;
    background: #333 url("../images/cross-title.png");
    border-color: #FFF;
}

.slider--second .slider-cover-block .slider-control-btn {
    top: 40%;
    background: #FFF;
    border: 2px solid #666;
}

.slider--second .slider-cover-block .slider-control-btn:before {
    color: #333;
}

.slider--second .slider-cover-block .slider-control-btn:hover {
    background: #333;
}

.slider--second .slider-cover-block .slider-control-btn:hover:before {
    color: #FFF;
}

.slider--second .slides {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding-top: 260px;
    padding-bottom: 0;
    cursor: default;
}

.slider--second .slides.grabbing .slide {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.slider--second .slide {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    cursor: -webkit-grab;
    cursor: grab;
}

.slider--second .slide-inner {
    background: rgba(0, 0, 0, 0);
    overflow: visible;
}

.slider--second .slide-content {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    transform-origin: 0 100%;
    transform: skewX(15deg) translateX(5%);
}

.slider--second .slide-photo {
    position: relative;
    top: -30%;
    padding: 0 2% 0 13%;
    width: 72%;
    height: 130%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(1, 0.01, 1, 0.01);
}

.slider--second .slide-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slider--second .slide-info {
    padding: 6% 0 0;
    width: 28%;
}

.slider--second .slide-title {
    color: #FFF;
    text-transform: uppercase;
}

.slider--second .slide-text {
    color: #FFF;
}

.slider--second .slide-button {
    bottom: 0;
}

.slider--second .slide-button:hover .skewed-button {
    background: #FFF;
}

.slider--second .slide--ghost .slide-inner {
    background: rgba(0, 0, 0, 0);
}

.slider--second .slide.current .slide-photo {
    opacity: 1;
}

.scroller {
    position: relative;
    margin-top: 30px;
    width: 100%;
    height: 700px;
    background: #FFF;
    overflow: hidden;
}

.scroller-cover-block {
    position: absolute;
    top: 0;
    z-index: 5;
    width: 300px;
    height: 102%;
    background: #FFF;
    cursor: pointer;
    transform-origin: 50% 100%;
    transform: skewX(-15deg) translateY(-1%);
    transition: border 0.3s;
}

.scroller-cover-block .scroller-control-btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    left: 10px;
    top: 40%;
    width: 66px;
    height: 100px;
    background: #FFF;
    border: 2px solid #333;
    border-right: 0;
    box-shadow: -5px 0 5px -2px #000;
    transition: border 0.3s, background 0.3s, box-shadow 0.3s;
}

.scroller-cover-block .scroller-control-btn:before {
    color: #333;
    content: '❯';
    font-size: 50px;
    transition: color 0.3s;
}

.scroller-cover-block .scroller-control-btn--right {
    left: -65px;
    border-right-color: rgba(0, 0, 0, 0);
}

.scroller-cover-block:before {
    display: block;
    position: absolute;
    top: 20%;
    left: -2px;
    z-index: 3;
    width: 15px;
    height: 60%;
    background: rgba(0, 0, 0, 0);
    content: '';
    transition: background 0.3s;
}

.scroller-cover-block:hover {
    border-left-color: #931B0E;
}

.scroller-cover-block:hover .scroller-control-btn {
    background: #931B0E;
    border: 2px solid #931B0E;
    border-right: 0;
    box-shadow: -5px 0 8px 0 #000;
}

.scroller-cover-block:hover .scroller-control-btn:before {
    color: #FFF;
}

.scroller-cover-block:hover:before {
    background: #931B0E;
}

.scroller-cover-block:hover + .back-layer-cover-block {
    box-shadow: -2px 0 12px 11px #000;
}

.scroller-cover-block--right {
    right: 0;
    border-left: 2px solid #333;
}

.scroller .back-layer-cover-block {
    position: absolute;
    top: 1%;
    right: -14px;
    z-index: 4;
    height: 98%;
    width: 300px;
    box-shadow: 0 0 10px 9px #000;
    border-radius: 30px;
    transform-origin: 50% 100%;
    transform: skewX(-15deg);
    transition: box-shadow 0.3s;
}

.scroller .slides-wrapper {
    position: relative;
    padding: 15px 0 35px;
    width: 100%;
    height: 720px;
    overflow-x: auto;
}

.scroller .slides {
    position: absolute;
    top: 50px;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    padding: 0 300px 0 30px;
    height: 600px;
}

.scroller .slide {
    position: relative;
    margin-right: 20px;
    padding-top: 430px;
    width: 360px;
    min-width: 360px;
    height: 100%;
    /*cursor: pointer;*/
    overflow: hidden;
    transition: padding 0.3s ease;
}

.scroller .slide-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.scroller .slide-info {
    position: relative;
    z-index: 2;
    padding: 60px 30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    color: #FFF;
    font-family: "OpenSans Regular";
}

.scroller .slide-title {
    display: block;
    position: relative;
    z-index: 2;
    height: 110px;
    font-family: "Oswald Bold";
    font-size: 34px;
    line-height: 1.2;
    text-transform: uppercase;
}

.scroller .slide-text {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    font-family: "OpenSans Regular";
    font-size: 16px;
    line-height: 1.2;
}

.scroller .slide:hover {
    padding-top: 0;
}

.scroller .slide:hover img {
    filter: blur(5px);
}

.scroller .slide:last-child {
    margin-right: 0;
}

.scroller-wrapper {
    padding: 80px 0;
    background: #FFF;
}

.scroller-wrapper .page-title {
    padding: 5px 10%;
}

.index-header .info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100vh;
    min-height: 550px;
}

.index-header .info .left-part,
.index-header .info .right-part {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.index-header .info .comic {
    height: 141.92px;
    object-fit: cover;
    margin-top: -70px;
}

.index-header .info .ukraine {
    margin-top: 15px;
    height: 30px;
}

.index-header .info .right-part {
    margin-left: 75px;
    width: 200px;
}

.index-header .info .right-part:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(242, 173, 55, 0.5);
    opacity: .7;
    content: '';
}

.index-header .info .buy-ticket,
.index-header .info .con,
.index-header .info .date {
    position: relative;
    z-index: 2;
    width: 100%;
}

.index-header .info .buy-ticket {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 15%;
    left: -35px;
    padding: 0;
    width: 150px;
    height: 150px;
    background: #931B0E;
    border-radius: 50%;
}

.index-header .info .buy-ticket img {
    position: relative;
    z-index: 2;
    width: 50%;
    object-fit: contain;
}

.index-header .info .buy-ticket:before {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #931B0E;
    border-radius: 50%;
    content: '';
    opacity: 0;
    transform: translate3d(-50%, -50%, 0);
    animation: pulseBuyTicket infinite 4s 0s both;
}

.index-header .info .buy-ticket:hover:before {
    animation-play-state: paused;
}

.index-header .info .con {
    margin-top: -70px;
    width: 100%;
    object-fit: contain;
}

.right-part__text {
    height: 30px;
    margin-top: 15px;
    position: relative;
}

.index-header .info .date {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 30px;
    color: #FFF;
    font-family: "Oswald Regular";
    font-size: 30px;
}

.index-header .info .place {
    color: #FFF;
    font-size: 16px;
    line-height: 18px;
    font-family: "OpenSans Regular";
    z-index: 2;
    margin-top: 20px;
    text-align: left;
    width: 100%;
}

.index-header .info .place img {
    max-width: 100%;
}

.index-header .container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 550px;
    overflow: hidden;
}

.index-header .container-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-header .container-item {
    position: relative;
    width: 100%;
    height: 50%;
    overflow: hidden;
}

.index-header .container-item .block {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.index-header .container-item .block--1, .index-header .container-item .block--2, .index-header .container-item .block--3 {
    bottom: 0;
}

.index-header .container-item .block--4, .index-header .container-item .block--5, .index-header .container-item .block--6 {
    top: 0;
}

.index-header .container-item--top .block {
    object-position: center bottom;
}

.index-header .container-item--bottom .block {
    object-position: center top;
}

.index-header .layer {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.index-header .layer--0 {
    position: absolute;
    background: url("../images/index/layer-0-min.png") no-repeat center;
    background-size: cover;
}

.index-header .layer--1 {
    background: url("../images/index/layer-1-top-min.png");
}

.index-header .layer--2 {
    background: url("../images/index/layer-1-bottom-min.png");
}

.index-header .layer--3 {
    background: url("../images/index/layer-2-top-min.png");
}

.index-header .layer--4 {
    background: url("../images/index/layer-2-bottom-min.png");
}

.index-header .layer--1, .index-header .layer--2, .index-header .layer--3, .index-header .layer--4 {
    width: 110%;
    background-size: cover;
    background-position: center;
}

.index-header .go-down {
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    z-index: 12;
    bottom: 50px;
    left: 50%;
    padding-top: 10px;
    width: 60px;
    height: 60px;
    transform: translateX(-50%);
    transition: padding 0.3s;
}

.index-header .go-down .row {
    width: 50%;
    height: 3px;
    background: #FFF;
    transform-origin: 100% 100%;
    transform: rotate(40deg);
}

.index-header .go-down .row:nth-child(2) {
    transform-origin: 0 100%;
    transform: rotate(-40deg);
}

.index-header .go-down:hover {
    padding-top: 30px;
}

.last-news {
    padding-top: 100px;
    background: #FFF;
}

.last-news .page-title {
    padding: 5px 10%;
}

.last-news-container {
    margin: 0 auto;
    width: 80%;
}

.last-news .block-title {
    display: block;
    color: #333;
    font-family: "Oswald Bold";
    font-size: 48px;
    text-transform: uppercase;
}

.last-news .news {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 4 ];
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: (1fr) [ 2 ];
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 15px;
    margin-top: 60px;
}

.last-news .news-item {
    position: relative;
    border: 2px solid #999;
    transition: filter 0.3s ease;
}

.last-news .news-item-photo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.last-news .news-item-info {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    padding: 30px 20px;
    width: 100%;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    color: #FFF;
    font-family: "Oswald Bold";
    font-size: 20px;
    line-height: 1.3;
    text-transform: uppercase;
}

.last-news .news-item-info .date,
.last-news .news-item-info .likes {
    margin-bottom: 10px;
    font-family: "OpenSans Regular";
    font-size: 12px;
}

.last-news .news-item-info .date {
    float: left;
}

.last-news .news-item-info .likes {
    float: right;
}

.last-news .news-item-info .likes:before {
    content: '♡ ';
}

.last-news .news-item-info .text {
    clear: both;
}

.last-news .news-item:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/cross.png");
    content: '';
    transition: top 0.3s, left 0.3s;
}

.last-news .news-item:first-child {
    grid-area: 1 / 1 / 3 / 3;
    height: 660px;
}

.last-news .news-item:first-child .news-item-info {
    padding: 30px 30px 80px;
    background: #F8F8F8;
}

.last-news .news-item:first-child .news-item-info .date,
.last-news .news-item:first-child .news-item-info .likes {
    margin-bottom: 25px;
    color: #666;
}

.last-news .news-item:first-child .news-item-info .text {
    color: #333;
    font-size: 36px;
}

.last-news .news-item:nth-child(2), .last-news .news-item:nth-child(3) {
    margin-bottom: 15px;
}

.last-news .news:hover .news-item {
    filter: grayscale(100%);
}

.last-news .news:hover .news-item:hover {
    filter: none;
}

.last-news .news:hover .news-item:hover:after {
    top: 10px;
    left: -10px;
}

.last-news .bottom-panel {
    margin-top: 60px;
}

.last-news .bottom-panel .skewed-button-bordered {
    margin: 0 10% 0 auto;
}

.last-news .bottom-panel .red-line {
    width: 100%;
    height: 15px;
    background: #931B0E;
}

.last-news .crossed-block {
    width: 100%;
    height: 15px;
    background: url("../images/cross-title.png");
}

.for-guests {
    padding-top: 90px;
    padding-bottom: 30px;
    background: #FFF;
    overflow: hidden;
}

.for-guests .page-title {
    padding: 5px 10%;
}

.for-guests-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 6 ];
    grid-template-columns: repeat(6, 1fr);
    -ms-grid-rows: 355px 440px 420px 440px;
    grid-template-rows: 355px 440px 420px 440px;
    grid-gap: 5px;
    margin-top: 20px;
    padding: 0 20px;
}

.for-guests-content .item {
    overflow: hidden;
    background: #F8F8F8;
}

.for-guests-content .item-container {
    width: 100%;
    height: 100%;
    border: 5px solid #000;
}

.for-guests-content .item-content {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
}

.for-guests-content .item-info {
    position: relative;
    color: #333;
}

.for-guests-content .item-photo {
    height: 100%;
    object-fit: cover;
}

.for-guests-content .item-title {
    font-family: "Oswald Bold";
    font-size: 72px;
    text-transform: lowercase;
}

.for-guests-content .item-title span {
    display: block;
    font-size: 48px;
}

.for-guests-content .item-text {
    margin-top: 20px;
    font-family: "OpenSans Regular";
    font-size: 16px;
    line-height: 1.3;
    overflow: hidden;
}

.for-guests-content .item:nth-child(1) {
    -ms-grid-column: span 6;
    grid-column-start: span 6;
}

.for-guests-content .item:nth-child(1) .item-info {
    padding: 35px 10% 0;
    width: 50%;
}

.for-guests-content .item:nth-child(1) .item-photo {
    -ms-flex-order: 2;
    order: 2;
    width: 50%;
    object-position: center;
}

.for-guests-content .item:nth-child(1) .item-text {
    max-height: 60px;
}

.for-guests-content .item:nth-child(1) .skewed-button-bordered {
    margin: 30px 0 0 auto;
}

.for-guests-content .item:nth-child(2) {
    -ms-grid-column: span 3;
    grid-column-start: span 3;
    border-left: 5px solid #000;
}

.for-guests-content .item:nth-child(2) .item-container {
    transform-origin: 50% 0%;
    transform: skewX(-15deg);
}

.for-guests-content .item:nth-child(2) .item-content {
    transform-origin: 50% 100%;
    transform: skewX(15deg);
}

.for-guests-content .item:nth-child(2) .item-info {
    padding: 35px 0 0 5%;
    width: 40%;
}

.for-guests-content .item:nth-child(2) .item-photo {
    width: 60%;
}

.for-guests-content .item:nth-child(2) .item-title {
    font-size: 60px;
}

.for-guests-content .item:nth-child(2) .item-text {
    max-height: 100px;
}

.for-guests-content .item:nth-child(2) .skewed-button-bordered {
    margin-top: 30px;
}

.for-guests-content .item:nth-child(3) {
    -ms-grid-column: span 3;
    grid-column-start: span 3;
    text-align: right;
    overflow: visible;
    transform-origin: 50% 0%;
    transform: skewX(-15deg);
}

.for-guests-content .item:nth-child(3) .item-container {
    border-right: 0;
}

.for-guests-content .item:nth-child(3) .item-content {
    position: relative;
    transform-origin: 50% 0%;
    transform: skewX(15deg);
}

.for-guests-content .item:nth-child(3) .item-content:after {
    display: block;
    position: absolute;
    top: -5px;
    right: -2px;
    width: 5px;
    height: 440px;
    background: #000;
    content: '';
}

.for-guests-content .item:nth-child(3) .item-content:before {
    display: block;
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 5px;
    background: #000;
    content: '';
}

.for-guests-content .item:nth-child(3) .item-info {
    padding: 35px 5% 0 0;
    width: 40%;
}

.for-guests-content .item:nth-child(3) .item-photo {
    -ms-flex-order: 2;
    order: 2;
    width: 60%;
}

.for-guests-content .item:nth-child(3) .item-title {
    font-size: 60px;
}

.for-guests-content .item:nth-child(3) .item-text {
    max-height: 100px;
}

.for-guests-content .item:nth-child(3) .skewed-button-bordered {
    margin-top: 30px;
    margin-left: auto;
}

.for-guests-content .item:nth-child(4) {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    border-left: 5px solid #000;
}

.for-guests-content .item:nth-child(4) .item-container {
    transform-origin: 50% 0%;
    transform: skewX(-15deg);
}

.for-guests-content .item:nth-child(4) .item-content {
    transform-origin: 50% 100%;
    transform: skewX(15deg);
}

.for-guests-content .item:nth-child(4) .item-info {
    padding: 20px 0 0 3%;
    width: 50%;
}

.for-guests-content .item:nth-child(4) .item-photo {
    width: 50%;
}

.for-guests-content .item:nth-child(4) .item-title {
    font-size: 42px;
}

.for-guests-content .item:nth-child(4) .item-title span {
    font-size: 30px;
}

.for-guests-content .item:nth-child(4) .item-text {
    max-height: 120px;
}

.for-guests-content .item:nth-child(4) .skewed-button-bordered {
    margin-top: 30px;
}

.for-guests-content .item:nth-child(5) {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    border: 5px solid #000;
    transform-origin: 50% 0%;
    transform: skewX(-15deg);
}

.for-guests-content .item:nth-child(5) .item-container {
    border: 0;
}

.for-guests-content .item:nth-child(5) .item-content {
    transform-origin: 50% 100%;
    transform: skewX(15deg);
}

.for-guests-content .item:nth-child(5) .item-info {
    padding: 20px 0 0 3%;
    width: 50%;
}

.for-guests-content .item:nth-child(5) .item-photo {
    width: 50%;
}

.for-guests-content .item:nth-child(5) .item-title {
    font-size: 42px;
}

.for-guests-content .item:nth-child(5) .item-title span {
    font-size: 30px;
}

.for-guests-content .item:nth-child(5) .item-text {
    max-height: 120px;
}

.for-guests-content .item:nth-child(5) .skewed-button-bordered {
    margin-top: 30px;
}

.for-guests-content .item:nth-child(6) {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    text-align: right;
    overflow: visible;
    transform-origin: 50% 0%;
    transform: skewX(-15deg);
}

.for-guests-content .item:nth-child(6) .item-container {
    border-right: 0;
}

.for-guests-content .item:nth-child(6) .item-content {
    position: relative;
    transform-origin: 50% 0%;
    transform: skewX(15deg);
}

.for-guests-content .item:nth-child(6) .item-content:after {
    display: block;
    position: absolute;
    top: -5px;
    right: -2px;
    width: 5px;
    height: 420px;
    background: #000;
    content: '';
}

.for-guests-content .item:nth-child(6) .item-content:before {
    display: block;
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 5px;
    background: #000;
    content: '';
}

.for-guests-content .item:nth-child(6) .item-info {
    padding: 20px 3% 0 0;
    width: 60%;
}

.for-guests-content .item:nth-child(6) .item-photo {
    -ms-flex-order: 2;
    order: 2;
    width: 40%;
    object-position: top;
}

.for-guests-content .item:nth-child(6) .item-title {
    font-size: 42px;
}

.for-guests-content .item:nth-child(6) .item-title span {
    font-size: 30px;
}

.for-guests-content .item:nth-child(6) .item-text {
    max-height: 120px;
}

.for-guests-content .item:nth-child(6) .skewed-button-bordered {
    margin: 30px 0 0 auto;
}

.for-guests-content .item:nth-child(7) {
    -ms-grid-column: span 3;
    grid-column-start: span 3;
    border-left: 5px solid #000;
}

.for-guests-content .item:nth-child(7) .item-container {
    transform-origin: 50% 0%;
    transform: skewX(-15deg);
}

.for-guests-content .item:nth-child(7) .item-content {
    transform-origin: 50% 100%;
    transform: skewX(15deg);
}

.for-guests-content .item:nth-child(7) .item-info {
    padding: 35px 0 0 5%;
    width: 40%;
}

.for-guests-content .item:nth-child(7) .item-photo {
    width: 60%;
}

.for-guests-content .item:nth-child(7) .item-title {
    font-size: 60px;
}

.for-guests-content .item:nth-child(7) .item-text {
    max-height: 100px;
}

.for-guests-content .item:nth-child(7) .skewed-button-bordered {
    margin-top: 30px;
}

.for-guests-content .item:nth-child(8) {
    -ms-grid-column: span 3;
    grid-column-start: span 3;
    text-align: right;
    overflow: visible;
    transform-origin: 50% 0%;
    transform: skewX(-15deg);
}

.for-guests-content .item:nth-child(8) .item-container {
    border-right: 0;
}

.for-guests-content .item:nth-child(8) .item-content {
    position: relative;
    transform-origin: 50% 0%;
    transform: skewX(15deg);
}

.for-guests-content .item:nth-child(8) .item-content:after {
    display: block;
    position: absolute;
    top: -5px;
    right: -2px;
    width: 5px;
    height: 440px;
    background: #000;
    content: '';
}

.for-guests-content .item:nth-child(8) .item-content:before {
    display: block;
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 5px;
    background: #000;
    content: '';
}

.for-guests-content .item:nth-child(8) .item-info {
    padding: 35px 5% 0 0;
    width: 40%;
}

.for-guests-content .item:nth-child(8) .item-photo {
    -ms-flex-order: 2;
    order: 2;
    width: 60%;
}

.for-guests-content .item:nth-child(8) .item-title {
    font-size: 60px;
}

.for-guests-content .item:nth-child(8) .item-text {
    max-height: 100px;
}

.for-guests-content .item:nth-child(8) .skewed-button-bordered {
    margin-top: 30px;
    margin-left: auto;
}


.for-guests-content .item:nth-child(1) .item-info:after,
.for-guests-content .item:nth-child(2) .item-info:after,
.for-guests-content .item:nth-child(3) .item-info:after,
.for-guests-content .item:nth-child(4) .item-info:after,
.for-guests-content .item:nth-child(5) .item-info:after,
.for-guests-content .item:nth-child(6) .item-info:after,
.for-guests-content .item:nth-child(7) .item-info:after,
.for-guests-content .item:nth-child(8) .item-info:after {
    display: block;
    position: absolute;
    top: 30px;
    left: 99%;
    z-index: 2;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-left: 50px solid #F8F8F8;
    border-bottom: 30px solid transparent;
    content: '';
}

.for-guests-content .item:nth-child(2) .item-info:after,
.for-guests-content .item:nth-child(4) .item-info:after,
.for-guests-content .item:nth-child(5) .item-info:after,
.for-guests-content .item:nth-child(7) .item-info:after {
    left: initial;
    right: 99%;
    border-left: 0;
    border-right: 50px solid #F8F8F8;
}

.index-video {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 960px;
    overflow: hidden;
}

.index-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.index-video-content {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 2;
}

.index-video-content .logo {
    width: 225px;
    height: 264px;
    object-fit: contain;
}

.index-video-content .info {
    margin: 85px 0 0 100px;
}

.index-video-content .info img {
    width: 480px;
    height: 140px;
    object-fit: contain;
}

.index-video-content .info .dates {
    display: block;
    margin-top: 65px;
    color: #FFF;
    font-family: "Oswald Bold";
    font-size: 30px;
    text-transform: uppercase;
}

.index-video-content .info .dates span {
    font-size: 48px;
}

.index-video-content .info .skewed-button-bordered {
    margin-top: 50px;
    width: 280px;
    height: 70px;
}

.index-video-content .info .skewed-button-bordered:before {
    width: 270px;
    height: 60px;
}

.index-video-content .info .skewed-button-bordered:hover .skewed-button {
    background: #FFF;
    color: #931b0e;
}

.index-video-content .info .skewed-button {
    width: 270px;
    height: 60px;
}

.index-video-content .info .skewed-button span {
    line-height: 60px;
}

.index-video:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    content: '';
}

.contacts {
    -ms-flex: 1 0;
    flex: 1 0;
    position: relative;
    z-index: 2;
    padding: 176px 0 60px;
    width: 100%;
}

.contacts .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 25px 0;
    width: 1170px;
    background: #FFF;
}

.contacts .contact {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    margin-bottom: 30px;
    width: 585px;
    height: 500px;
    border: 2px solid #000;
    -webkit-clip-path: polygon(72px 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(72px 0, 100% 0, 100% 100%, 0% 100%);
    overflow: hidden;
}

.contacts .contact:before {
    display: block;
    position: absolute;
    bottom: 0;
    left: -2px;
    z-index: 2;
    width: 2px;
    height: 120%;
    background: #000;
    content: '';
    transform-origin: 100% 100%;
    transform: rotate(8.3deg);
}

.contacts .contact:nth-child(4n + 1) {
    -webkit-clip-path: polygon(0 0, 513px 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 513px 0, 100% 100%, 0% 100%);
}

.contacts .contact:nth-child(4n + 1):before {
    left: initial;
    right: -2px;
    transform: rotate(-8.3deg);
}

.contacts .contact:nth-child(4n + 2) {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 72px 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 72px 100%);
}

.contacts .contact:nth-child(4n + 2):before {
    left: 70px;
    transform: rotate(-8.3deg);
}

.contacts .contact:nth-child(4n + 3) {
    -webkit-clip-path: polygon(0 0, 100% 0, 513px 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 513px 100%, 0 100%);
}

.contacts .contact:nth-child(4n + 3):before {
    left: initial;
    right: 70px;
}

.contacts .contact:nth-child(4n + 1), .contacts .contact:nth-child(4n + 3) {
    left: 15px;
}

.contacts .contact:nth-child(4n + 1) .contact-info, .contacts .contact:nth-child(4n + 3) .contact-info {
    padding-right: 75px;
    width: 500px;
}

.contacts .contact:nth-child(4n + 1) .contact-oval, .contacts .contact:nth-child(4n + 3) .contact-oval {
    right: -5px;
}

.contacts .contact:nth-child(4n + 2), .contacts .contact:nth-child(4n + 4) {
    left: -15px;
}

.contacts .contact:first-child {
    display: block;
    padding: 15px 20px;
    border: 0;
}

.contacts .contact:first-child .page-title,
.contacts .contact:first-child .main-phone,
.contacts .contact:first-child .main-email {
    display: block;
    color: #333;
    font-family: "Oswald Bold";
}

.contacts .contact:first-child .main-phone,
.contacts .contact:first-child .main-email {
    transition: color 0.3s;
}

.contacts .contact:first-child .main-phone:hover,
.contacts .contact:first-child .main-email:hover {
    color: #999;
}

.contacts .contact:first-child .page-title {
    font-size: 48px;
    text-transform: uppercase;
}

.contacts .contact:first-child .main-phone {
    margin-top: 200px;
    font-size: 36px;
}

.contacts .contact:first-child .main-email {
    margin-top: 30px;
    font-size: 24px;
}

.contacts .contact:first-child:before {
    display: none;
}

.contacts .contact-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.contacts .contact-info {
    position: relative;
    padding-right: 35px;
    width: 460px;
    height: 120px;
}

.contacts .contact-info .name,
.contacts .contact-info .position {
    display: block;
    text-align: center;
    font-family: "Oswald Bold";
}

.contacts .contact-info .name {
    color: #333;
    font-size: 24px;
}

.contacts .contact-info .position {
    margin-top: 15px;
    color: #666;
    font-size: 16px;
}

.contacts .contact-info .data {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

.contacts .contact-info .email {
    /* float: left; */
    color: #999;
    font-family: "OpenSans SemiBold";
    transition: color 0.3s;
}

.contacts .contact-info .email:hover {
    color: #333;
}

.contacts .contact-info .phone {
    float: right;
    color: #931B0E;
    font-family: "OpenSans Bold";
    transition: color 0.3s;
}

.contacts .contact-info .phone:hover {
    color: #ea311d;
}

.contacts .contact-oval {
    position: absolute;
    bottom: -118px;
    right: -45px;
    width: 663px;
    height: 260px;
    background: #FFF;
    border: 1px solid #000;

}

.contacts .tail {
    display: none;
    position: absolute;
    top: -30px;
    left: 230px;
    width: 37px;
    height: 37px;
    object-fit: contain;
}

.blog {
    position: relative;
    padding-top: 116px;
}

.blog .feed {
    margin-top: 25px;
}

.blog .feed-item-info .likes:before {
    content: '♡ ';
}

.blog .feed-item:nth-child(1) {
    grid-area: 1 / 1 / 3 / 3;
}

.blog .feed-item:nth-child(1) .feed-item-photo {
    height: initial;
}

.blog .feed-item:nth-child(1) .feed-item-info {
    padding: 0 40px 20px;
}

.blog .feed-item:nth-child(1) .feed-item-info .text {
    margin-top: 20px;
    font-size: 36px;
}

.blog .feed-item:nth-child(2) .feed-item-photo, .blog .feed-item:nth-child(3) .feed-item-photo {
    width: 100%;
    height: 100%;
}

.blog .feed-item:nth-child(2) .feed-item-photo img, .blog .feed-item:nth-child(3) .feed-item-photo img {
    height: 100%;
}

.blog .feed-item:nth-child(2) .feed-item-info, .blog .feed-item:nth-child(3) .feed-item-info {
    position: absolute;
    bottom: 0;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.blog .feed-item:nth-child(2) .feed-item-info .date,
.blog .feed-item:nth-child(2) .feed-item-info .likes,
.blog .feed-item:nth-child(2) .feed-item-info .text, .blog .feed-item:nth-child(3) .feed-item-info .date,
.blog .feed-item:nth-child(3) .feed-item-info .likes,
.blog .feed-item:nth-child(3) .feed-item-info .text {
    color: #FFF;
}

.blog .skewed-button-bordered {
    margin: 0 auto;
}

.blog .red-line {
    width: 100%;
    height: 15px;
    background: #931B0E;
}

.participants {
    position: relative;
    padding-top: 186px;
}

.participants .feed-newsline:hover .feed-item-photo {
    filter: brightness(50%);
}

.partners {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin-top: 60px;
    padding: 0 10px 250px;
}

.partners .partner {
    position: relative;
    z-index: 2;
    width: 25%;
    margin-bottom: 60px;
    padding: 0 5%;
    text-align: center;
}

.partners .title {
    padding-top: 10px;
    width: 100%;
    text-align: center;
    font-size: 30px;
    color: #444;
    font-family: "Oswald Bold";
    text-transform: uppercase;
}

.partner a {
    display: block;
    position: relative;
    text-decoration: none;
}

.partner div {
    /* display: none; */
    position: absolute;
    z-index: 3;
    padding-top: 10px;
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #444;
    font-family: "Oswald Bold";
    text-transform: uppercase;
    opacity: 0;
    transition-duration: 1.5s;
}

.partner:hover div {
    /* display: block; */
    opacity: 1;

}


.partners .partner__logo {
    width: 100%;
    padding-top: 15px;
    object-fit: contain;
    object-position: center;
}

.partners .partner__name {
    display: block;
    margin-top: 15px;
    color: #333;
    font-family: "Oswald Bold";
    font-size: 22px;
    text-transform: uppercase;
}

.partners .partner__position {
    display: block;
    margin-top: 10px;
    color: #999;
    font-family: "Oswald Regular";
    font-size: 12px;
}

.partners-light {
    position: absolute;
    transition: transform 1s ease-out;
}

.partners-light img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partners-light--left {
    bottom: 0;
    left: -145px;
    width: 889px;
    height: 682px;
    transform-origin: 0 100%;
}

.partners-light--right {
    bottom: 30px;
    right: -130px;
    width: 1337px;
    height: 896px;
    transform-origin: 100% 100%;
}

.partners--index {
    margin-top: 0;
    padding: 200px 20% 170px;
    width: 100%;
    overflow: hidden;
}

.partners--index .partners-title {
    display: block;
    position: relative;
    z-index: 2;
    margin-bottom: 100px;
    padding: 0 40px;
    width: 100%;
    color: #FFF;
    font-family: "Oswald Bold";
    font-size: 48px;
    text-transform: uppercase;
}

.partners--index .partners-subtitle {
    display: block;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding: 0 40px;
    width: 100%;
    color: #FFF;
    font-family: "Oswald Bold";
    font-size: 24px;
    text-transform: uppercase;
}

.partners--index:after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: #999;
    content: '';
}

.program {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 6 ];
    grid-template-columns: repeat(6, 1fr);
    -ms-grid-rows: 500px 250px 250px 380px 380px;
    grid-template-rows: 500px 250px 250px 380px 380px;
    grid-gap: 4px;
    margin-top: 50px;
    padding: 0 10px 20px;
}

.program .item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.program .item-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program .item-bottom-panel {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 80px 30px;
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    color: #FFF;
    overflow: hidden;
    transition: height 0.3s ease, padding-top 0.3s ease;
}

.program .item-title {
    display: block;
    margin-bottom: 10px;
    height: 70px;
    line-height: 1.3;
    font-family: "Oswald Bold";
    text-transform: uppercase;
}

.program .item-text {
    font-family: "OpenSans Regular";
    font-size: 16px;
    line-height: 1.3;
}

.program .item:hover .item-bottom-panel {
    padding-top: 50px;
    height: 100%;
}

.program .item:hover .item-photo {
    filter: blur(5px);
}

.program .item:nth-child(1) {
    -ms-grid-column: span 6;
    grid-column-start: span 6;
}

.program .item:nth-child(1) .item-title {
    height: 100px;
    font-size: 36px;
}

.program .item:nth-child(1) .item-text {
    width: 60%;
}

.program .item:nth-child(2) {
    -ms-grid-column: span 3;
    grid-column-start: span 3;
    -ms-grid-row: span 2;
    grid-row-start: span 2;
}

.program .item:nth-child(2) .item-title {
    font-size: 30px;
}

.program .item:nth-child(3), .program .item:nth-child(4) {
    -ms-grid-column: span 3;
    grid-column-start: span 3;
}

.program .item:nth-child(3) .item-title, .program .item:nth-child(4) .item-title {
    font-size: 24px;
}

.program .item:nth-child(5), .program .item:nth-child(6), .program .item:nth-child(7), .program .item:nth-child(8), .program .item:nth-child(9), .program .item:nth-child(10) {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
}

.program .item:nth-child(5) .item-title, .program .item:nth-child(6) .item-title, .program .item:nth-child(7) .item-title, .program .item:nth-child(8) .item-title, .program .item:nth-child(9) .item-title, .program .item:nth-child(10) .item-title {
    font-size: 24px;
}

@media (min-width: 1921px) {
    .footer-page .bottom-panel {
        padding: 0 250px 20px;
    }

    .feed-item-photo {
        height: 300px;
    }

    .scroller .slide {
        width: 450px;
        min-width: 450px;
    }

    .scroller .slide-title {
        height: 140px;
    }

    .for-guests-content {
        -ms-grid-rows: 450px 500px 450px;
        grid-template-rows: 450px 500px 450px;
        grid-gap: 15px;
        margin: 20px auto 0;
        width: 86%;
    }

    .for-guests-content .item:nth-child(1) .item-info {
        padding: 60px 10% 0;
    }

    .for-guests-content .item:nth-child(2) .item-info {
        padding: 70px 0 0 5%;
    }

    .for-guests-content .item:nth-child(3) .item-content:after {
        height: 500px;
    }

    .for-guests-content .item:nth-child(3) .item-info {
        padding: 70px 5% 0 0;
    }

    .for-guests-content .item:nth-child(4) .item-info {
        padding: 50px 0 0 3%;
    }

    .for-guests-content .item:nth-child(5) .item-info {
        padding: 50px 0 0 3%;
    }

    .for-guests-content .item:nth-child(6) .item-content:after {
        height: 450px;
    }

    .for-guests-content .item:nth-child(6) .item-info {
        padding: 50px 3% 0 0;
    }

    .for-guests-content .item:nth-child(7) .item-info {
        padding: 70px 0 0 5%;
    }

    .for-guests-content .item:nth-child(8) .item-content:after {
        height: 500px;
    }

    .for-guests-content .item:nth-child(8) .item-info {
        padding: 70px 5% 0 0;
    }

    .index-video {
        height: 1050px;
    }

    .program {
        -ms-grid-rows: 600px 300px 300px 450px 450px;
        grid-template-rows: 600px 300px 300px 450px 450px;
        grid-gap: 10px;
        margin: 50px auto 0;
        width: 80%;
    }
}

@media (max-width: 1680px) {
    .slider-cover-block {
        width: 30%;
    }

    .slider-cover-block--center {
        left: 15%;
        width: 70%;
    }

    .slider .slide {
        width: 70%;
        min-width: 70%;
    }

    .slider .slide-photo {
        width: 55%;
    }

    .slider .slide-info {
        width: 45%;
    }

    .slider .slide--ghost {
        width: 30%;
        min-width: 30%;
    }

    .slider--second .slide-photo {
        width: 72%;
    }

    .slider--second .slide-info {
        width: 28%;
    }
}

@media (max-width: 1520px) {
    .for-guests-content .item:nth-child(7) .item-title,
    .for-guests-content .item:nth-child(8) .item-title {
        font-size: 45px;
    }
}

@media (max-width: 1400px) {
    .index-header .info .con,
    .index-header .info .comic {
        margin-top: -60px;
    }
}

@media (max-width: 1366px) {
    .main-menu {
        height: 90px;
        width: 90px;
    }

    .main-menu .open-close-menu {
        padding: 15px 25px 0;
        width: 90px;
        height: 90px;
    }

    .main-menu .hamburger {
        margin-bottom: 15px;
        height: 25px;
    }

    .main-menu .row {
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        border-radius: 3px;
        overflow: hidden;
        transition: top 0.15s, left 0.15s, width 0.15s, transform 0.15s;
    }

    .main-menu .row--1 {
        top: 0;
    }

    .main-menu .row--2 {
        top: 50%;
    }

    .main-menu .row--3 {
        top: 100%;
    }

    .main-menu .inner-row {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #FFF;
    }

    .main-menu .inner-row--2 {
        transform: translateX(-100%);
    }

    .main-menu .text {
        font-size: 16px;
        text-align: center;
        text-transform: uppercase;
        transition: opacity 0.15s;
    }

    .header-page {
        height: 90px;
    }

    .header-page .logo {
        width: 90px;
        height: 90px;
    }

    .header-page .languages,
    .header-page .socials {
        padding-left: 8px;
    }

    .header-page .languages,
    .header-page .go-to-cabinet {
        padding-bottom: 8px;
    }

    .header-page .languages a,
    .header-page .go-to-cabinet a {
        margin-left: 10px;
        font-size: 16px;
    }

    .header-page .buy-ticket {
        width: 250px;
        height: 40px;
    }

    .header-page .buy-ticket .skewed-button {
        margin: -5px auto 0;
        width: 210px;
        height: 50px;
        line-height: 50px;
    }

    .header-page .go-to-cabinet {
        padding-right: 8px;
    }

    .wrapper {
        padding: 90px 0 50px;
    }

    .container {
        width: 75%;
    }

    .content-container {
        margin-top: 20px;
    }

    .content table {
        margin: 60px 0;
    }

    .content table tr {
        padding: 20px 0;
    }

    .content table td {
        padding: 0 20px;
    }

    .content .top-block {
        height: 450px;
    }

    .index-header .info .con,
    .index-header .info .comic {
        margin-top: -65px;
    }

    .popup {
        top: 50px;
        width: 80%;
    }

    .popup .page-title {
        margin-bottom: 30px;
    }

    .popup .page-title-container {
        padding-top: 50px;
    }

    .footer-page .buy-ticket {
        width: 210px;
    }

    .footer-page .buy-ticket .skewed-button {
        width: 210px;
        height: 50px;
        line-height: 50px;
    }

    .slider-title-circle {
        height: 150px;
    }

    .slider-title-circle .circle {
        right: -10%;
        bottom: -70px;
        width: 200px;
        height: 200px;
        font-size: 35px;
    }

    .slider-cover-block {
        width: 25%;
    }

    .slider-cover-block--center {
        left: 12.5%;
        width: 75%;
    }

    .slider .slide {
        width: 75%;
        min-width: 75%;
    }

    .slider .slide-info {
        padding-right: 0;
    }

    .slider .slide--ghost {
        width: 25%;
        min-width: 25%;
    }

    .slider--second {
        padding-top: 150px;
        height: 650px;
    }

    .slider--second .slider-cover-block {
        top: 150px;
    }

    .slider--second .slides {
        padding-top: 150px;
    }

    .scroller {
        height: 500px;
    }

    .scroller-cover-block {
        width: 200px;
        transform: skewX(-17deg) translateY(-1%);
    }

    .scroller-cover-block .scroller-control-btn {
        left: -59px;
        width: 60px;
    }

    .scroller .back-layer-cover-block {
        width: 200px;
        transform: skewX(-17deg);
    }

    .scroller .slides-wrapper {
        height: 520px;
    }

    .scroller .slides {
        top: 20px;
        padding-right: 200px;
        height: 460px;
    }

    .scroller .slide {
        padding-top: 310px;
    }

    .page-title {
        margin-bottom: 30px;
    }

    .index-header .info,
    .index-header .container {
        min-height: 650px;
    }

    .index-header .info .buy-ticket {
        top: 5%;
        left: -25px;
        width: 120px;
        height: 120px;
    }

    .last-news .news {
        margin-top: 30px;
    }

    .last-news .news-item {
        position: relative;
        border: 2px solid #999;
        transition: box-shadow 0.3s ease;
    }

    .last-news .news-item-info {
        font-size: 18px;
    }

    .last-news .news-item:first-child {
        height: 500px;
    }

    .last-news .news-item:first-child .news-item-info {
        padding: 30px;
    }

    .last-news .news-item:first-child .news-item-info .date,
    .last-news .news-item:first-child .news-item-info .likes {
        margin-bottom: 15px;
    }

    .last-news .news-item:first-child .news-item-info .text {
        font-size: 28px;
    }

    .last-news .bottom-panel {
        margin-top: 50px;
    }

    .for-guests {
        padding-top: 50px;
    }

    .for-guests-content .item:nth-child(1) .item-info {
        padding: 20px 5% 0;
    }

    .for-guests-content .item:nth-child(1) .item-title {
        font-size: 60px;
    }

    .for-guests-content .item:nth-child(1) .item-title span {
        font-size: 38px;
    }

    .for-guests-content .item:nth-child(2) .item-info {
        padding: 35px 0 0 3%;
        width: 45%;
    }

    .for-guests-content .item:nth-child(2) .item-photo {
        width: 55%;
    }

    .for-guests-content .item:nth-child(2) .item-title {
        font-size: 48px;
    }

    .for-guests-content .item:nth-child(2) .item-title span {
        font-size: 30px;
    }

    .for-guests-content .item:nth-child(2) .item-text {
        max-height: 120px;
    }

    .for-guests-content .item:nth-child(3) .item-info {
        padding: 35px 3% 0 0;
        width: 50%;
    }

    .for-guests-content .item:nth-child(3) .item-photo {
        width: 50%;
    }

    .for-guests-content .item:nth-child(3) .item-title {
        font-size: 48px;
    }

    .for-guests-content .item:nth-child(3) .item-title span {
        font-size: 30px;
    }

    .for-guests-content .item:nth-child(3) .item-text {
        max-height: 120px;
    }

    .for-guests-content .item:nth-child(4) .item-container, .for-guests-content .item:nth-child(5) .item-container {
        border-left: 0;
    }

    .for-guests-content .item:nth-child(4) .item-info, .for-guests-content .item:nth-child(5) .item-info {
        padding: 20px 0 0 40%;
        width: 100%;
    }

    .for-guests-content .item:nth-child(4) .item-photo, .for-guests-content .item:nth-child(5) .item-photo {
        display: none;
    }

    .for-guests-content .item:nth-child(4) .item-title, .for-guests-content .item:nth-child(5) .item-title {
        font-size: 32px;
    }

    .for-guests-content .item:nth-child(4) .item-title span, .for-guests-content .item:nth-child(5) .item-title span {
        font-size: 26px;
    }

    .for-guests-content .item:nth-child(6) .item-info {
        padding: 20px 10% 0 0;
        width: 100%;
        background: #F8F8F8;
    }

    .for-guests-content .item:nth-child(6) .item-photo {
        display: none;
    }

    .for-guests-content .item:nth-child(6) .item-title {
        font-size: 32px;
    }

    .for-guests-content .item:nth-child(6) .item-title span {
        font-size: 26px;
    }

    .for-guests-content .item:nth-child(7) .item-info {
        padding: 35px 0 0 3%;
        width: 45%;
    }

    .for-guests-content .item:nth-child(7) .item-photo {
        width: 55%;
    }

    .for-guests-content .item:nth-child(7) .item-title {
        font-size: 48px;
    }

    .for-guests-content .item:nth-child(7) .item-title span {
        font-size: 30px;
    }

    .for-guests-content .item:nth-child(7) .item-text {
        max-height: 120px;
    }

    .for-guests-content .item:nth-child(8) .item-info {
        padding: 35px 3% 0 0;
        width: 50%;
    }

    .for-guests-content .item:nth-child(8) .item-photo {
        width: 50%;
    }

    .for-guests-content .item:nth-child(8) .item-title {
        font-size: 48px;
    }

    .for-guests-content .item:nth-child(8) .item-title span {
        font-size: 30px;
    }

    .for-guests-content .item:nth-child(8) .item-text {
        max-height: 120px;
    }

    .for-guests-content .item:nth-child(1) .item-info:after,
    .for-guests-content .item:nth-child(2) .item-info:after,
    .for-guests-content .item:nth-child(3) .item-info:after,
    .for-guests-content .item:nth-child(4) .item-info:after,
    .for-guests-content .item:nth-child(5) .item-info:after,
    .for-guests-content .item:nth-child(6) .item-info:after,
    .for-guests-content .item:nth-child(7) .item-info:after,
    .for-guests-content .item:nth-child(8) .item-info:after {
        display: none;
    }

    .index-video {
        height: 600px;
    }

    .contacts {
        padding: 110px 0 20px;
    }

    .contacts .container {
        padding: 20px 0;
        width: 980px;
    }

    .contacts .contact {
        margin-bottom: 15px;
        width: 490px;
        height: 400px;
        -webkit-clip-path: polygon(50px 0, 100% 0, 100% 100%, 0% 100%);
        clip-path: polygon(50px 0, 100% 0, 100% 100%, 0% 100%);
    }

    .contacts .contact:before {
        transform: rotate(7.1deg);
    }

    .contacts .contact:nth-child(4n + 1) {
        -webkit-clip-path: polygon(0 0, 440px 0, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 440px 0, 100% 100%, 0% 100%);
    }

    .contacts .contact:nth-child(4n + 1):before {
        transform: rotate(-7.1deg);
    }

    .contacts .contact:nth-child(4n + 2) {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50px 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 50px 100%);
    }

    .contacts .contact:nth-child(4n + 2):before {
        left: 48px;
        transform: rotate(-7.1deg);
    }

    .contacts .contact:nth-child(4n + 3) {
        -webkit-clip-path: polygon(0 0, 100% 0, 440px 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 440px 100%, 0 100%);
    }

    .contacts .contact:nth-child(4n + 3):before {
        right: 48px;
        transform: rotate(7.1deg);
    }

    /* .contacts .contact:nth-child(4n + 1), .contacts .contact:nth-child(4n + 3) {
        left: 15px; } */
    .contacts .contact:nth-child(4n + 1) .contact-info, .contacts .contact:nth-child(4n + 3) .contact-info {
        padding-right: 55px;
        width: 480px;
    }

    /* .contacts .contact:nth-child(4n + 1) .contact-oval, .contacts .contact:nth-child(4n + 3) .contact-oval {
          right: 5px; } */
    .contacts .contact:first-child {
        padding: 25px 30px;
    }

    .contacts .contact:first-child .main-phone {
        margin-top: 150px;
    }

    .contacts .contact-info {
        padding-right: 25px;
        width: 400px;
        height: 106px;
    }

    .contacts .contact-oval {
        bottom: 0;
        /* right: -45px; */
        width: 600px;
        height: 125px;
    }

    .contacts .tail {
        left: 200px;
    }

    .blog {
        padding-top: 90px;
    }

    .participants {
        padding-top: 130px;
    }

    .partners {
        padding-bottom: 100px;
    }

    .partners .partner {
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .partners .title {
      padding-top: 5px;
      font-size: 20px;
    }

    .partner div {
        font-size: 16px;
    }

    .partners--index {
        padding-top: 100px;
    }

    .program {
        -ms-grid-rows: 400px 250px 250px 380px 380px;
        grid-template-rows: 400px 250px 250px 380px 380px;
        margin-top: 20px;
    }
}

@media (max-width: 1024px) {
    .main-menu .menu {
        top: 50%;
        padding: 0 55px;
        transform: translateY(-50%);
    }

    .main-menu .menu li {
        margin-bottom: 3vh;
    }

    .header-page .optional-panel {
        width: 65%;
    }

    .footer-page .container {
        width: 65%;
    }

    .footer-page .bottom-menu {
        display: none;
    }

    .footer-page .e-mail {
        margin-top: 30px;
    }

    .footer-page .bottom-panel {
        margin-top: 80px;
    }

    .container {
        width: 80%;
    }

    .content .text-title {
        margin: 50px 0 30px;
    }

    .content .top-block-title {
        padding: 160px 10% 55px;
    }

    .content .map {
        height: 350px;
    }

    .content-wrapper .map img {
        display: block;
        margin: 0;
    }

    .content .crossed-block {
        margin: 30px 0;
        height: 30px;
    }

    .content .bottom-panel {
        margin-top: 70px;
    }

    .content-wrapper {
        padding: 0 10% 15px;
    }

    .popup .page-title {
        margin-bottom: 20px;
    }

    .popup .page-title-container {
        padding-top: 10px;
    }

    .slider-wrapper .dots {
        display: none;
    }

    .slider-cover-block {
        width: 20%;
    }

    .slider-cover-block .slider-control-btn {
        width: 60px;
        height: 100px;
    }

    .slider-cover-block--center {
        left: 10%;
        width: 80%;
    }

    .slider .slide {
        width: 80%;
        min-width: 80%;
    }

    .slider .slide-info {
        padding: 25px 0 25px 20px;
    }

    .slider .slide--ghost {
        width: 20%;
        min-width: 20%;
    }

    .slider--second {
        height: 530px;
    }

    .slider--second .slide-photo {
        width: 60%;
        padding: 0 2% 0 13%;
    }

    .slider--second .slide-info {
        width: 40%;
    }

    .slider--second .slide-title {
        font-size: 24px;
    }

    .scroller-cover-block {
        box-shadow: none;
    }

    .scroller .slide {
        padding-top: 0;
        width: 300px;
        min-width: 300px;
    }

    .scroller .slide-info {
        padding: 60px 15px;
    }

    .scroller .slide-title {
        font-size: 26px;
        height: 90px;
    }

    .index-header .info .buy-ticket {
        top: 10%;
    }

    .index-header .info:before {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        content: '';
    }

    .index-header .container {
        display: none;
    }

    .last-news {
        padding-top: 50px;
    }

    .last-news .page-title {
        padding: 5px 5%;
    }

    .last-news-container {
        width: 90%;
    }

    .last-news .block-title {
        font-size: 38px;
    }

    .last-news .news {
        grid-column-gap: 10px;
    }

    .last-news .news-item-info {
        padding: 20px 10px;
        font-size: 16px;
    }

    .last-news .bottom-panel {
        margin-top: 30px;
    }

    .last-news .bottom-panel .skewed-button-bordered {
        margin: 0 5% 0 auto;
    }

    .for-guests-content {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .for-guests-content .item:nth-child(1),
    .for-guests-content .item:nth-child(2),
    .for-guests-content .item:nth-child(3),
    .for-guests-content .item:nth-child(4),
    .for-guests-content .item:nth-child(5),
    .for-guests-content .item:nth-child(6),
    .for-guests-content .item:nth-child(7),
    .for-guests-content .item:nth-child(8) {
        margin-bottom: 15px;
        width: 49%;
        border: 5px solid #000;
        transform: none;
    }

    .for-guests-content .item:nth-child(1) .item-container,
    .for-guests-content .item:nth-child(2) .item-container,
    .for-guests-content .item:nth-child(3) .item-container,
    .for-guests-content .item:nth-child(4) .item-container,
    .for-guests-content .item:nth-child(5) .item-container,
    .for-guests-content .item:nth-child(6) .item-container,
    .for-guests-content .item:nth-child(7) .item-container,
    .for-guests-content .item:nth-child(8) .item-container {
        border: 0;
        text-align: left;
        transform: none;
    }

    .for-guests-content .item:nth-child(1) .item-content,
    .for-guests-content .item:nth-child(2) .item-content,
    .for-guests-content .item:nth-child(3) .item-content,
    .for-guests-content .item:nth-child(4) .item-content,
    .for-guests-content .item:nth-child(5) .item-content,
    .for-guests-content .item:nth-child(6) .item-content,
    .for-guests-content .item:nth-child(7) .item-content,
    .for-guests-content .item:nth-child(8) .item-content {
        border: 0;
        transform: none;
    }

    .for-guests-content .item:nth-child(1) .item-content:before,
    .for-guests-content .item:nth-child(1) .item-content:after,
    .for-guests-content .item:nth-child(2) .item-content:before,
    .for-guests-content .item:nth-child(2) .item-content:after,
    .for-guests-content .item:nth-child(3) .item-content:before,
    .for-guests-content .item:nth-child(3) .item-content:after,
    .for-guests-content .item:nth-child(4) .item-content:before,
    .for-guests-content .item:nth-child(4) .item-content:after,
    .for-guests-content .item:nth-child(5) .item-content:before,
    .for-guests-content .item:nth-child(5) .item-content:after,
    .for-guests-content .item:nth-child(6) .item-content:before,
    .for-guests-content .item:nth-child(6) .item-content:after,
    .for-guests-content .item:nth-child(7) .item-content:before,
    .for-guests-content .item:nth-child(7) .item-content:after,
    .for-guests-content .item:nth-child(2) .item-content:before,
    .for-guests-content .item:nth-child(8) .item-content:after {
        display: none;
    }

    .for-guests-content .item:nth-child(1) .item-info,
    .for-guests-content .item:nth-child(2) .item-info,
    .for-guests-content .item:nth-child(3) .item-info,
    .for-guests-content .item:nth-child(4) .item-info,
    .for-guests-content .item:nth-child(5) .item-info,
    .for-guests-content .item:nth-child(6) .item-info,
    .for-guests-content .item:nth-child(7) .item-info,
    .for-guests-content .item:nth-child(8) .item-info {
        padding: 20px 4%;
        width: 60%;
    }

    .for-guests-content .item:nth-child(1) .item-info:after,
    .for-guests-content .item:nth-child(2) .item-info:after,
    .for-guests-content .item:nth-child(3) .item-info:after,
    .for-guests-content .item:nth-child(4) .item-info:after,
    .for-guests-content .item:nth-child(5) .item-info:after,
    .for-guests-content .item:nth-child(6) .item-info:after,
    .for-guests-content .item:nth-child(7) .item-info:after,
    .for-guests-content .item:nth-child(6) .item-info:after {
        display: block;
    }

    .for-guests-content .item:nth-child(1) .item-photo,
    .for-guests-content .item:nth-child(2) .item-photo,
    .for-guests-content .item:nth-child(3) .item-photo,
    .for-guests-content .item:nth-child(4) .item-photo,
    .for-guests-content .item:nth-child(5) .item-photo,
    .for-guests-content .item:nth-child(6) .item-photo,
    .for-guests-content .item:nth-child(7) .item-photo,
    .for-guests-content .item:nth-child(8) .item-photo {
        display: block;
        width: 40%;
    }

    .for-guests-content .item:nth-child(1) .item-title,
    .for-guests-content .item:nth-child(2) .item-title,
    .for-guests-content .item:nth-child(3) .item-title,
    .for-guests-content .item:nth-child(4) .item-title,
    .for-guests-content .item:nth-child(5) .item-title,
    .for-guests-content .item:nth-child(6) .item-title,
    .for-guests-content .item:nth-child(7) .item-title,
    .for-guests-content .item:nth-child(8) .item-title {
        font-size: 36px;
    }

    .for-guests-content .item:nth-child(1) .item-title span,
    .for-guests-content .item:nth-child(2) .item-title span,
    .for-guests-content .item:nth-child(3) .item-title span,
    .for-guests-content .item:nth-child(4) .item-title span,
    .for-guests-content .item:nth-child(5) .item-title span,
    .for-guests-content .item:nth-child(6) .item-title span,
    .for-guests-content .item:nth-child(7) .item-title span,
    .for-guests-content .item:nth-child(8) .item-title span {
        font-size: 24px;
    }

    .for-guests-content .item:nth-child(1) .item-text,
    .for-guests-content .item:nth-child(2) .item-text,
    .for-guests-content .item:nth-child(3) .item-text,
    .for-guests-content .item:nth-child(4) .item-text,
    .for-guests-content .item:nth-child(5) .item-text,
    .for-guests-content .item:nth-child(6) .item-text,
    .for-guests-content .item:nth-child(7) .item-text,
    .for-guests-content .item:nth-child(8) .item-text {
        max-height: initial;
    }

    .for-guests-content .item:nth-child(1) .skewed-button,
    .for-guests-content .item:nth-child(2) .skewed-button,
    .for-guests-content .item:nth-child(3) .skewed-button,
    .for-guests-content .item:nth-child(4) .skewed-button,
    .for-guests-content .item:nth-child(5) .skewed-button,
    .for-guests-content .item:nth-child(6) .skewed-button,
    .for-guests-content .item:nth-child(7) .skewed-button,
    .for-guests-content .item:nth-child(8) .skewed-button {
        width: 130px;
    }

    .for-guests-content .item:nth-child(1) .skewed-button-bordered,
    .for-guests-content .item:nth-child(2) .skewed-button-bordered,
    .for-guests-content .item:nth-child(3) .skewed-button-bordered,
    .for-guests-content .item:nth-child(4) .skewed-button-bordered,
    .for-guests-content .item:nth-child(5) .skewed-button-bordered,
    .for-guests-content .item:nth-child(6) .skewed-button-bordered,
    .for-guests-content .item:nth-child(7) .skewed-button-bordered,
    .for-guests-content .item:nth-child(8) .skewed-button-bordered {
        margin: 30px auto 0;
        width: 140px;
    }

    .for-guests-content .item:nth-child(1) .skewed-button-bordered:before,
    .for-guests-content .item:nth-child(2) .skewed-button-bordered:before,
    .for-guests-content .item:nth-child(3) .skewed-button-bordered:before,
    .for-guests-content .item:nth-child(4) .skewed-button-bordered:before,
    .for-guests-content .item:nth-child(5) .skewed-button-bordered:before,
    .for-guests-content .item:nth-child(6) .skewed-button-bordered:before,
    .for-guests-content .item:nth-child(7) .skewed-button-bordered:before,
    .for-guests-content .item:nth-child(8) .skewed-button-bordered:before {
        width: 130px;
    }

    .index-video-content .logo {
        width: 130px;
        height: 170px;
    }

    .index-video-content .info {
        margin: 40px 0 0 80px;
    }

    .index-video-content .info img {
        width: 330px;
        height: 100px;
    }

    .index-video-content .info .dates {
        margin-top: 40px;
        font-size: 26px;
    }

    .index-video-content .info .dates span {
        font-size: 38px;
    }

    .index-video-content .info .skewed-button-bordered {
        margin-top: 50px;
        width: 280px;
        height: 70px;
    }

    .index-video-content .info .skewed-button-bordered:before {
        width: 270px;
        height: 60px;
    }

    .index-video-content .info .skewed-button-bordered:hover .skewed-button {
        background: #FFF;
    }

    .index-video-content .info .skewed-button {
        width: 270px;
        height: 60px;
    }

    .index-video-content .info .skewed-button span {
        line-height: 60px;
    }

    .contacts .container {
        padding: 20px 0;
        width: 728px;
    }

    .contacts .contact {
        width: 364px;
    }

    .contacts .contact:nth-child(4n + 1) {
        -webkit-clip-path: polygon(0 0, 314px 0, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 314px 0, 100% 100%, 0% 100%);
    }

    .contacts .contact:nth-child(4n + 2) {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50px 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 50px 100%);
    }

    .contacts .contact:nth-child(4n + 3) {
        -webkit-clip-path: polygon(0 0, 100% 0, 314px 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 314px 100%, 0 100%);
    }

    .contacts .contact:nth-child(4n + 1) .contact-info, .contacts .contact:nth-child(4n + 3) .contact-info {
        padding-right: 35px;
        width: 390px;
    }

    .contacts .contact:nth-child(4n + 1) .contact-oval, .contacts .contact:nth-child(4n + 3) .contact-oval {
        right: 5px;
    }

    .contacts .contact:first-child .page-title {
        font-size: 38px;
    }

    .contacts .contact:first-child .main-phone {
        margin-top: 120px;
        font-size: 30px;
    }

    .contacts .contact:first-child .main-email {
        margin-top: 20px;
        font-size: 20px;
    }

    .contacts .contact-info {
        padding-right: 0;
        width: 340px;
        height: 110px;
    }

    .contacts .contact-info .name {
        font-size: 22px;
    }

    .contacts .contact-info .position {
        margin-top: 5px;
    }

    .contacts .contact-info .data {
        margin-top: 20px;
    }

    .contacts .contact-info .email,
    .contacts .contact-info .phone {
        display: block;
        float: none;
        margin-bottom: 10px;
        text-align: center;
    }

    .contacts .contact-oval {
        bottom: -45px;
        right: -25px;
        width: 420px;
        height: 200px;
    }

    .partners-light--left {
        left: -85px;
        width: 600px;
        height: 400px;
    }

    .partners-light--right {
        right: -70px;
        width: 700px;
        height: 500px;
    }

    .partners--index {
        padding: 150px 10% 100px;
    }

    .partners--index .partners-title {
        margin-bottom: 80px;
        padding: 0 30px;
    }

    .partners--index .partners-title {
        margin-bottom: 10px;
        padding: 0 30px;
    }

    .partners--index:after {
        left: 10%;
        width: 80%;
    }

    .partner div {
        opacity: 1;
        display: block;
    }
}

@media (max-width: 768px) {
    .header-page .optional-panel {
        width: 68%;
    }

    .header-page .buy-ticket {
        width: 200px;
    }

    .header-page .buy-ticket .skewed-button {
        width: 170px;
    }

    .container {
        width: 90%;
    }

    .feed {
        margin-top: 15px;
        padding: 20px 0 0;
    }

    .feed-title .page-title {
        margin-top: 10px;
    }

    .feed-newsline {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        margin-top: 20px;
        padding-bottom: 50px;
    }

    .feed-item {
        margin: 10px;
    }

    .feed-item-photo {
        height: 230px;
    }

    .feed-item-info .date,
    .feed-item-info .likes {
        margin-top: 20px;
    }

    .feed-item:hover {
        box-shadow: none;
    }

    .feed-more-news {
        margin: 40px auto 0;
    }

    .slider-title-circle {
        width: 17%;
        height: 90px;
    }

    .slider-title-circle .circle {
        bottom: -50px;
        width: 130px;
        height: 130px;
        font-size: 24px;
    }

    .slider-wrapper {
        padding-top: 30px;
    }

    .slider-wrapper--second {
        padding-top: 0;
    }

    .slider-cover-block {
        z-index: -1;
        width: 100%;
        transform: none;
    }

    .slider-cover-block--center {
        z-index: 1;
        left: 0;
    }

    .slider-cover-block--center img {
        transform: none;
    }

    .slider-cover-block--center .slider-cover-block-inner {
        transform: none;
    }

    .slider .slide {
        padding: 0 10px;
        width: 100%;
        min-width: 100%;
        height: 100%;
        transform: none;
    }

    .slider .slide-content {
        transform: none;
    }

    .slider .slide-photo {
        width: 45%;
    }

    .slider .slide-info {
        padding: 30px 25px;
        width: 55%;
    }

    .slider .slide--ghost {
        width: 50%;
        min-width: 50%;
    }

    .slider--second {
        padding-top: 90px;
        height: 530px;
    }

    .slider--second .slider-cover-block {
        top: 90px;
    }

    .slider--second .slides {
        padding-top: 90px;
    }

    .slider--second .slide-photo {
        top: -20%;
        padding: 0 3% 0;
        width: 60%;
        height: 120%;
    }

    .slider--second .slide-info {
        width: 40%;
    }

    .slider--second .slide-title {
        font-size: 24px;
    }

    .slider--second .slide-text {
        color: #FFF;
    }

    .for-guests-content .item:nth-child(1),
    .for-guests-content .item:nth-child(2),
    .for-guests-content .item:nth-child(3),
    .for-guests-content .item:nth-child(4),
    .for-guests-content .item:nth-child(5),
    .for-guests-content .item:nth-child(6),
    .for-guests-content .item:nth-child(7),
    .for-guests-content .item:nth-child(8) {
        width: 100%;
    }

    .contacts .container {
        padding: 20px 0;
        width: 628px;
    }

    .contacts .contact {
        width: 314px;
    }

    .contacts .contact:nth-child(4n + 1) {
        -webkit-clip-path: polygon(0 0, 264px 0, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 264px 0, 100% 100%, 0% 100%);
    }

    .contacts .contact:nth-child(4n + 2) {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50px 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 50px 100%);
    }

    .contacts .contact:nth-child(4n + 3) {
        -webkit-clip-path: polygon(0 0, 100% 0, 264px 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 264px 100%, 0 100%);
    }

    .contacts .contact:nth-child(4n + 1) .contact-info, .contacts .contact:nth-child(4n + 3) .contact-info {
        padding-right: 35px;
        width: 390px;
    }

    .contacts .contact:nth-child(4n + 1) .contact-oval, .contacts .contact:nth-child(4n + 3) .contact-oval {
        right: 5px;
    }

    .contacts .contact:first-child {
        padding-top: 40px;
    }

    .contacts .contact:first-child .main-phone {
        margin-top: 120px;
        font-size: 26px;
    }

    .contacts .contact:first-child .main-email {
        margin-top: 15px;
        font-size: 16px;
    }

    .contacts .contact-info {
        padding-right: 0;
        width: 275px;
        height: 110px;
    }

    .contacts .contact-info .name {
        font-size: 20px;
    }

    .contacts .contact-info .email,
    .contacts .contact-info .phone {
        display: block;
        float: none;
        margin-bottom: 10px;
        text-align: center;
    }

    .contacts .contact-oval {
        bottom: -40px;
        right: -25px;
        width: 420px;
        height: 200px;
    }

    .blog .feed-item:nth-child(1) {
        grid-area: 1 / 1 / 1 / 1;
    }

    .blog .feed-item:nth-child(1) .feed-item-photo {
        height: 230px;
    }

    .blog .feed-item:nth-child(1) .feed-item-info {
        padding: 0 15px 20px;
    }

    .blog .feed-item:nth-child(1) .feed-item-info .text {
        margin-top: 15px;
        font-size: 22px;
    }

    .blog .feed-item:nth-child(2) .feed-item-photo, .blog .feed-item:nth-child(3) .feed-item-photo {
        height: 230px;
    }

    .blog .feed-item:nth-child(2) .feed-item-info, .blog .feed-item:nth-child(3) .feed-item-info {
        position: relative;
        bottom: initial;
        background: none;
        border-bottom-right-radius: initial;
        border-bottom-left-radius: initial;
    }

    .blog .feed-item:nth-child(2) .feed-item-info .date, .blog .feed-item:nth-child(3) .feed-item-info .date {
        color: #999;
    }

    .blog .feed-item:nth-child(2) .feed-item-info .likes,
    .blog .feed-item:nth-child(2) .feed-item-info .text, .blog .feed-item:nth-child(3) .feed-item-info .likes,
    .blog .feed-item:nth-child(3) .feed-item-info .text {
        color: #333;
    }

    .program .item-title {
        line-height: 1.2;
    }

    .program .item:nth-child(1) .item-title {
        font-size: 32px;
    }

    .program .item:nth-child(2) .item-title {
        font-size: 24px;
    }

    .program .item:nth-child(3) .item-title, .program .item:nth-child(4) .item-title {
        font-size: 20px;
    }

    .program .item:nth-child(5) .item-title, .program .item:nth-child(6) .item-title, .program .item:nth-child(7) .item-title, .program .item:nth-child(8) .item-title, .program .item:nth-child(9) .item-title, .program .item:nth-child(10) .item-title {
        font-size: 20px;
    }
}

@media (max-width: 667px) {
    .main-menu {
        height: 50px;
        width: 50px;
    }

    .main-menu .open-close-menu {
        padding: 15px;
        width: 50px;
        height: 50px;
    }

    .main-menu .hamburger {
        margin-bottom: initial;
        height: 15px;
    }

    .main-menu .row {
        height: 3px;
    }

    .main-menu .text {
        display: none;
    }

    .main-menu .light {
        width: 100vw;
    }

    .main-menu .menu {
        top: 20px;
        padding: 10px;
        width: 100vw;
        transform: none;
    }

    .main-menu .menu li {
        margin-bottom: 15px;
        text-align: center;
    }

    .main-menu .menu a {
        font-family: "Oswald Regular";
        font-size: 18px;
    }

    .main-menu .cow {
        right: initial;
        left: 50%;
        transform: translateX(-50%);
    }

    .main-menu.opened .row--1, .main-menu.opened .row--3, .main-menu.closed .row--1, .main-menu.closed .row--3 {
        left: 5%;
        width: 90%;
    }

    .header-page {
        display: block;
        padding: 0 50px;
        height: 50px;
    }

    .header-page .logo {
        width: 50px;
        height: 50px;
    }

    .header-page .optional-panel {
        width: 100%;
        align-items: center;
    }

    .header-page .options:before,
    .header-page .enter:before {
        display: none;
    }

    .header-page .buy-ticket {
        order: 5;
    }

    .header-page .languages,
    .header-page .socials {
        padding-left: initial;
    }

    .header-page .languages,
    .header-page .go-to-cabinet {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        padding-bottom: initial;
        border-bottom: 0;
    }

    .header-page .languages a,
    .header-page .go-to-cabinet a {
        margin-left: initial;
        margin-bottom: 3px;
        font-size: 12px;
    }

    .header-page .languages a:last-child,
    .header-page .go-to-cabinet a:last-child {
        margin-bottom: 0;
    }

    .header-page .languages {
        width: 50px;
        height: 50px;
        text-align: center;
    }

    .header-page .buy-ticket {
        margin-top: initial;
        width: 85px;
        height: 50px;
        border: 0;
    }

    .header-page .buy-ticket .skewed-button {
        margin: initial;
        padding-top: 7px;
        width: 100%;
        height: 100%;
        border-radius: 0;
        font-family: "OpenSans SemiBold";
        font-size: 12px;
        line-height: initial;
        transform: none;
    }

    .header-page .buy-ticket .skewed-button span {
        line-height: initial;
        transform: none;
    }

    .header-page .buy-ticket:before, .header-page .buy-ticket:after {
        display: none;
    }

    .header-page .enter {
        position: relative;
        height: 50px;
        width: 62px;
    }

    .header-page .enter:before {
        display: block;
        position: absolute;
        top: 10%;
        left: 0;
        width: 1px;
        height: 80%;
        background: #333;
        content: '';
    }

    .header-page .go-to-cabinet {
        display: block;
        padding-right: 0;
    }

    .header-page .go-to-cabinet a {
        display: block;
        margin-bottom: 0;
        padding-top: 10px;
        height: 50px;
        text-align: center;
    }

    .header-page .go-to-cabinet span {
        display: none;
    }

    .header-page .go-to-cabinet img {
        display: inline;
    }

    .wrapper {
        padding: 50px 0;
    }

    .container {
        width: 95%;
    }

    .content-container {
        margin-top: 10px;
        padding: 15px 0 0;
    }

    .content p {
        margin-bottom: 20px;
    }

    .content p.capital-letter:first-letter {
        padding-right: 20px;
        font-size: 80px;
    }

    .content blockquote {
        margin: 40px 0;
        padding: 15px 30px;
        font-size: 20px;
    }

    .content ul,
    .content ol {
        padding-left: 20px;
    }

    .content ul ul,
    .content ul ol,
    .content ol ul,
    .content ol ol {
        padding-left: 20px;
    }

    .content table {
        margin: 30px 0 50px;
    }

    .content table caption {
        margin-bottom: 15px;
        font-size: 32px;
    }

    .content table tr {
        display: block;
        padding: 10px 0;
    }

    .content table th {
        display: block;
        margin-bottom: 10px;
    }

    .content table td {
        -ms-flex: none;
        flex: none;
        width: 80%;
        display: inline-block;
        padding: 0 10px;
    }

    .content table td:last-child {
        vertical-align: top;
        width: 15%;
        text-align: center;
    }

    .content .block-title,
    .content .text-title {
        margin: 35px 0 25px;
        font-size: 24px;
    }

    .content .text-title {
        font-size: 22px;
    }

    .content .map {
        height: 250px;
    }

    .content-wrapper .map img {
        display: block;
        margin: 0;
    }

    .content .top-block {
        height: 230px;
    }

    .content .top-block-title {
        padding: 100px 5% 15px;
    }

    .content .top-block-title-text {
        font-size: 28px;
    }

    .content .share-block .other-news {
        width: 50%;
    }

    .content .bottom-panel {
        margin-top: 40px;
    }

    .content .error {
        padding: 3vh 0;
    }

    .content .error-title {
        font-size: 36px;
    }

    .content .error-title span {
        margin-bottom: 0;
        font-size: 140px;
    }

    .content .error .skewed-button-bordered {
        margin: 30px auto 0;
    }

    .content-wrapper {
        padding: 0 5% 15px;
    }

    .content-wrapper img {
        margin: 30px 0;
    }

    .popup {
        top: 0;
        padding-bottom: 15px;
        width: 92%;
    }

    .popup .close-btn {
        width: 34px;
        height: 34px;
        line-height: 28px;
        text-transform: lowercase;
        transform: translate3d(20%, 0, 0);
    }

    .popup .page-title {
        padding: 5px 25px;
    }

    .popup-content .top-block-title {
        padding: 100px 25px 15px;
    }

    .popup-content-wrapper {
        padding: 0 25px;
    }

    .footer-page .container {
        display: block;
        padding: 0 15px;
        width: 100%;
        text-align: center;
    }

    .footer-page .phones a {
        font-size: 18px;
    }

    .footer-page .e-mail {
        margin-top: 30px;
        font-size: 16px;
    }

    .footer-page .socials {
        margin-top: 40px;
    }

    .footer-page .buy-ticket {
        margin-top: 40px;
        padding: 0 12px;
        width: 100%;
    }

    .footer-page .buy-ticket p {
        padding: 0 10px;
    }

    .footer-page .buy-ticket .skewed-button {
        margin: 25px auto;
    }

    .footer-page .bottom-panel {
        margin-top: 75px;
        padding: 0 15px;
        font-size: 9px;
    }

    .footer-page .clock-logo svg {
        margin-left: 10px;
    }

    .page-title {
        font-size: 32px;
    }

    .tags {
        padding: 7px 0;
    }

    .tags ul {
        padding-left: 20px;
    }

    .tags ul:before {
        left: 5px;
    }

    .tags a {
        margin-right: 15px;
        font-size: 12px;
    }

    .feed {
        padding: 10px 0 0;
    }

    .feed-title {
        padding-left: 15px;
    }

    .feed-title .page-title {
        margin-top: 5px;
    }

    .feed-newsline {
        margin-top: 10px;
        padding: 0 5px 30px;
    }

    .feed-item {
        margin: 5px;
    }

    .feed-item-photo {
        height: 200px;
    }

    .slider {
        height: 390px;
    }

    .slider-title-circle {
        display: none;
    }

    .slider-wrapper {
        padding-top: 30px;
    }

    .slider-wrapper .red-line .skewed-button-bordered {
        left: 50%;
        margin-left: -105px;
    }

    .slider-wrapper--second {
        padding-top: 0;
    }

    .slider .slides {
        padding-bottom: 0;
        height: 100%;
    }

    .slider .slide-photo {
        width: 30%;
    }

    .slider .slide-info {
        padding: 15px 20px;
        width: 70%;
    }

    .slider .slide-title {
        font-size: 26px;
    }

    .slider .slide-text {
        margin-top: 20px;
    }

    .slider--second {
        padding-top: 40px;
        height: 330px;
    }

    .slider--second .slider-cover-block {
        top: 40px;
    }

    .slider--second .slides {
        padding-top: 40px;
    }

    .slider--second .slide-photo {
        top: 0;
        padding: 0 2%;
        width: 40%;
        height: 100%;
    }

    .slider--second .slide-info {
        padding: 15px 5px;
        width: 60%;
    }

    .scroller {
        height: 530px;
    }

    .scroller-cover-block,
    .scroller .back-layer-cover-block {
        display: none;
    }

    .scroller .slides-wrapper {
        padding: 0;
        padding-bottom: 20px;
        height: 100%;
    }

    .scroller .slides {
        top: 0;
        padding: 0 10px;
        height: 100%;
    }

    .scroller .slide {
        width: 280px;
        min-width: 280px;
    }

    .scroller .slide-info {
        padding: 30px 15px;
    }

    .scroller .slide-title {
        height: 70px;
    }

    .scroller .slide-text {
        margin-top: 20px;
    }

    .scroller .slide:hover {
        padding-top: 0;
    }

    .index-header .info {
        min-height: initial;
    }

    .index-header .info .right-part,
    .index-header .info .left-part {
        padding-top: 15vh;
    }

    .index-header .info .comic {
        height: 70.95px;
    }

    .index-header .info .ukraine {
        width: 151.52px;
        height: 30px;
        object-position: center;
        object-fit: contain;
    }

    .index-header .info .right-part {
        margin-left: 25px;
        width: 100px;
    }

    .index-header .info .buy-ticket {
        top: 7%;
        left: -15px;
        width: 80px;
        height: 80px;
    }

    .index-header .info .date {
        font-size: 16px;
    }

    .index-header .info .place {
        font-size: 8px;
        line-height: 12px;
        margin-top: 5px;
    }

    .index-header .info .place img {
        max-width: 100%;
    }

    .index-header .go-down {
        bottom: 5vh;
    }

    .last-news {
        padding-top: 30px;
    }

    .last-news-container {
        width: 90%;
    }

    .last-news .block-title {
        font-size: 28px;
    }

    .last-news .news {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .last-news .news-item {
        margin-bottom: 15px;
        width: 49%;
        height: initial;
    }

    .last-news .news-item-info {
        position: relative;
        padding: 80px 20px 30px;
        height: 100%;
        background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    }

    .last-news .news-item-info .text {
        font-size: 18px;
    }

    .last-news .news-item:first-child {
        height: initial;
    }

    .last-news .news-item:first-child .news-item-info {
        padding: 80px 20px 30px;
        background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    }

    .last-news .news-item:first-child .news-item-info .date,
    .last-news .news-item:first-child .news-item-info .likes {
        margin-bottom: 10px;
        color: #FFF;
    }

    .last-news .news-item:first-child .news-item-info .text {
        color: #FFF;
        font-size: 18px;
    }

    .last-news .news-item:nth-child(2), .last-news .news-item:nth-child(3) {
        margin-bottom: 15px;
    }

    .last-news .bottom-panel .red-line {
        height: 10px;
    }

    .last-news .crossed-block {
        height: 10px;
    }

    .index-video {
        display: block;
        padding: 40px 10px;
        width: 100%;
        height: initial;
    }

    .index-video-content {
        display: block;
    }

    .index-video-content .logo {
        display: block;
        margin: 0 auto;
        width: 100px;
        height: 130px;
    }

    .index-video-content .info {
        margin: 15px 0 0;
    }

    .index-video-content .info img {
        display: block;
        margin: 0 auto;
        width: 250px;
        height: 60px;
    }

    .index-video-content .info .dates {
        margin-top: 15px;
        font-size: 20px;
        text-align: center;
    }

    .index-video-content .info .dates span {
        font-size: 30px;
    }

    .index-video-content .info .skewed-button-bordered {
        margin: 20px auto 0;
        width: 240px;
        height: 60px;
    }

    .index-video-content .info .skewed-button-bordered:before {
        width: 230px;
        height: 50px;
    }

    .index-video-content .info .skewed-button-bordered:hover .skewed-button {
        background: #FFF;
    }

    .index-video-content .info .skewed-button {
        width: 230px;
        height: 50px;
    }

    .index-video-content .info .skewed-button span {
        line-height: 50px;
    }

    .contacts {
        padding: 60px 0 20px;
    }

    .contacts .container {
        padding: 15px 10px;
        width: 94%;
    }

    .contacts .contact {
        width: 100%;
        padding-top: 200px;
        height: initial;
    }

    .contacts .contact:nth-child(4n + 1), .contacts .contact:nth-child(4n + 2), .contacts .contact:nth-child(4n + 3), .contacts .contact:nth-child(4n + 4) {
        left: initial;
        -webkit-clip-path: none;
        clip-path: none;
    }

    .contacts .contact:nth-child(4n + 1):before, .contacts .contact:nth-child(4n + 2):before, .contacts .contact:nth-child(4n + 3):before, .contacts .contact:nth-child(4n + 4):before {
        display: none;
    }

    .contacts .contact:nth-child(4n + 1) .contact-info, .contacts .contact:nth-child(4n + 3) .contact-info {
        padding-right: 0;
        width: 100%;
    }

    .contacts .contact:nth-child(4n + 1) .contact-oval, .contacts .contact:nth-child(4n + 3) .contact-oval {
        right: 0px;
    }

    .contacts .contact:first-child {
        padding: 10px;
        height: initial;
    }

    .contacts .contact:first-child .page-title {
        font-size: 26px;
        padding-left: 5px;
    }

    .contacts .contact:first-child .main-phone {
        margin-top: 20px;
        font-size: 24px;
    }

    .contacts .contact:first-child .main-email {
        margin-top: 10px;
        font-size: 16px;
    }

    .contacts .contact-info {
        width: 100%;
        height: initial;
    }

    .contacts .contact-info .name {
        font-size: 20px;
    }

    .contacts .contact-info .email,
    .contacts .contact-info .phone {
        display: block;
        float: none;
        margin-bottom: 10px;
        text-align: center;
    }

    .contacts .contact-info .phone {
        font-size: 16px;
    }

    .contacts .contact-oval {
        /* bottom: -25px; */
        right: initial;
        /* left: 50%; */
        /* transform: translateX(-50%); */
        width: 100%;
        height: 145px;
    }

    .contacts .tail {
        left: 120px;
        top: -10px;
        width: 17px;
        height: 17px;
    }

    .blog {
        padding-top: 50px;
    }

    .blog .feed-item:nth-child(1) .feed-item-photo, .blog .feed-item:nth-child(2) .feed-item-photo, .blog .feed-item:nth-child(3) .feed-item-photo {
        height: 200px;
    }

    .participants {
        padding-top: 50px;
    }

    .partners {
        margin-top: 30px;
        padding-bottom: 50px;
    }

    .partners .partner {
        margin-bottom: 40px;
        width: 50%;
    }

    .partners .title {
      padding-top: 5px;
      font-size: 20px;
    }

    .partner div {
        font-size: 14px;
    }

    .partners .partner__name {
        margin-top: 10px;
    }

    .partners .partner__position {
        margin-top: 5px;
    }

    .partners-light--right {
        right: -90px;
    }

    .partners--index {
        margin: 0 auto;
        padding: 80px 4% 50px;
        width: 100%;
    }

    .partners--index .partners-title {
        display: block;
        margin-bottom: 70px;
        padding: 0 30px;
        font-size: 38px;
    }

    .partners--index .partners-subtitle {
        display: block;
        margin-bottom: 10px;
        padding: 0 30px;
        font-size: 22px;
    }

    .program {
        display: block;
        margin-top: 30px;
        padding: 0 10px 20px;
    }

    .program .item {
        margin-bottom: 15px;
    }

    .program .item-bottom-panel {
        position: relative;
        padding: 15% 20px 10%;
        height: initial;
    }

    .program .item-title {
        margin-bottom: 10px;
        height: initial;
    }

    .program .item-text {
        font-family: "OpenSans Regular";
        font-size: 16px;
        line-height: 1.3;
    }

    .program .item:hover .item-bottom-panel {
        padding-top: 15%;
        height: 100%;
    }

    .program .item:nth-child(1) .item-title {
        height: initial;
    }

    .program .item:nth-child(1) .item-text {
        width: 100%;
    }

    .program .item:nth-child(1) .item-title, .program .item:nth-child(2) .item-title, .program .item:nth-child(3) .item-title, .program .item:nth-child(4) .item-title, .program .item:nth-child(5) .item-title, .program .item:nth-child(6) .item-title, .program .item:nth-child(7) .item-title, .program .item:nth-child(8) .item-title, .program .item:nth-child(9) .item-title, .program .item:nth-child(10) .item-title {
        font-size: 26px;
    }
}

@media (max-width: 414px) {
    .main-menu .menu {
        top: 100px;
    }

    .main-menu .menu li {
        margin-bottom: 30px;
    }

    /*.background-page {
    overflow: hidden;
    height: 200vh; }*/
    .background-page img {
        height: 100%;
    }

    .feed-title {
        padding-left: 13px;
    }

    .feed-newsline {
        display: block;
    }

    .feed-item {
        display: block;
        margin-bottom: 10px;
    }

    .content .share-block {
        display: block;
        margin: 40px 0 10px;
    }

    .content .share-block .likes,
    .content .share-block .other-news,
    .content .share-block .share {
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 20px;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .content .share-block .other-news {
        margin: 0 auto 20px;
        padding: 10px 0;
        width: 90%;
    }

    .content .error {
        padding: 20vh 0;
    }

    .content .error-title {
        font-size: 30px;
    }

    .content .error-title span {
        font-size: 130px;
    }

    .slider {
        height: initial;
    }

    .slider-wrapper {
        padding-top: 15px;
    }

    .slider .slide-content {
        display: block;
        position: relative;
        padding-bottom: 70px;
    }

    .slider .slide-photo {
        width: 100%;
        height: 220px;
    }

    .slider .slide-info {
        padding: 15px 10px;
        width: 100%;
    }

    .slider .slide-title {
        font-size: 20px;
    }

    .slider .slide-text {
        margin-top: 10px;
    }

    .slider .slide-button {
        right: 50%;
        bottom: 10px;
        transform: translateX(50%);
    }

    .slider--second {
        padding-top: 0;
    }

    .slider--second .slider-cover-block--center {
        top: 130px;
        height: 100%;
    }

    .slider--second .slides {
        position: relative;
    }

    .slider--second .slide {
        padding: 0;
    }

    .slider--second .slide-content {
        padding-bottom: 0;
    }

    .slider--second .slide-info {
        padding-bottom: 90px;
        background: #333;
    }

    .index-header .info .right-part,
    .index-header .info .left-part {
        padding-top: 0;
    }

    .last-news .news-item {
        width: 100%;
    }

    .last-news .bottom-panel {
        margin-top: 10px;
    }

    .for-guests-content {
        display: block;
    }

    .for-guests-content .item:nth-child(1),
    .for-guests-content .item:nth-child(2),
    .for-guests-content .item:nth-child(3),
    .for-guests-content .item:nth-child(4),
    .for-guests-content .item:nth-child(5),
    .for-guests-content .item:nth-child(6),
    .for-guests-content .item:nth-child(7),
    .for-guests-content .item:nth-child(8) {
        background: rgba(0, 0, 0, 0);
    }

    .for-guests-content .item:nth-child(1) .item-content,
    .for-guests-content .item:nth-child(2) .item-content,
    .for-guests-content .item:nth-child(3) .item-content,
    .for-guests-content .item:nth-child(4) .item-content,
    .for-guests-content .item:nth-child(5) .item-content,
    .for-guests-content .item:nth-child(6) .item-content,
    .for-guests-content .item:nth-child(7) .item-content,
    .for-guests-content .item:nth-child(8) .item-content {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .for-guests-content .item:nth-child(1) .item-info,
    .for-guests-content .item:nth-child(2) .item-info,
    .for-guests-content .item:nth-child(3) .item-info,
    .for-guests-content .item:nth-child(4) .item-info,
    .for-guests-content .item:nth-child(5) .item-info,
    .for-guests-content .item:nth-child(6) .item-info,
    .for-guests-content .item:nth-child(7) .item-info,
    .for-guests-content .item:nth-child(8) .item-info {
        -ms-flex-order: 2;
        order: 2;
        width: 100%;
        background: rgba(0, 0, 0, 0);
    }

    .for-guests-content .item:nth-child(1) .item-info:after,
    .for-guests-content .item:nth-child(2) .item-info:after,
    .for-guests-content .item:nth-child(3) .item-info:after,
    .for-guests-content .item:nth-child(4) .item-info:after,
    .for-guests-content .item:nth-child(5) .item-info:after,
    .for-guests-content .item:nth-child(6) .item-info:after,
    .for-guests-content .item:nth-child(7) .item-info:after,
    .for-guests-content .item:nth-child(8) .item-info:after {
        display: none;
    }

    .for-guests-content .item:nth-child(1) .item-photo,
    .for-guests-content .item:nth-child(2) .item-photo,
    .for-guests-content .item:nth-child(3) .item-photo,
    .for-guests-content .item:nth-child(4) .item-photo,
    .for-guests-content .item:nth-child(5) .item-photo,
    .for-guests-content .item:nth-child(6) .item-photo,
    .for-guests-content .item:nth-child(7) .item-photo,
    .for-guests-content .item:nth-child(8) .item-photo {
        width: 100%;
        max-height: 250px;
        object-fit: contain;
        object-position: center;
    }
}

.content-block {
    opacity: 0;
    /* //height: 0px; // this property does not give a complete valuation of body height for further use in JS */
    /* //overflow: hidden; // this style made conflict with property - position: sticky for section #loft */
    visibility: hidden;
}

.content-block.active {
    opacity: 1;
    height: 100%;
    visibility: visible;
}

.tikets_page {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background-image: url(../images/tiketscover.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

.form-wrapper {
    width: 480px;
    margin: auto;
    padding: 30px 30px 0 60px;
    background: #fff;
    border-bottom: 15px solid #931B0E;

}

.form-wrapper label {
    font-family: "OpenSans Regular";
    min-width: 180px;
    display: inline-block;
}

.form-wrapper .form-item {
    margin: 0 0 30px 0;
    position: relative;

}

.form-item input,
.form-item select {
    padding: 5px;
    border: none;
    border-bottom: 2px solid #999;
}

.form-item input:focus,
.form-item select:focus {
    outline: none;
    border-color: #1e86bb;
}

.form-item label + div.checkbox {
    margin-left: 20px;
}

.form-wrapper input.invalid {
    border-color: red;
}

.form-item + .form-item {
    padding: 0;
}

.form-item + .form-item + .form-item {
    padding: 0;
}

.form-item + .form-item + .form-item + .form-item {
    padding: 0;
}


.form-wrapper form {

}

.skewx-wrap {
    transform: skewX(-15deg);
}

.skewx-row {
    transform: skewX(15deg);
}

.form-wrapper .skewed-button-bordered {
    margin: 25px auto 0;

}

.link {
    color: #333;
    transition: all 0.3s;
    position: relative;
}

.link:before {
    content: '';
    position: absolute;
    width: 110%;
    height: 1px;
    background-color: #333;
    left: -5%;
    bottom: 0;
    transition: all 0.3s;
}

.link:hover {
    color: #999;
    border-bottom: 0px solid #333;
}

.link:hover:before {
    width: 0;
    left: 50%;
    background-color: #999;
}

.checkbox {
    width: 15px;
    height: 15px;
    border: 1px solid #999;
    border-radius: 2px;
    position: relative;
    display: inline-block;
}

.checkbox input {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    z-index: 2;
    cursor: pointer;
}

.checkbox input:checked + div.checkbox-mark {
    background-image: url(/themes/comic/images/checkbox.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 120%;
    height: 116%;
    position: absolute;
    bottom: 0;
    left: 1px;
}

@media (max-width: 670px) {
    .tikets_page .skewx-wrap,
    .tikets_page .skewx-row {
        -webkit-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .tikets_page .skewx-wrap {
        max-width: 90%;
        padding: 30px;
    }
}

@media (max-width: 460px) {
    .tikets_page form {
        width: 100%;
    }

    .tikets_page .skewx-wrap {
        padding: 20px 15px;
    }

    .form-wrapper label {
        min-width: 120px;
    }

    .form-wrapper .form-item {
        display: flex;
    }

    .tikets_page .form-item input, .form-item select {
        width: 140px;
    }
}

.go-to-cabinet {
    display: none !important;
}

.bottom-bg {
    background: url(../images/background.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center bottom;
}

@media (min-width: 1900px) {
    .bottom-bg {
        -webkit-background-size: cover;
        background-size: cover;
    }
}

.logo a {
    display: block;
    width: 80px;
    height: 89px;
    overflow: hidden;
    background: url(../images/logo.png) no-repeat;
    color: rgba(51, 51, 51, 0);
}

@media (max-width: 1370px) {
    .logo a {
        width: 63px;
        height: 70px;
        background-size: 100%
    }
}

@media (max-width: 668px) {
    .logo a {
        width: 36px;
        height: 43px;
        background-size: 100%
    }
}

.content-wrapper .text-title {
    display: block;
    font-family: "Oswald Bold";
    font-size: 22px;
    line-height: 1.3;
    color: #333;
    margin: 40px 0 40px;
}

.team {
    position: relative;
    z-index: 2;
    padding: 176px 0 60px;
    width: 100%;
}

.custom-container {
    display: block;
    margin: 0 auto;
    width: 1170px;
}

@media (max-width: 1366px) {
    .custom-container {
        width: 980px;
    }
}

@media (max-width: 1024px) {
    .custom-container {
        width: 728px;
    }
}

@media (max-width: 768px) {
    .custom-container {
        width: 628px;
    }
}

@media (max-width: 667px) {
    .custom-container {
        width: 94%;
    }
}

.team__container {
    padding: 50px 0;
    background: #FFF;
}

.team-description {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 25px 25px;
    font-family: "OpenSans Regular";
    font-size: 16px;
    line-height: 1.3;
}

.team-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 25px;
}

.team-member {
    width: 35.3%;
    height: 380px;
    position: relative;
    margin-bottom: 30px;
    border: 2px solid #000;
    overflow: hidden;
}

.team-member:before,
.team-member:after {
    display: block;
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: 2px;
    height: 120%;
    background: #000;
    content: '';
    transform-origin: 100% 100%;
}

@media (min-width: 1025px) {
    .team-member:nth-child(6n - 5) {
        clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
        margin-right: -5%;
    }

    .team-member:nth-child(6n - 5):before {
        right: 47px;
        -webkit-transform: rotate(7.3deg);
        -ms-transform: rotate(7.3deg);
        -o-transform: rotate(7.3deg);
        transform: rotate(7.3deg);
    }

    .team-member:nth-child(6n - 5):after {
        display: none;
    }

    .team-member:nth-child(6n - 4) {
        clip-path: polygon(50px 0, calc(100% - 50px) 0, 100% 100%, 0 100%);
        margin-left: -5%;
        margin-right: -5%;
    }

    .team-member:nth-child(6n - 4):before {
        right: -1px;
        -webkit-transform: rotate(-7.3deg);
        -ms-transform: rotate(-7.3deg);
        -o-transform: rotate(-7.3deg);
        transform: rotate(-7.3deg);
    }

    .team-member:nth-child(6n - 4):after {
        left: -2px;
        -webkit-transform: rotate(7.3deg);
        -ms-transform: rotate(7.3deg);
        -o-transform: rotate(7.3deg);
        transform: rotate(7.3deg);
    }

    .team-member:nth-child(6n - 3) {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 50px 100%);
        margin-left: -5%;
    }

    .team-member:nth-child(6n - 3):before {
        left: 47px;
        -webkit-transform: rotate(-7.3deg);
        -ms-transform: rotate(-7.3deg);
        -o-transform: rotate(-7.3deg);
        transform: rotate(-7.3deg);
    }

    .team-member:nth-child(6n - 3):after {
        display: none;
    }

    .team-member:nth-child(6n - 2) {
        clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 100%, 0 100%);
        margin-right: -5%;
    }

    .team-member:nth-child(6n - 2):before {
        right: -1px;
        -webkit-transform: rotate(-7.3deg);
        -ms-transform: rotate(-7.3deg);
        -o-transform: rotate(-7.3deg);
        transform: rotate(-7.3deg);
    }

    .team-member:nth-child(6n - 2):after {
        display: none;
    }

    .team-member:nth-child(6n - 1) {
        clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 50px 100%);
        margin-right: -5%;
        margin-left: -5%;
    }

    .team-member:nth-child(6n - 1):before {
        right: 47px;
        -webkit-transform: rotate(7.3deg);
        -ms-transform: rotate(7.3deg);
        -o-transform: rotate(7.3deg);
        transform: rotate(7.3deg);
    }

    .team-member:nth-child(6n - 1):after {
        left: 47px;
        -webkit-transform: rotate(-7.3deg);
        -ms-transform: rotate(-7.3deg);
        -o-transform: rotate(-7.3deg);
        transform: rotate(-7.3deg);
    }

    .team-member:nth-child(6n) {
        clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
        margin-left: -5%;
    }

    .team-member:nth-child(6n):before {
        left: -2px;
        -webkit-transform: rotate(7.3deg);
        -ms-transform: rotate(7.3deg);
        -o-transform: rotate(7.3deg);
        transform: rotate(7.3deg);
    }

    .team-member:nth-child(6n):after {
        display: none;
    }
}

.team-member img {
    /* position: absolute;
  top: 0;
  left: 0; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-member .contact-info {
    background: #fff;
    border-top: 2px solid #000;
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    padding: 10px;
    min-height: 110px;
}

.team-member .name,
.team-member .data,
.team-member .position {
    display: block;
    text-align: center;
    font-family: "Oswald Bold";

}

.team-member .name {
    color: #333;
    font-size: 24px;
}

.team-member .position {
    margin-top: 15px;
    color: #666;
    font-size: 16px;
}

.team-member .data {
    margin-top: 10px;
}

.team-member .data a {
    font-size: 14px;
    color: #999;
    font-family: "OpenSans SemiBold";
    transition: color 0.3s;
}

@media (max-width: 1024px) {
    .team-member {
        width: 48.5%;
        height: 370px;
    }

    .team-member:after,
    .team-member:before {
        display: none;
    }
}

@media (max-width: 667px) {
    .team-member {
        width: 100%;
        max-width: 380px;
        height: 330px;
        margin-left: auto;
        margin-right: auto;
    }
}


.shedule-title {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.shedule-title span {
    font-size: 28px;
    text-transform: uppercase;
    color: #333;
    font-family: "Oswald Bold";
}

.shedule-sub-title {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.shedule-sub-title span {
    font-size: 20px;
    color: #333;
    font-family: "Oswald Bold";
}

.shedule-list {
    margin: 0;
    padding: 0;
}

.shedule-list li {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    /*   border:2px solid #555; */
    /*   transform-origin: 50% 100%; */
    /* transform: skewX(-15deg); */
    padding: 20px;
    position: relative;
}

.shedule-list li:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 5px;
    background: url(../images/cross-title.png);
    bottom: 0;
    left: 0;
}

.shedule-list li:hover {
    background: #f3f2f2;
    transition: all 2s;
}

.shedule-list li div {
    /* transform: skewX(15deg); */
}

.shedule-list .time {
    width: 120px;
    min-width: 120px;
    font-size: 18px;
    color: #333;
    font-family: "Oswald Bold";
    font-weight: bold;
}

.shedule-list .shedule-description {
    width: 100%;
    border-left: 2px solid #333;
    padding-left: 15px;
}

@media (max-width: 667px) {
    .shedule-title span {
        font: size 18px;
    }

    .shedule-sub-title span {
        font: size 10px;
    }

    .shedule-list .time {
        font-size: 16px;
    }
}
