/* #MAIN
====================================== */

:root {
    --primary-color: 206, 170, 14;
    --secondary-color: 52, 58, 64;
    --font-name: 'Museo Sans';
}


* {
    -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;
}

body {
    font: normal 14px/1.5 var(--font-name), sans-serif;
    color: #121212;
}

::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: #2D9CDB;
    text-decoration: none;
    transition: all ease-out .25s;
}

a:hover {
    color: #dc3545;
}

.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;
    background-color: rgb(var(--secondary-color));
    background: linear-gradient(to bottom, rgba(var(--secondary-color), 0), rgba(var(--secondary-color), .6)), url(../img/bg-dark.png) center center;
    margin-bottom: 0;
}
header .container{
    position: relative;
}

body.page-header-opacity>header {
    z-index: 999;
    position: absolute;
    background:transparent;
    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) {
    .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;
}

/* #MENU
====================================== */
.menu {
    padding: 40px 0;
    transition: all ease-out .4s;
    background-color: rgb(var(--secondary-color));
}

.menu-header{
    padding: 0;
    position: absolute;
    background-color: #000;
    top: 0;
    left:0;
    right:0;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-100%);
}

.menu-header.active{
    transform: translateY(0);
    opacity: 1;
}

.menu-header .container{
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

.menu .content-list{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    list-style: none;
}

.menu .child-list{
    list-style: none;
}

.menu .content-list > .nav-item {
    width: 100%;
}

@media (min-width: 768px) {
    .menu .content-list > .nav-item {
        width: 33.33%;
    }
}

.menu .nav-item {
    position: relative;
}

.menu .nav-item div.nav-link {
    cursor: default;
}

.menu .nav-link {
    font-weight: 500;
    font-size: 1.2em;
    transition: all ease-out .25s;
    color: #fff;
}

.menu .nav-link:hover {
    color: #eb5f37;
}

.menu .nav-item.active>.nav-link {
    color: #eb5f37;
    border: none;
}

.menu .nav-heading{
    color: rgb(var(--primary-color)) !important;
    position: relative;
    font-size: 2em;
    text-transform: uppercase;
}

.menu .nav-heading:before{
    content: '';
    display: block;
    width: 20%;
    height: 3px;
    background-color: rgb(var(--primary-color));
    margin-bottom: 20px;
}

/* menu-btn
====================================== */
.menu-btn {
    cursor: pointer;
    position: absolute;
    left: 10px;
    top: 20px;
    z-index: 1;
}

.menu-btn .line {
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin: 6px auto;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
}

.menu-btn:hover .line {
    background-color: rgb(var(--secondary-color));
}

.menu-btn .line:nth-child(2) {
    background-color: rgb(var(--primary-color));
}

.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);
}

@media (min-width: 992px) {
    .menu-btn {
        left: -10px;
    }
}

@media (min-width: 1200px) {
    .menu-btn {
        left: -50px;
    }
}


/* #BUTTONS
====================================== */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #fff;
    }
}
@keyframes pulse-dark {
    0% {
        box-shadow: 0 0 0 0 rgb(var(--secondary-color));
    }
}

.btn:not(.btn-sm){
    padding: .532rem 1rem;
    font-weight: 500;
    font-size: unset;
}

.btn-animate:hover,
.btn-animate:focus {
    outline: none;
    animation: pulse 1s;
    box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
}

.btn-animate-dark:hover,
.btn-animate-dark:focus {
    outline: none;
    animation: pulse-dark 1s;
    box-shadow: 0 0 0 2em rgba(var(--secondary-color), 0);
}

.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;
}


/* #FOOTER
====================================== */
footer {
    position: relative;
    padding: 40px 0;
    color: #bdbdbd;
    background: url(../img/bg-dark.png) center center;
}
footer>*{
    position: relative;
}
footer:before {
    position: absolute;
    top: 0;
    left: 0;
    right:0;
    bottom:0;
    content:'';
    display: block;
    padding: 40px 0;
    color: #bdbdbd;
    z-index: 0;
    background: linear-gradient(to top, rgba(var(--secondary-color), 0), rgba(var(--secondary-color), .6));
}

@media only screen and (max-width: 575px) {
    footer {
        padding: 20px 0;
    }
}

footer * {
    transition: all .25s ease-out;
}

footer .menu {
    padding-bottom: 20px;
    margin-bottom: 10px;
    border-bottom: 3px solid rgba(255, 255, 255, .5);
}

footer .logo {
    max-width: 350px;
}

footer .agency {
    color: inherit;
}

footer .agency:hover {
    color: #fff;
}


/* #PAGE
====================================== */
.page.content {
    display: flex;
    flex-flow: column nowrap;
    min-height: 100%;
    margin-top: 20px;
}

.page-simple .page p>img {
    max-width: 100%;
}

.page-cover {
    margin-top: 0 !important;
}

.page-cover.page-film>.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;
    color: #000;
    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: 20px auto;
}

.page>.head,
.block>.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: 2.2em;
    font-weight: bold;
    color: #000;
    line-height: 1;
    margin: 0;
}

.page>.content p {
    font-size: 1.4em;
}

.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: 15px;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    margin-bottom: 20px;
}

.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;
}

/* #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 {
    box-shadow: 0 4px 10px rgba(var(--secondary-color), .25);
}

.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;
    color: #000;
}


/* #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;
    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;
    color: #000;
    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;
    align-self: flex-start;
    transition: all ease-out .25s;
}

.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:hover {
    transform: translateY(-.25rem);
}

.film .media:hover:before {
    opacity: 1;
}

.film .media .age-rating{
    position: absolute;
    bottom: 16px;
    right: 10px;
}

.film-info .age-rating,
.film .age-rating {
    width: 36px;
    height: 36px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    padding-top: 5px;
    color: #fff;
    background: #6fcf97;
    border-radius: 4px;
    z-index: 10;
}

.film-info .age-rating[data-age-rating="18+"],
.film .age-rating[data-age-rating="18+"] {
    background: #eb5757;
}

.film-info .age-rating[data-age-rating="16+"],
.film .age-rating[data-age-rating="16+"] {
    background: #f2994a;
}

.film .media{
    position: relative;
}

.film .media:after{
    position: relative;
    display: block;
    content:'';
    z-index: -1;
    padding-bottom: 150%;
}

.film .media img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 10px rgba(var(--secondary-color), .25);
    object-fit: cover;
}

.film .content {
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.gallery__item {
    position: relative;
}

.gallery__item a{
    position: relative;
    display: block;
    height: 100%;
}

.gallery__item a::before {
    opacity: 0;
    display: block;
    left: 5px;
    right: 5px;
    top:5px;
    bottom: 5px;
    content: '';
    position: absolute;
    background: rgba(var(--secondary-color), 0.6);
    transition: all ease-out .25s;
}

.gallery__item:hover a::before {
    opacity: 1;
}

.gallery__item .icon {
    opacity: 0;
    position: absolute;
    height: 24px;
    width: 24px;
    top: 50%;
    margin-top: -12px;
    left: 50%;
    margin-left: -12px;
    transition: all ease-out .25s;
    color: rgb(var(--primary-color));
}

.gallery__item:hover .icon {
    opacity: 1;
}

.gallery__item img {
    display: block;
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    border: 5px solid transparent;
}

.gallery__item:hover img {
    border-color: rgb(var(--primary-color));
}

.schedule .cinema .content{
    max-height: none;
}

@media only screen and (max-width: 767px) {
    .film .media {
        align-self: center;
        margin-bottom: 20px;
    }

    .block.schedule .film .media img {
        width: 100%;
        height: auto;
    }
}

.film .title {
    font-weight: 700;
    font-size: 18px;
    color: #000;
    transition: all ease-out .25s;
}

.film .title:hover {
    color: rgba(0, 0, 0, .5);
}

.film .info .genres {
    margin: 10px 0;
}

.film .info .details {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 20px;
}

.film .info .details .country {
    margin-right: 20px;
}

.film .info .details .duration {}

.film-main {
    position: relative;
    padding: 0 0 20px 20px;
    transition: all ease-out .25s;
}

.film-main *{
    transition: all ease-out .25s;
}

.grid-sizer {
    width: 100%;
}

.film-main{
    margin-bottom: 30px;
    width: 100%;
    height: 400px;
}

.film-main .media {
    display: block;
    height: 100%;
}

.film-main .film_pushkin{
    position: absolute;
    top: 0;
    right: 0;
    height: 36px;
    line-height: 36px;
    color: #fff;
    background: #6fcf97;
    font-weight: 700;
    font-size: 18px;
    z-index: 10;
    padding: 0 10px;
}

.film-main .age-rating{
    position: absolute;
    bottom: 16px;
    right: 10px;
}

.film-main .age-rating {
    width: 36px;
    height: 36px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    padding-top: 5px;
    color: #fff;
    background: #6fcf97;
    z-index: 10;
}

.film-main .age-rating[data-age-rating="18+"] {
    background: #eb5757;
}

.film-main .age-rating[data-age-rating="16+"] {
    background: #f2994a;
}

.film-main .media img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.film-main .content {
    position: absolute;
    top:0;
    left: 0;
    right:0;
    bottom: 0;
    padding: 20px;
    opacity: 0;
    border: 5px solid transparent;
    background-color: rgba(var(--secondary-color), 0.9);
}

.film-main:hover .content {
    opacity: 1;
    border-color: rgb(var(--primary-color));
}

.film-main:hover .content *:not(.btn){
    color: #fff;
}

.film-main>.title {
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    max-width: 70%;
    padding: 10px 20px;
    display: block;
    background-color: rgba(0,0,0, 0.85);
    color: rgba(var(--primary-color));
    font-weight: lighter;
    font-size: 1.2em;
}

.film-main .description {
    display: none;
}

.film-main.big .description {
    display: block;
}

.film-main.big>.title {
    font-size: 2em;
    box-shadow: 0 4px 10px rgba(0,0,0, .25);
}

.film-main>.title: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-main:hover>.title:before {
    opacity: 2;
}

.film-main:hover>.title {
    transform: translateY(-.25rem);
    background-color: rgba(0,0,0, 1);
}

@media (max-width: 767px){
    .film-main {
        padding: 0;
    }
}
@media (min-width: 768px){
    .grid-sizer {
        width: 345px;
    }

    .film-main{
        margin-bottom: 20px;
        margin-left: 20px;
        width: 325px;
        height: 325px;
    }

    .film-main .content {
        top:0;
        left: 20px;
        right:0;
        bottom: 20px;
    }

    .film-main>.title {
        bottom:0;
        left: 0;
    }
    .film-main .age-rating{
        bottom: 20px;
        right: 0;
    }
}

@media (min-width: 992px){
    .grid-sizer {
        width: 230px;
    }

    .film-main{
        width: 210px;
        height: 210px;
    }
}

@media (min-width: 1200px){
    .grid-sizer {
        width: 275px;
    }

    .film-main{
        width: 255px;
        height: 255px;
    }

    .grid-item--width2{
        width: 530px;
    }

    .grid-item--height2{
        height: 530px;
    }
}

/* #CINEMA
====================================== */

.cinema {margin-bottom: 40px;}

.cinema .media {
    position: relative;
    align-self: flex-start;
    transition: all ease-out .25s;
}

.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:hover {
    transform: translateY(-.25rem);
}

.cinema .media:hover:before {
    opacity: 1;
}

.cinema .media img {
    display: block;
    width: 250px;
    height: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
    object-fit: cover;
}

.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 {
        align-self: center;
        margin-bottom: 20px;
    }

    .block.schedule .cinema .media img {
        width: 100%;
        height: auto;
    }
}

.cinema .info .title {
    font-weight: 700;
    font-size: 18px;
    color: #000;
    transition: all ease-out .25s;
}

.cinema .info .title:hover {
    color: rgba(0, 0, 0, .5);
}

.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 {
    margin-bottom: 20px;
}

.film-info .media img {
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .film-info .media img {
        width: 300px;
        height: auto;
    }
}

@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;
    min-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-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 {
        color: #000;
        padding-top: 30px;
        text-align: center;
    }
}

.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;
    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;
}

@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-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 {
        color: #000;
        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;
    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 {
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
}

.block.schedule .filter {
    margin-bottom: 20px;
}

@media only screen and (max-width: 575px) {
    .block.schedule .dates:before {
        width: 50px;
        padding-right: 0;
    }
}

.block.schedule .dates .item {
    width: auto;
    font-size: 18px;
    padding: 0 20px;
    cursor: pointer;
    color: rgba(var(--secondary-color));
    transition: all ease-out .05s;
}

.block.schedule .dates .item .small {
    color: #000;
}

.block.schedule .dates .item:hover {
    color: #eb5f37;
}

@media only screen and (max-width: 575px) {
    .block.schedule .dates .item {
        padding: 0 10px;
    }
}

.block.schedule .dates .item:first-child {
    padding-left: 0;
}

.block.schedule .dates .item.active,
.block.schedule .dates .item.active:hover {
    color: rgba(var(--primary-color));
}

.block.schedule .dates .item.disable,
.block.schedule .dates .item.disable:hover {
    cursor: default;
    opacity: .5;
    color: #444;
}

/* #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;
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.slider .swiper-container {
    height: 100%;
}

.slider .content-list .item>.overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-end;
    height: 100%;
}

.slider .content-list .item .content {
    max-width: 640px;
    color: #fff;
    padding-bottom: 70px;
}

.slider .content-list .item .title {
    z-index: 1;
    font-size: 36px;
    line-height: 44px;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.slider .content-list .item .description {
    margin-bottom: 30px;
}

.slider .content-list .item>.media {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.slider .content-list .item>.media img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1000;
    overflow: hidden;
    display: block;
    max-width: 100%;
}

.slider .content-list>.item>.media:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent);
}

.slider .content-list>.item>.media:after {
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    background-image: radial-gradient(at center, rgba(255, 255, 255, 0), rgba(0, 0, 0, .6));
}

.module.slider>.pagination {
    position: absolute;
    z-index: 100;
    bottom: 40px;
    width: 1280px;
    left: 50%;
    margin-left: -640px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0 40px;
}

.module.slider>.pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: transparent;
    border: 2px solid #fff;
    transition: all .3s ease-out;
    border-radius: 50%;
    opacity: unset;
}

.module.slider>.pagination .swiper-pagination-bullet:hover {
    opacity: .8;
    background: #fff;
    border-color: rgba(255, 255, 255, 0);
}

.module.slider>.pagination .swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
    background: #fff;
    border-color: rgba(255, 255, 255, 0);
}

.module.slider>.pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}

@media only screen and (max-width: 575px) {
    .slider {
        height: 400px;
    }

    .slider .content-list>.item .content{
        padding-bottom: 50px;
    }

    .slider .content-list>.item>.media:after {
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, .1), rgba(0, 0, 0, .6));
    }

    /*.module.slider {
        display: none;
    }*/
}


/* #BLOCK_ANONCES
====================================== */
.module.soon {
    position: relative;
    background-color: rgb(var(--secondary-color));
    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;
    margin: 0 15px;
    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;
}


/* #BLOCK_POPUP
====================================== */
.popup {
    position: relative;
    background: #fff;
    padding: 20px;
    width: auto;
    max-width: 550px;
    margin: 20px auto;
    line-height: 1.45;
}

.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;
}

.block-inner {
    margin: 0 !important;
    padding: 40px 0;
    position: relative;
    background-size: cover;
    background-position: center center;
}

.block-inner .title {
    position: relative;
    color: rgb(var(--primary-color));
    font-weight: 500;
    font-size: 2.4em;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.block-inner .title:before {
    content: '';
    display: block;
    width: 20%;
    height: 3px;
    background-color: rgb(var(--primary-color));
    margin-bottom: 20px;
}

.block-inner .content {
    color: #fff;
    font-size: 1.2em;
    font-weight: lighter;
    margin-bottom: 40px;
}

.block-inner-left:before {content: '';position: absolute;top: 0;left: 0;bottom: 0;right: 0;background-color: rgba(0,0,0,0.8);}

.module.contacts{
    text-align: right;
}

.module.contacts .contacts__item {
    display: inline-block;
    padding: 0 20px;
    font-size: 1.3em;
    font-weight: lighter;
}

body:not(.page-header-opacity) .module.contacts .contacts__item{
    color: #fff;
}

@media (min-width: 992px) {
    .block-inner-left:before {right: 50%;}
}

.block-outer {
    position: relative;
    padding: 80px 0;
    margin: 0 !important;
}

.block-outer .container{
    position: relative;
}

.block-outer .media{
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    z-index: 0;
}

.block-outer .title {
    position: relative;
    color: rgb(var(--primary-color));
    font-weight: 500;
    font-size: 2.4em;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.block-outer .title:before {
    content: '';
    display: block;
    width: 20%;
    height: 3px;
    background-color: rgb(var(--primary-color));
    margin-bottom: 20px;
}

.block-outer .content {
    position: relative;
    font-size: 1.2em;
    font-weight: lighter;
    margin-bottom: 40px;
}

.block-outer .btn {
    position: relative;
}

.block-outer .content-margin {
    margin-top: 80px;
}

@media (max-width: 767px) {
    .block-outer .content-margin {
        margin-top: -50px;
    }
}

.block-outer .content-border{
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 0;
    height: 100%;
    border: 5px solid rgb(var(--primary-color));
    z-index: 0;
}
@media (min-width: 992px) {
    .block-outer .content-border{
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .block-outer .content-border.content-border-left {
        left: -170px;
    }
}
/* #POPUP
====================================== */
.popup {
    background: rgb(var(--color-white));
    color: rgb(var(--color-black));
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
    position: relative;
}

.popup__head {
    display: flex;
    flex-flow: row nowrap;
    background: rgb(var(--color-secondary));
    color: rgb(var(--font-color));
    padding: 10px 0;
}

.popup__title {
    font-size: 16px;
    font-weight: 700;
    padding: 0 20px;
}

.popup__body {
    padding: 20px;
}

.popup .mfp-close {
    color: rgb(var(--color-white));
}

.popup img {
    display: block;
    max-width: 100%;
}