:root {
    /* Основные цвета (из логотипа) */
    --template-primary: #005679;     /* Тёмный сине-зелёный */
    --template-primary2: #1A9FDA;    /* Яркий голубой (верхняя часть градиента) */

    /* Кораллово-оранжевые акценты */
    --template-secondary: #FF6B4D;   /* Основной акцент (кораллово-оранжевый) */
    --template-secondary2: #D8583F;  /* Потемнённый вариант для hover-состояний */

    /* Базовые цвета */
    --color-black: #121212 !important;
    --color-gray: #626262 !important;
    --color-white: #ffffff !important;
    --font-color: #ffffff !important;
    --color-background: #0f1a24 !important; /* Тёмный фон с синеватым подтоном */
    --font-name: 'Ubuntu', sans-serif !important;

    /* RGB-представления */
    --rgb-template-primary: 0, 86, 121;
    --rgb-template-primary2: 26, 159, 218;
    --rgb-template-secondary: 255, 107, 77;
    --rgb-template-secondary2: 216, 88, 63;

    --rgb-color-black: 18, 18, 18;
    --rgb-color-white: 255, 255, 255;
    --rgb-color-gray: 98, 98, 98;
}

html, body {
    font-family: var(--font-name) !important;
    background-color: var(--color-background) !important;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
    font-style: normal;
    color: var(--font-color);
    padding: 0;
    margin: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

::selection {
    color: #fff;
    background: #2D9CDB;
}

::-moz-selection {
    color: #fff;
    background: #2D9CDB;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1;
}

p {
    margin: 0 0 20px;
}

ul {
    list-style-position: inside;
    padding-left: 0;
}

.owfx {
    overflow-x: hidden;
}

.owfx-visible {
    overflow-x: visible;
}

.owfy {
    overflow-y: hidden;
}

.owfy-visible {
    overflow-y: visible;
}

.text-nowrap {
    white-space: nowrap !important;
}

.colf-0 {
    width: 0;
}

@media screen and (min-width: 576px) {
    .owfx-sm {
        overflow-x: hidden;
    }

    .owfx-visible-sm {
        overflow-x: visible;
    }

    .owfy-sm {
        overflow-y: hidden;
    }

    .owfy-visible-sm {
        overflow-y: visible;
    }

    .text-sm-normal {
        white-space: normal !important;
    }

    .text-sm-nowrap {
        white-space: nowrap !important;
    }

    .colf-sm-0 {
        width: 0;
    }
}

@media screen and (min-width: 768px) {
    .owfx-md {
        overflow-x: hidden;
    }

    .owfx-visible-md {
        overflow-x: visible;
    }

    .owfy-md {
        overflow-y: hidden;
    }

    .owfy-visible-md {
        overflow-y: visible;
    }

    .text-md-normal {
        white-space: normal !important;
    }

    .text-md-nowrap {
        white-space: nowrap !important;
    }

    .colf-md-0 {
        width: 0;
    }
}

@media screen and (min-width: 992px) {
    .owfx-lg {
        overflow-x: hidden;
    }

    .owfx-visible-lg {
        overflow-x: visible;
    }

    .owfy-lg {
        overflow-y: hidden;
    }

    .owfy-visible-lg {
        overflow-y: visible;
    }

    .text-lg-normal {
        white-space: normal !important;
    }

    .text-lg-nowrap {
        white-space: nowrap !important;
    }

    .colf-lg-0 {
        width: 0;
    }
}

@media screen and (min-width: 1200px) {
    .owfx-xl {
        overflow-x: hidden;
    }

    .owfx-visible-xl {
        overflow-x: visible;
    }

    .owfy-xl {
        overflow-y: hidden;
    }

    .owfy-visible-xl {
        overflow-y: visible;
    }

    .text-xl-normal {
        white-space: normal !important;
    }

    .text-xl-nowrap {
        white-space: nowrap !important;
    }

    .colf-xl-0 {
        width: 0;
    }
}

.flex {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
}

@media only screen and (max-width: 1280px) {
    .flex {
        flex-flow: column nowrap;
    }
}

.clear::after {
    display: block;
    content: "";
    clear: both;
}

/* #LINKS
====================================== */

a {
    color: var(--font-color);
    text-decoration: none;
    transition: all ease-out .25s;
}

a:hover {
    color: var(--font-color);
    text-decoration: underline;
}

.link {
    display: inline-block;
    position: relative;
    background-color: transparent;
    color: #121212;
    transition: all ease-out .4s;
}

.link:hover,
.link:active {
    outline: 0;
    color: #2D9CDB;
}

.link::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #2D9CDB;
    transition: width .8s;
}

.link:hover::after {
    width: 100%;
}

.link::before {
    position: absolute;
    bottom: 0;
    right: 0;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #2D9CDB;
    transition: width .8s;
}

.link:hover::before {
    width: 0;
}

/* #HEADER
====================================== */
body > header {
    position: relative;
    box-shadow: 0 0 20px -2px rgba(0, 0, 0, .25);
    background-color: var(--color-background);
    z-index: 100;
}

body.page-header-opacity > header {
    z-index: 999;
    position: absolute;
    background: transparent;
    box-shadow: none;
    top: 0;
    left: 0;
    width: 100%;
    margin-bottom: 20px;
    color: #fff;
}

.header__user {
    color: #fff;
    padding-left: 23px;
    background-size: 18px 18px;
    background-position: center left;
    background-repeat: no-repeat;
}

.header__user:first-child {
    margin-left: 0;
}

.header__user_location {
    background-image: url(../img/map-pin.svg);
    background-size: 16px 18px;
    padding-left: 21px;
}

.header__user_cabinet {
    background-image: url(../img/lock.svg);
}

.header__user span {
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.header__user:hover span {
    border-color: rgba(255, 255, 255, 0)
}

@media only screen and (max-width: 575px) {
    /*body header {
        position: relative;
        background: linear-gradient(to bottom, rgba(34, 34, 34, .9), rgba(34, 34, 34, .9)),
            url(../img/footer-background.jpg) bottom center no-repeat;
        background-size: cover;
        margin-bottom: 0;
    }*/
    .header__user:first-child,
    .header__user {
        margin: 0 10px 20px;
    }
}


/* #SOCIALS
====================================== */
.socials {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.social .item {
    opacity: .6;
    padding: 0 9px;
}

.social .item:hover {
    opacity: 1;
}

.social .item:last-child {
    padding-right: 0;
}

/* font-family: 'Ubuntu', sans-serif;
font-family: 'Ubuntu', sans-serif; */

a.logo {
    text-decoration: none;
}

.logo img {
    max-height: 80px;
    max-width: 350px;
    width: 100%;
}

body.page-header-opacity .header__contacts a,
footer .header__contacts a {
    color: var(--color-white);
}

.header__contacts a {
    color: var(--color-white);
}

.header__contacts-number {
    font-size: 1.25em;
    font-weight: 500;
}

.header__contacts-code {
    font-weight: 400;
    opacity: .8;
}

.header__contacts-text {
    font-weight: 300;
}

/* #MENU
====================================== */
.header .menu {
    transition: background ease-out .4s;
}

.header .menu .nav-item {
    position: relative;
}

.footer__menu .nav-link {
    padding: 0;
    color: #fff;
}

.footer__menu .child {
    display: none;
}

.header .menu .nav-item.parent:hover .child {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header .menu .child > .content-list .nav-item {
    margin: 0;
    border-bottom: 1px solid #cfcfcf;
    padding: 0;
}

.header .menu .child .nav-link {
    color: #000;
}

.header .menu .child > .content-list .nav-item:last-child {
    border-bottom: none;
}

.header .menu .child .nav-link {
    display: block;
    font-weight: 400;
    border: none;
    text-transform: initial;
    color: rgba(18, 18, 18, .8);
    border-radius: 4px;
}

.header .menu .child .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.header .menu .nav-item div.nav-link {
    cursor: default;
}

body.page-header-opacity .nav-link {
    color: var(--color-white);
}

.btn-geo {
    color: var(--template-primary2);
}

header .socials .item {
    color: var(--color-gray);
}

header .socials .item:hover {
    color: var(--template-primary2);
}

body.page-header-opacity header .socials .item {
    color: var(--color-white);
    opacity: 0.5;
}

body.page-header-opacity header .socials .item:hover {
    opacity: 1;
}

body.page-header-opacity .btn-geo {
    color: var(--color-white);
}

.header .menu .nav-link {
    font-weight: 500;
    text-transform: uppercase;
    transition: all ease-out .25s;
    color: var(--color-gray);
}

.header .menu .nav-link:hover,
.header .menu .nav-item.active > .nav-link {
    color: var(--template-primary);
}

.header .menu .nav-item.active > .nav-link {
}

@media screen and (max-width: 899px) {
    .header .menu {
        display: block;
        margin: 0;
        background-color: #fff;
        position: fixed;
        z-index: 30;
        top: 0;
        right: -100%;
        width: 100%;
        bottom: 0;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        overflow: auto;
        padding: 10px 20px;
    }

    header .menu.active {
        right: 0;
    }

    .header .menu .menu-btn .line {
        background-color: var(--template-secondary);
    }

    .header .menu .nav-item > .nav-link {
        font-size: 1.2em;
    }

    .header .menu .nav-item > .nav-link {
        color: #000;
    }

    .header .menu .nav-item > .nav-link:hover {
        color: var(--template-secondary2);
    }

    div.nav-link {
        display: none;
    }

    .header .menu .nav-item.parent .child {
        position: relative;
        top: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media screen and (min-width: 900px) {
    .header .menu {
        background-color: var(--template-primary);
    }
    .header .menu__container {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
    }
    .header .menu .child {
        position: absolute;
        visibility: hidden;
        top: 100%;
        left: 0;
        min-width: 250px;
        opacity: 0;
        background-color: var(--template-secondary2);
        transform: translateY(-10px);
        transition: all ease .3s;
        border-top: 2px solid var(--template-primary);
        white-space: nowrap;
    }

    .header .menu .nav-item {
        flex: auto;
        text-align: center;
    }

    .header .menu .nav-item > .nav-link {
        font-size: 1em;
        color: #fff;
        padding: 10px 1rem;
    }

    .header .menu .nav-link:hover,
    .header .menu .nav-item.active > .nav-link {
        background-color: var(--template-secondary);
        color: #fff;
    }

    .header .menu .child .nav-link {
        font-size: 1.2em;
    }

    .header .menu .nav-item:last-child .child {
        right:0;
        left: auto;
    }
}

/* #ICONS
====================================== */
#svg-sprite-place {
    display: none;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -.125em;
    flex-shrink: 0;
}

.icon-lg {
    font-size: 1.3333333333em;
    line-height: .75em;
    vertical-align: -0.2333333333em
}

.icon-xs {
    font-size: 0.75em
}

.icon-sm {
    font-size: 0.875em
}

.icon-1x {
    font-size: 1em
}

.icon-2x {
    font-size: 2em
}

.icon-3x {
    font-size: 3em
}

.icon-4x {
    font-size: 4em
}

.icon-5x {
    font-size: 5em
}

.icon-6x {
    font-size: 6em
}

.icon-7x {
    font-size: 7em
}

.icon-8x {
    font-size: 8em
}

.icon-9x {
    font-size: 9em
}

.icon-10x {
    font-size: 10em
}

.icon-fw {
    text-align: center;
    width: 1.25em
}

.btn .icon {
    vertical-align: middle;
}

.icon-block {
    display: block;
}

.icon use {
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    font-size: inherit;
    overflow: visible;
}

.icon-stroke {
    fill: none;
    stroke: var(--color-black);
}

.icon-stroke use {
    fill: none;
    stroke-width: 2px;
}

/* menu-btn
====================================== */
.menu-btn {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 0.5rem;
    z-index: 1;
}

.menu-btn .line {
    width: 30px;
    height: 4px;
    background-color: var(--template-secondary);
    margin: 6px auto;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
}

.page-header-opacity .menu-btn .line {
    background-color: #fff;
}

.page-header-opacity .menu-btn.active .line {
    background-color: #000;
}

.menu-btn:hover .line {
    background-color: var(--color-white);
}

.menu-btn .line:nth-child(2) {
    background-color: var(--color-white);
}

.menu-btn.active {
    -webkit-transition: -webkit-transform .3s ease-out .6s;
    -moz-transition: transform .3s ease-out .6s;
    -o-transition: transform .3s ease-out .6s;
    transition: transform .3s ease-out .6s;
    transform: rotate(45deg);
}

.menu-btn.active .line:nth-child(2) {
    width: 0px;
}

.menu-btn.active .line:nth-child(1),
.menu-btn.active .line:nth-child(3) {
    -webkit-transition: -webkit-transform .3s ease-out .3s;
    -moz-transition: transform .3s ease-out .3s;
    -o-transition: transform .3s ease-out .3s;
    transition: transform .3s ease-out .3s;
}

.menu-btn.active .line:nth-child(1) {
    transform: translateY(8px);
}

.menu-btn.active .line:nth-child(3) {
    transform: translateY(-12px) rotate(90deg);
}


/* #BUTTONS
====================================== */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #fff;
    }
}

.btn:not(.btn-sm) {
    padding: .532rem 1rem;
    font-weight: 500;
    font-size: unset;
}

.shadow-md {
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1), 0 .1rem .1rem 0 rgba(0, 0, 0, .1) !important;
}

.shadow-sm-hover {
    -moz-transition: all .05s ease-out 0.05s;
    -o-transition: all .05s ease-out 0.05s;
    -webkit-transition: all .05s ease-out 0.05s;
    transition: all .05s ease-out 0.05s;
}

.shadow-sm-hover:hover {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.shadow-md-hover {
    -moz-transition: all .05s ease-out 0.05s;
    -o-transition: all .05s ease-out 0.05s;
    -webkit-transition: all .05s ease-out 0.05s;
    transition: all .05s ease-out 0.05s;
}

.shadow-md-hover:hover {
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1), 0 .1rem .1rem 0 rgba(0, 0, 0, .1) !important;
}

.btn-rainbow {
    background: linear-gradient(to right, var(--template-primary) 0%, var(--template-secondary) 100%);
    border: none;
    color: var(--color-white);
}

.btn-rainbow:hover {
    color: var(--color-white) !important;
}

.btn-animate:hover,
.btn-animate:focus {
    outline: none;
    animation: pulse 1s;
    box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
}

.button_second:hover {
    color: #000;
}

.arrow-left,
.arrow-right {
    cursor: pointer;
    opacity: .5;
    display: block;
    width: 30px;
    height: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .25s ease-out;
}

.arrow-left {
    margin-right: 20px;
    background-image: url(../img/arrow-left.svg);
}

.arrow-left_white {
    background-image: url(../img/arrow-left_white.svg);
}

.arrow-right {
    background-image: url(../img/arrow-right.svg);
}

.arrow-right_white {
    background-image: url(../img/arrow-right_white.svg);
}

.arrow-left:hover,
.arrow-right:hover {
    opacity: 1;
}

.btn-pulse:hover {
    outline: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, opacity .15s ease-in-out, box-shadow .15s ease-in-out;
    animation: pulse .6s;
}

.border-qprimary {
    border-color: var(--template-primary) !important
}

.border-qsecondary {
    border-color: var(--template-secondary) !important
}

.bg-qprimary {
    background-color: var(--template-primary) !important
}

.bg-qsecondary {
    background-color: var(--template-secondary) !important
}

.bg-qprimary-50 {
    background-color: rgba(var(--template-primary), .30) !important;
}

.bg-qsecondary-50 {
    background-color: rgba(var(--template-secondary), .30) !important;
}

.bg-blur-5 {
    backdrop-filter: blur(5px);
}

.bg-blur-10 {
    backdrop-filter: blur(10px);
}

.bg-radial-gradient {
    background-image: radial-gradient(rgba(255, 255, 255, .0), rgba(0, 0, 0, 0.35));
}


.text-qprimary {
    color: var(--template-primary) !important
}

a.text-qprimary:focus,
a.text-qprimary:hover {
    color: var(--template-primary) !important
}

.text-qsecondary {
    color: var(--template-secondary) !important
}

a.text-qsecondary:focus,
a.text-qsecondary:hover {
    color: var(--template-secondary2) !important
}

.text-qthird {
    color: var(--template-secondary) !important
}

a.text-qthird:focus,
a.text-qthird:hover {
    color: var(--template-secondary2) !important
}

.btn-qprimary {
    background-color: var(--template-primary) !important;
    color: var(--color-white) !important;
    font-weight: 500 !important;
}

.btn-qprimary:hover {
    color: var(--color-white);
}

.btn-outline-qprimary {
    border-color: var(--template-primary) !important;
    color: var(--template-primary) !important;
    font-weight: 500 !important;
}

.btn-outline-qprimary:hover {
    background-color: var(--template-primary) !important;
    color: var(--color-white) !important;
}

.btn-qsecondary {
    background-color: var(--template-secondary) !important;
    color: var(--color-white) !important;
    font-weight: 500 !important;
}

.btn-qsecondary:hover {
    color: var(--color-white) !important;
}

.btn-outline-qsecondary {
    border-color: var(--template-secondary) !important;
    color: var(--template-secondary) !important;
}

.btn-outline-qsecondary:hover {
    background-color: var(--template-secondary) !important;
    color: var(--color-white) !important;
}

/* #FOOTER
====================================== */
footer {
    padding: 40px 0;
    color: #bdbdbd;
    background: linear-gradient(to bottom, rgba(34, 34, 34, .9), rgba(34, 34, 34, .9)),
    url(../img/footer-background.jpg) center center no-repeat;
    background-size: cover;
}

@media only screen and (max-width: 575px) {
    footer {
        padding: 20px 0;
    }
}

footer * {
    transition: all .25s ease-out;
}

footer .agency {
    color: inherit;
}

footer .agency:hover {
    color: #fff;
}

.footer__socialItem {
    color: #fff;
}


/* #PAGE
====================================== */
.page.content {
    display: flex;
    flex-flow: column nowrap;
    min-height: 100%;
    margin-top: 20px;
}

.page.content img{
    max-width: 100%;
    height: auto!important;
}

.page-simple .page p > img {
    max-width: 100%;
}

.page-cover {
    margin-top: 0 !important;
}

.page-cover > .container {
    margin-top: -150px;
}

.page-cover > .media {
    position: relative;
    height: 350px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.page-cover > .media:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #00000080, transparent);
}

.page-cover > .media:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(at center, rgba(255, 255, 255, 0), rgba(0, 0, 0, .6));
}

.page__head {
    position: relative;
    margin-bottom: 20px;
}

.page__title {
    font-size: 36px;
    font-weight: 500;
    font-family: 'Ubuntu';
    line-height: 1;
}

.page__image {
    display: block;
    float: left;
    max-width: 50%;
    margin: 20px 40px 20px 0;
}

.page__image_right {
    display: block;
    float: right;
    margin: 20px 0 20px 40px;
}

.page__image:first-child {
    margin-top: 0 !important;
}

.page__image:last-child {
    margin-bottom: 0 !important;
}


/* #BLOCK
====================================== */
.block,
.page,
.block.module {
    margin: 0 auto 20px;
}

.block.module .block_more {
    text-align: right;
    border-top: 3px solid var(--template-secondary2) !important;
}

@media only screen and (max-width: 575px) {
    .page,
    .block {
        margin: 0 auto 25px;
    }
}

.page:not(.schedule) > .head,
.block:not(.schedule) > .head {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.page > .head .title,
.block > .head .title {
    font-size: 36px;
    font-weight: 500;
    font-family: 'Ubuntu';
    line-height: 1;
    margin: 0;
}

.block .head > .navigation {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-end;
}

@media only screen and (max-width: 575px) {
    .block .head > .navigation {
        width: 100%;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 767px) {
    .block > .head .title {
        text-align: center;
        margin: 0 auto 20px;
    }
}

/* #SCHEDULE FILMS
-------------------------------------- */
.block.schedule .film {
    flex-flow: row nowrap;
    align-items: stretch;
    justify-content: stretch;
}

@media only screen and (max-width: 767px) {
    .block.schedule .film {
        flex-flow: column nowrap;
        align-self: start;
    }
}

.block.schedule .film .format {
    margin-top: 10px;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

.block.schedule .film .format:last-child {
    margin-bottom: 0;
}

.block.schedule .film .format .title {
    margin-right: 12px;
    font-weight: bold;
}

.block.schedule .film .format .seances {
}

.block.schedule .film .format .seance {
    cursor: pointer;
    display: block;
    width: 50px;
    height: 22px;
    font-weight: 500;
    font-size: 13px;
    color: #444;
    background: #dedede;
    border-radius: 4px;
    margin: 0 0 8px 8px;
    text-align: center;
    padding: 2px 0 0;
    transition: all ease-out .25s;
}

.block.schedule .film .format .seance.disable {
    cursor: default;
    opacity: .25;
}

.block.schedule .film .format .seance:hover {
    color: #fff;
    background: #444;
}

/* #SCHEDULE CINEMA
-------------------------------------- */

.block.schedule .cinema .format {
    margin-top: 15px;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    margin-bottom: 20px;
}

.block.schedule .cinema .format:last-child {
    margin-bottom: 0;
}

.block.schedule .cinema .format .title {
    margin-right: 12px;
    font-weight: bold;
}

.block.schedule .cinema .format .seances {
}

.block.schedule .cinema .format .seance {
    cursor: pointer;
    display: block;
    width: 50px;
    height: 22px;
    font-weight: 500;
    font-size: 13px;
    color: #444;
    background: #dedede;
    border-radius: 4px;
    margin: 0 0 8px 8px;
    text-align: center;
    padding: 2px 0 0;
    transition: all ease-out .25s;
}

.block.schedule .cinema .format .seance.disable {
    cursor: default;
    opacity: .25;
}

.block.schedule .cinema .format .seance:hover {
    color: #fff;
    background: #444;
}

.seanseDay {
    margin-top: 10px;
    font-weight: bold;
    color: var(--template-primary);
}

/* #NEWS
====================================== */
@media only screen and (max-width: 767px) {
    .module.news .item {
        margin: 0 auto 20px;
    }
}

.module.news .item .media {
    display: block;
    max-width: 100%;
    margin-bottom: 10px;
    transition: all ease-out .25s;
}

.module.news .item .media img {
    border-radius: 4px;
}

.module.news .item .media:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    transition: inherit;
    opacity: 0;
    box-shadow: 0 1rem 2rem -1rem rgba(0, 0, 0, .75);
}

.module.news .item:hover .media {
    transform: translateY(-.25rem);
}

.module.news .item:hover .media:before {
    opacity: 1;
}

.module.news .item .title {
    font-weight: 700;
    font-size: 18px;
}


/* #news
====================================== */

.page.category .news {
    margin-bottom: 40px;
}

.page.category .news .media {
    position: relative;
    align-self: flex-start;
    transition: all ease-out .25s;
}

.page.category .news .media:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    transition: inherit;
    opacity: 0;
    box-shadow: 0 1rem 2rem -1rem rgba(0, 0, 0, .75);
}

.page.category .news .media:hover {
    transform: translateY(-.25rem);
}

.page.category .news .media:hover:before {
    opacity: 1;
}

.page.category .news .media img {
    display: block;
    width: 350px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
    object-fit: cover;
}

.page.category .news .content {
    display: flex;
    flex-flow: column nowrap;
    justify-news: start;
    padding: 0 20px;
    max-height: 300px;
    position: relative;
    overflow: hidden;
}

.page.category .news .content:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30px;
    news: "";
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, .25));
    z-index: 999;
    padding-right: 40px;
}

@media only screen and (max-width: 767px) {
    .page.category .news .media {
        align-self: center;
        margin-bottom: 20px;
    }
}

.page.category .news .info .title {
    font-weight: 700;
    font-size: 18px;
    transition: all ease-out .25s;
}

.page.category .news .info .title:hover {
    color: rgba(0, 0, 0, .5);
}

/* #FILM
====================================== */

.film {
    margin-bottom: 40px;
}

.film .media {
    position: relative;
    transition: all ease-out .25s;
    display: block;
    align-self: flex-start;
    width: 200px;
    flex: 1 0 auto;
}

.film .media:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    transition: inherit;
    opacity: 0;
    box-shadow: 0 1rem 2rem -1rem rgba(0, 0, 0, .75);
}

.film .media:after {
    padding-bottom: 150%;
    content: "";
    display: block;
}

.film .media img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.film .media:hover {
    transform: translateY(-.25rem);
}

.film .media:hover:before {
    opacity: 1;
}

.film .media .age-rating {
    position: absolute;
    bottom: 16px;
    right: 10px;
}

.film .age-rating {
    width: 36px;
    height: 36px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    padding-top: 5px;
    color: #fff;
    background: #6fcf97;
}

.film .media .age-rating[data-age-rating="18+"] {
    background: #eb5757;
}

.film .media .age-rating[data-age-rating="16+"] {
    background: #f2994a;
}

.film .content {
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.schedule .cinema .content {
    max-height: none;
}

@media only screen and (max-width: 767px) {
    .film:not(.schedule__film) .media {
        width: 100px;
        align-self: flex-start;
        margin-bottom: 20px;
    }

    .film .schedule__media {
        width: 100%;
        margin-bottom: 20px;
    }

    .film .schedule__media::after {
        padding-bottom: 50%;
    }

    .schedule__media img {
        position: relative;
    }

    .block.schedule .film .media img {
        width: 100%;
        height: 100%;
    }
}

.film .info .title {
    font-weight: 700;
    font-size: 18px;
    transition: all ease-out .25s;
}

.film .info .genres {
    margin: 10px 0;
}

.film .info .details {
    margin-top: 12px;
}

.film .info .details .country {
    margin-right: 20px;
}

.film .info .details .duration {
}


/* #CINEMA
====================================== */

.cinema {
    margin-bottom: 40px;
}

.cinema .media {
    position: relative;
    transition: all ease-out .25s;
    display: block;
    align-self: flex-start;
    width: 300px;
    flex: 1 0 auto;
}

.cinema .media:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    transition: inherit;
    opacity: 0;
    box-shadow: 0 1rem 2rem -1rem rgba(0, 0, 0, .75);
}

.cinema .media:after {
    padding-bottom: 70%;
    content: "";
    display: block;
}

.cinema .media img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.cinema .media:hover {
    transform: translateY(-.25rem);
}

.cinema .media:hover:before {
    opacity: 1;
}

.cinema .content {
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.schedule .cinema .content {
    max-height: none;
}

@media only screen and (max-width: 767px) {
    .cinema .media {
        width: 100%;
        align-self: center;
        margin-bottom: 20px;
    }

    .block.schedule .cinema .media img {
        width: 100%;
        height: auto;
    }
}

.cinema .info .title {
    font-weight: 700;
    font-size: 18px;
    transition: all ease-out .25s;
}

.cinema .info .title:hover {
    color: #fff;
}

.cinema .info .address {
    margin: 10px 0;
}

.cinema .info .details .phone {
    margin-right: 20px;
}

.cinema .info .details .email {
    margin-right: 20px;
}

/* #PAGE-FILM
====================================== */
.page-film {
}

.film-info {
    flex-flow: row nowrap;
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .film-info {
        flex-flow: column nowrap;
    }
}

.film-info .media {
    width: 300px !important;
    margin-bottom: 20px;
}

.film-info .media img {
    border-radius: 4px;
}

@media only screen and (max-width: 767px) {
    .film-info .media {
        margin: 0 auto 20px;
    }
}

.page-film .button {
    width: 100%;
    background-position: 25% center;
}

.film-info > .content {
    max-height: none;
}

@media only screen and (min-width: 768px) {
    .film-info > .content {
        padding: 0 40px;
    }
}

.film-info > .content dl {
    font-size: 18px;
}

.film-info > .content dt {
    font-weight: 700;
}

.film-info > .content dd {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dedede;
}

.film-info > .content dd:last-child {
    padding-bottom: 20px;
    margin-bottom: 0;
    border-bottom: 0;
}

.film-info > .content:after {
    display: none;
}

.page-film .schedule .film__info {
    padding: 0;
}

.film-info .head {
    font-size: unset;
    border: none;
    margin-bottom: 40px;
    padding-bottom: 0;
    height: 150px;
    align-items: center;
}

@media only screen and (max-width: 575px) {
    .film-info .head {
        align-items: flex-start;
        height: auto;
    }
}

.film-info .title {
    width: 100%;
    font-family: 'Ubuntu';
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    overflow-wrap: break-word;
}

@media only screen and (max-width: 767px) {
    .film-info .title {
        padding-top: 30px;
        text-align: center;
    }
}

.filmModule__item__rating {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    border-radius: 0;
}


.age-rating {
    width: 36px;
    height: 36px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    padding-top: 5px;
    color: #fff;
    background: #6fcf97;
}

.age-rating[data-age-rating="18+"] {
    background: #eb5757;
}

.age-rating[data-age-rating="16+"] {
    background: #f2994a;
}

.page-film .block .description {
    font-size: 18px;
    line-height: 28px;
}

.page-film .gallery .item {
    position: relative;
    display: block;
}

.page-film .gallery .item:nth-child(3n) {
    margin-right: auto;
}

.page-film .gallery .item:before {
    opacity: 0;
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/zoom-in.svg) center center no-repeat,
    linear-gradient(0deg, rgba(86, 204, 242, 0.5), rgba(86, 204, 242, 0.5));
    transition: all ease-out .25s;
}

.page-film .gallery .item:hover:before {
    opacity: 1;
}

.page-film .gallery .item img {
    display: block;
    width: 373.33px;
    height: 209.99px;
    border-radius: 4px;
    object-fit: cover;
}

@media only screen and (max-width: 1280px) {
    .page-film .gallery .item img {
        width: 300px;
        height: 168.7434709px;
    }
}

/* #PAGE-CINEMA
====================================== */
.page-cinema {
}

.cinema-info {
    flex-flow: row nowrap;
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .cinema-info {
        flex-flow: column nowrap;
    }
}

.cinema-info .media {
    margin-bottom: 20px;
}

.cinema-info .media img {
    width: 300px;
    height: 200px;
    border-radius: 4px;
}

@media only screen and (max-width: 767px) {
    .cinema-info .media {
        margin: 0 auto 20px;
    }
}

.page-cinema .button {
    width: 100%;
    background-position: 25% center;
}

.cinema-info > .content {
    max-height: none;
}

@media only screen and (min-width: 768px) {
    .cinema-info > .content {
        padding: 0 40px;
    }
}

.cinema-info > .content dl {
    font-size: 18px;
}

.cinema-info > .content dt {
    font-weight: 700;
}

.cinema-info > .content dd {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dedede;
}

.cinema-info > .content dd:last-child {
    padding-bottom: 20px;
    margin-bottom: 0;
    border-bottom: 0;
}

.cinema-info > .content:after {
    display: none;
}

.page-cinema .schedule .cinema__info {
    padding: 0;
}

.cinema-info .head {
    font-size: unset;
    border: none;
    margin-bottom: 40px;
    padding-bottom: 0;
    height: 150px;
    align-items: center;
}

@media only screen and (max-width: 575px) {
    .cinema-info .head {
        align-items: flex-start;
        height: auto;
    }
}

.cinema-info .title {
    width: 100%;
    font-family: 'Ubuntu';
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    overflow-wrap: break-word;
}

@media only screen and (max-width: 767px) {
    .cinema-info .title {
        padding-top: 30px;
        text-align: center;
    }
}

.page-cinema .block .description {
    font-size: 18px;
    line-height: 28px;
}

.page-cinema #map,
.cinemas #map {
    height: 400px;
}

.page-cinema .gallery .item {
    position: relative;
    display: block;
}

.page-cinema .gallery .item:nth-child(3n) {
    margin-right: auto;
}

.page-cinema .gallery .item:before {
    opacity: 0;
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/zoom-in.svg) center center no-repeat,
    linear-gradient(0deg, rgba(86, 204, 242, 0.5), rgba(86, 204, 242, 0.5));
    transition: all ease-out .25s;
}

.page-cinema .gallery .item:hover:before {
    opacity: 1;
}

.page-cinema .gallery .item img {
    display: block;
    width: 373.33px;
    height: 209.99px;
    border-radius: 4px;
    object-fit: cover;
}

@media only screen and (max-width: 1280px) {
    .page-cinema .gallery .item img {
        width: 300px;
        height: 168.7434709px;
    }
}


/* #SCHEDULE
====================================== */
.block.schedule {
}

.page-film .block.schedule .wrapper {
    padding: 0 40px;
}

.block.schedule .dates {
    overflow: hidden;
    padding: 0 40px;
}

.block.schedule .filter {
    margin-bottom: 20px;
}

@media only screen and (max-width: 575px) {
    .block.schedule .dates:before {
        width: 50px;
        padding-right: 0;
    }
}

.schedule__date,
.schedule__date.active {
    width: auto;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    color: var(--font-color);
}

.date-number {
    font-weight: bold;
    font-size: 48px;
    margin-right: 5px;
    line-height: 1;
}

.date-week,
.date-month {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.15;
}

.date-week {
    font-weight: bold;
}

.schedule__date.active .date-week {
    color: var(--template-secondary);
}

.dates__arrow {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    margin-top: -24px;
    z-index: 9;
    width: 48px;
    height: 48px;
    transition: all ease-out .15s;
    background: rgb(var(--color-primary));
}

.dates__arrow_left {
    left: 0;
}

.dates__arrow_right {
    right: 0;
}

.dates__arrow:hover .icon {
    opacity: 1;
}

.dates__arrow .icon {
    float: none;
    width: 24px;
    height: 24px;
    color: var(--color-black);
    margin: 0;
    opacity: .5;
}

.schedule__date.disable, .schedule__date.disable:hover {
    opacity: .4;
    cursor: not-allowed;
}

/* #ENTRY
====================================== */
.entry {
    width: 100%;
    margin-bottom: 50px;
    align-items: flex-start;
}

.entry:hover {
    text-decoration: none;
}

.entry__media {
    display: block;
    width: 60%;
}

.entry__content {
    width: 40%;
    align-self: stretch;
    padding: 0 50px;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: center;
}

.entry__category {
    text-transform: uppercase;
    color: #2D9CDB;
    margin-bottom: 10px;
    font-size: .875em;
}

.entry__title {
    position: relative;
    font-size: 1.5em;
    line-height: 1.2;
    font-weight: 700;
    color: #2d2c2b;
}

.entry__title::after {
    display: block;
    content: "";
    background-color: #2D9CDB;
    width: 56px;
    height: 2px;
    margin: 15px 0 20px;
}

.entry__text {
    color: #2d2c2b;
    /* line-height: 1.25; */
    margin-bottom: 30px;
}

@media only screen and (max-width: 1280px) {
    .entry {
        align-items: center;
    }

    .entry__media {
        width: 100%;
    }

    .entry__content {
        width: 100%;
        align-self: center;
        padding: 0;
        margin-top: 20px;
    }
}

/* #SLIDER
====================================== */
.slider {
    padding: 0;
}

.slide {
    display: block;
    position: relative;
}

.slide:hover {
    color: #fff;
    text-decoration: none;
}

.slide__title {
    z-index: 1;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 0, 0, .2);
    color: #fff !important;
}

@media screen and (min-width: 768px) {
    .slide__title {
        font-size: 3em;
        line-height: 1;
        font-weight: 600;
    }
}

.slide__media {
    z-index: -2;
    height: 100%;
    width: 100%;
    position: relative;
}

.slide__img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.slide__media::after {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    content: "";
    background-image: radial-gradient(at center, rgba(255, 255, 255, 0), rgba(0, 0, 0, .6));
}

.slide__media::before {
    width: 100%;
    padding-bottom: 26%;
    display: block;
    content: "";
    background-image: linear-gradient(to right, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
}

.slide__content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
}


/* #BLOCK_ANONCES
====================================== */
.module.soon {
    position: relative;
    background: linear-gradient(to bottom, var(--template-primary), var(--template-primary2));
    margin-bottom: 0;
    padding: 40px 0;
    overflow: hidden;
}

.module.soon * {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

.module.soon .head {
    margin-bottom: 0;
}

.module.soon .head .title {
    color: #fff;
}

.module.soon .content-list {
    padding-top: 20px;
}

/* .block_soon .swiper-slide-active {
    transform: translateY(-20px);
} */

.module.soon .content-list .item {
    position: relative;
    width: 200px;
    color: #fff !important;
    transition: all ease-out .25s;
}

.module.soon .content-list .item:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    transition: inherit;
    opacity: 0;
    box-shadow: 0 1rem 2rem -1rem rgba(0, 0, 0, .75);
}

.module.soon .content-list .item:hover {
    transform: translateY(-.5rem);
}

.module.soon .content-list .item:hover:before {
    opacity: 1;
}

.module.soon .content-list .item .media {
    display: block;
    width: 200px;
    height: 300px;
    overflow: hidden;
}

.module.soon .content-list .item .media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module.soon .content-list .item .overlay {
    display: flex;
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    flex-flow: column nowrap;
    background-color: rgba(0, 0, 0, .8);
    overflow: hidden;
}

.module.soon .content-list .item:hover .overlay {
    visibility: visible;
}

.module.soon .content-list .item .details {
    margin: auto 0;
    padding: 0 20px;
}

.module.soon .item .details .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.module.soon .item .details .title a {
    color: inherit;
    transition: none;
}

.module.soon .item .details .genre {
    margin-bottom: 10px;
}

.module.soon .item .details .release {
    border-top: 1px solid #fff;
    padding-top: 10px;
    font-size: 14px;
}

.soon__item-button {
    align-self: center;
    margin-bottom: 20px;
}

.navigation__arrow {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    margin-top: -24px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    transition: all ease-out .15s;
    background: rgb(var(--color-primary));
}

.navigation__arrow_left {
    left: -30px;
}

.navigation__arrow_right {
    right: -30px;
}

.navigation__arrow:hover .icon {
    opacity: 1;
}

.navigation__arrow .icon {
    float: none;
    width: 24px;
    height: 24px;
    color: var(--color-white);
    margin: 0;
    opacity: .5;
}

/* #BLOCK_POPUP
====================================== */
.popup {
    position: relative;
    background: #fff;
    padding: 20px;
    width: auto;
    max-width: 550px;
    margin: 20px auto;
    line-height: 1.45;
    border-radius: 8px;
}

.popup__title {
    font-weight: 700;
    text-align: center;
    margin: 0 20px 30px;
    font-size: 1.875em;
    line-height: 1.2;
    color: #2D9CDB;
}

.popup__description {
    font-size: .875em;
    text-align: center;
}

.popup__description * {
    transition: all .25s ease-out;
}

.mfp-close {
    background: none !important;
}

.my-mfp-slide-bottom .mfp-content {
    opacity: 0;
    transition: all .2s ease-out;
    transform: translateY(-20px) perspective(700px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-ready .mfp-content {
    opacity: 1;
    transform: translateY(0) perspective(700px) rotateX(0);
}

.my-mfp-slide-bottom.mfp-removing .mfp-content {
    opacity: 0;
    transform: translateY(-10px) perspective(700px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-bg {
    opacity: 0;
    transition: opacity .3s ease-out;
}

.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: .8;
}

.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
}

/* FADE
====================================== */
/* overlay at start */
.mfp-fade.mfp-bg {
    opacity: 0;

    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;

    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.map #map {
    height: 400px;
}

.rounded-50 {
    border-radius: 1.5rem !important;
}


/* #APPLE-APP
====================================== */
.apple-app {
    background: linear-gradient(45deg, rgba(var(--rgb-color-black), .5) 0%, transparent 50%, rgba(var(--rgb-color-black), .5) 100%);
    padding-top: 100px;
    margin-bottom: 0;
}

.apple-app .block__body {
    position: relative;
    background: radial-gradient(at center top, rgba(var(--rgb-color-white), .1) 0, transparent 50%);
}

.apple-app__image {
    display: block;
    width: 250px;
    transform: translateY(-40px);
}

.apple-app__content {
    text-align: center;
}

.apple-app__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1199px) {
    .apple-app {
        display: block !important;
    }


    .apple-app__image {
        position: relative;
        margin: 0 auto;
        width: 220px;
    }

    .apple-app__content {
        margin-left: 0;
    }

    .apple-app__title {
        font-size: 18px;
    }
}

.fancybox-content {
    background-color: var(--color-background) !important;
}

.footer__logo {
    max-height: 100px;
}