/*==========================================================================================================================================================================*/
/* Подключение шрифтов */
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto.woff2") format("woff2"),
         url("../fonts/Roboto.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Fira Sans";
    src: url("../fonts/FiraSans-Regular.woff2") format("woff2"),
         url("../fonts/FiraSans-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Fira Sans";
    src: url("../fonts/FiraSans-Medium.woff2") format("woff2"),
         url("../fonts/FiraSans-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Fira Sans";
    src: url("../fonts/FiraSans-SemiBold.woff2") format("woff2"),
         url("../fonts/FiraSans-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Circe";
    src: url("../fonts/Circe-Regular.woff2") format("woff2"),
         url("../fonts/Circe-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Circe";
    src: url("../fonts/Circe-Bold.woff2") format("woff2"),
         url("../fonts/Circe-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Circe";
    src: url("../fonts/Circe-ExtraBold.woff2") format("woff2"),
         url("../fonts/Circe-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}



/*==========================================================================================================================================================================*/
/* Обнуление */
body {
    margin: 0;
    padding: 0;
}

.mosfilm * {
    margin: 0;
    padding: 0;
}

.mosfilm *,
.mosfilm *:before,
.mosfilm *:after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.mosfilm-page-header {
	font-size: 24px;
/* 	font-weight: 700; */
	letter-spacing: normal;
}

.mosfilm a,
.mosfilm button {
    border: none;
    font-family: "Fira Sans", sans-serif;
    color: #fff;
    cursor: pointer;
}

.mosfilm button {
    background: none;
    user-select: none;
}

.mosfilm button:focus {
    outline: none;
}

.mosfilm button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mosfilm ul li {
    list-style: none;
}

.mosfilm img {
    max-width: 100%;
    vertical-align: top;
    border: 0;
    user-select: none;
}

.mosfilm a:focus,
.mosfilm a:active {
    outline: none;
}

.mosfilm a,
.mosfilm a:visited,
.mosfilm a:hover {
    text-decoration: none;
}



/*==========================================================================================================================================================================*/
/* Общие стили */
.mosfilm {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 0 66px;
    font-family: "Circe", sans-serif;
    color: #fff;
    background-color: #19082b;
    overflow-x: hidden;
}

.mosfilm [class*="__container"] {
    padding: 0 30px; 
}

.mosfilm .mosfilm-main *, .mosfilm .mosfilm-about .mosfilm-about__container * {
	font-family: "Circe", sans-serif;
}


/*=====================================================================================*/
/* Media Queries */
@media (max-width: 767.98px) {
    .mosfilm {
        padding: 0 0 36px;
    }

    .mosfilm [class*="__container"] {
        padding: 0 16px; 
    }
}

@media (max-width: 479.98px) {
    .mosfilm [class*="__container"] {
        padding: 0 10px; 
    }
}



/*==========================================================================================================================================================================*/
/* Модификаторы */
.image-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/*==========================================================================================================================================================================*/
/* Общие Стили */
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;  
    z-index: 1;                                                                         /* Fix of Webkit flickering. */
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}
 
.swiper-pointer-events {
    touch-action: pan-y;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}


/*=====================================================================================*/
/* Arrows */
[data-arrows] {
    position: absolute;
    top: 50%;
    left: -20px;
    width: calc(100% + 40px);
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 200;
}

[data-arrows] button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    pointer-events: all;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

[data-arrow-prev] {
    transform: rotate(180deg);
}

[data-arrows] svg {
    width: 12px;
}

[data-arrows] .swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

[data-arrows] .swiper-button-lock {
    display: none;
}

.icon-arrow {
    fill: #000;
    transition: fill 0.3s ease;
}


/*=====================================================================================*/
/* Media Queries */
@media (any-hover: hover) and (any-pointer: fine) {
    [data-arrows] button:hover {
        background-color: #6236CA;
    }

    [data-arrows] button:hover .icon-arrow {
        fill: #fff;
    }
}

@media (max-width: 600px) {
    [data-arrows] {
        display: none;
    }
}



/*==========================================================================================================================================================================*/
/* Nav */
.mosfilm-nav {
    padding: 10px 0 0;
}

.mosfilm-nav__body {
    padding: 20px 0;
}

.mosfilm-nav__list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}

.mosfilm-nav__list::-webkit-scrollbar {
    display: none;
}

.mosfilm-nav__link {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.28s ease;
}


/*=====================================================================================*/
/* Media Queries */
@media (any-hover: hover) and (any-pointer: fine) {
    .mosfilm-nav__link:hover {
        color: #6236CA;
    }
}

@media (max-width: 767.98px) {
    .mosfilm-nav {
        padding: 0;
    }

    .mosfilm-nav__list {
        flex-wrap: nowrap;
        overflow-y: hidden;
        overflow-x: auto;
        margin: 0 -16px;
        padding: 0 16px;
    }

    .mosfilm-nav__link {
        font-size: 20px;
        line-height: 1.2;
    }
}

@media (max-width: 479.98px) {
    .mosfilm-nav__list {
        margin: 0 -10px;
        padding: 0 10px;
    }
}



/*==========================================================================================================================================================================*/
/* Main */
.mosfilm-main {
    margin: 0 0 40px;
}

.mosfilm-main__body {
    position: relative;
    display: flex;
    justify-content: space-between;
    min-height: 240px;
    border-radius: 30px;
    overflow: hidden;
}

.mosfilm-main__body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;	
    background: linear-gradient(96deg, #000, #000 67%, rgba(0, 0, 0, 0) 90%);
    z-index: 1;
}

.mosfilm-main__title {
    position: relative;
    max-width: 12ch;
    padding: 45px 0 27px 44px;
    font-weight: 800;
    font-size: 64px;
    line-height: 0.84;
    z-index: 2;
}

.mosfilm-main__title span {
    display: block;
    margin: 5px 0 0;
    font-size: 39px;
    line-height: 1.1;
    font-weight: 400;
}

.mosfilm-main__image {
    position: relative;
    flex: 0 0 49.445%;
    min-height: 100%;
}


/*=====================================================================================*/
/* Media Queries */
@media (max-width: 1200px) {
    .mosfilm-main__title {
        font-size: calc(32px + 32 * ((100vw - 375px) / (1200 - 375)));
    }
    
    .mosfilm-main__title span {
        font-size: calc(21px + 18 * ((100vw - 375px) / (1200 - 375)));
    }
}

@media (max-width: 991.98px) {
    .mosfilm-main__title {
        padding: 45px 0 27px 30px;
    }
}

@media (max-width: 767.98px) {
    .mosfilm-main {
        margin: 0 0 30px;
    }

    .mosfilm-main__body::before {
        width: 80%;
        background: linear-gradient(96deg, #000, #000 68%, rgba(0, 0, 0, 0) 90%);
    }

    .mosfilm-main__image {
        flex: 0 0 45%;
    }
}

@media (max-width: 580px) {
    .mosfilm-main__body::before {
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .mosfilm-main__title {
        padding: 23px 18px;
    }

    .mosfilm-main__image {
        position: absolute;
        inset: 0;
    }
}



/*==========================================================================================================================================================================*/
/* About */
.mosfilm-about {
    margin: 0 0 40px;
}

.mosfilm-about__body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.mosfilm-about__column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 164px;
    border-radius: 30px;
    overflow: hidden;
}

.mosfilm-about__column::before,
.mosfilm-about .glass {
    position: absolute;
    bottom: 0;
    left: -1px;
    width: calc(100% + 2px);
    height: 51px;
    z-index: 3;
}

.mosfilm-about__column::before {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

@media (max-width: 767.98px) {
    .mosfilm-about__column:nth-child(2),
    .mosfilm-about__column:nth-child(5),
    .mosfilm-about__column:nth-child(6),
    .mosfilm-about__column:nth-child(7) {
        display: none;
    }
}

.mosfilm-about__image {
    position: absolute;
    inset: 0;
}

.mosfilm-about__image::before,
.mosfilm-about__image::after {
    content: '';
    position: absolute;
    inset: 0;
}

.mosfilm-about__image::before {
    background: rgba(0, 40, 252, 0.2);
    z-index: 1;	
}

.mosfilm-about__image::after {
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;	
}

.mosfilm-about__title {
    position: relative;
    max-width: 22ch;
    padding: 26px 16px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    z-index: 3;
}

@supports ((-webkit-backdrop-filter: blur(2px)) or (backdrop-filter: blur(2px))) {
    .mosfilm-about .glass {
        -webkit-backdrop-filter: blur(2px);
                backdrop-filter: blur(2px);
    }
}


/*=====================================================================================*/
/* Media Queries */
@media (max-width: 1023.98px) {
    .mosfilm-about__body {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .mosfilm-about {
        margin: 0 0 30px;
    }

    .mosfilm-about__column {
        min-height: 130px;
    }

    .mosfilm-about__image::after {
        background: rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 479.98px) {
    .mosfilm-about__body {
        grid-template-columns: 1fr;
    }
}



/*==========================================================================================================================================================================*/
/* Slider */
.mosfilm-slider {
    margin: 0 0 40px;
    overflow: hidden;
}

.mosfilm-slider__body {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.slider-mosfilm {
    width: 600px;
    height: 300px;
    overflow: visible;
}

.slider-mosfilm__slide {
    border-radius: 30px;
    overflow: hidden;
}

.slider-mosfilm__slide::before {
    content: '';
    position: absolute;
    inset: 0;	
    background-color: rgba(0, 0, 0, 0.6);
    transition: background-color 0.8s ease;
    z-index: 1;
}

.slider-mosfilm__slide.swiper-slide-active::before {
    background-color: rgba(0, 0, 0, 0);
}

.slider-mosfilm__image {
    position: absolute;
    inset: 0;
    background-color: #19082b;
}

.slider-mosfilm__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgba(25, 8, 43, 0) 0%, #19082b 37%, #19082b 63%, rgba(25, 8, 43, 0) 100%);
    opacity: 1;
    transition: opacity 0.8s ease;
    z-index: 1;
}

@supports ((-webkit-backdrop-filter: blur(3px)) or (backdrop-filter: blur(3px))) {
    .slider-mosfilm__image::before {
        -webkit-backdrop-filter: blur(3px);
                backdrop-filter: blur(3px);
    }
}

.swiper-slide-active .slider-mosfilm__image::before {
    opacity: 0;
}


/*=====================================================================================*/
/* Media Queries */
@media (max-width: 767.98px) {
    .mosfilm-slider {
        margin: 0 0 30px;
    }

    .slider-mosfilm {
        width: 440px;
        height: 220px;

    }

    .slider-mosfilm__slide {
        border-radius: 22px;
    }
}

@media (max-width: 479.98px) {
    .slider-mosfilm {
        width: 300px;
        height: 152px;
    }

    .slider-mosfilm__slide {
        border-radius: 15px;
    }
}



/*==========================================================================================================================================================================*/
/* Info */
.mosfilm-info {
    font-family: "Fira Sans", sans-serif;
}

.mosfilm-info__map {
    position: relative;
    height: 164px;
    margin: 0 0 20px;
    border-radius: 30px;
    overflow: hidden;
}

.mosfilm-info__body {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 40px 0;
}

.mosfilm-info__column {
    color: #999da5;
}

.mosfilm-info__address {
    font-size: 18px;
    line-height: 1.33;
}

.mosfilm-info__metro-list,
.mosfilm-info__parking {
    font-size: 14px;
    line-height: 1.71;
}

.mosfilm-info__metro-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 16px;
    margin: 0 0 20px;
}

.mosfilm-info__metro-list li {
    position: relative;
    padding: 0 0 0 18px;
}

.mosfilm-info__metro-list li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #ffff54;	
    border-radius: 50%;
}

.mosfilm-info__metro-list li:nth-child(2n)::before {
    background-color: #824920;
}

.mosfilm-info__parking {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.mosfilm-info__parking img {
    width: 14px;
    margin: 0 0 2px;
}

.mosfilm-info__text {
    flex: 0 0 53.704%;
    max-width: 580px;
    font-size: 14px;
    line-height: 1.43;
}


/*=====================================================================================*/
/* Media Queries */
@media (max-width: 840.98px) {
    .mosfilm-info__map {
        height: 240px;
    }

    .mosfilm-info__body {
        flex-direction: column;
        margin: 0 0 20px 0;
    }

    .mosfilm-info__text {
        flex: none;
    }
}



/*==========================================================================================================================================================================*/
/* Actions */
.mosfilm-actions {
    position: relative;
    margin: 0 0 40px 0;
}

.mosfilm-actions__body {
    display: flex;
    column-gap: 16px;
    row-gap: 20px;
}

.subscribe-mosfilm,
.club-mosfilm {
    background-color: #2b1449;
    border-radius: 42px;
}

.subscribe-mosfilm {
    position: relative;
    flex: 0 0 61.112%;
    padding: 26px 55px 28px 164px;
    font-family: "Fira Sans";
}

.subscribe-mosfilm img {
    position: absolute;
    top: -14px;
    left: 23px;
    width: 117px;
}

.subscribe-mosfilm__title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.45;
}

.subscribe-mosfilm__form {
    display: flex;
    column-gap: 8px;
    row-gap: 12px;
    max-width: 386px;
    margin: 0 0 18px 0;
}

.subscribe-mosfilm input {
    width: 100%;
    height: 39px;
    padding: 0 18px;
    border-radius: 20px;
    background-color: #fff;
    border: none;
    font-family: "Fira Sans";
    font-size: 16px;
    font-weight: 400;
    color: #292929;
}

.subscribe-mosfilm input::placeholder {
    color: rgba(63, 63, 63, 0.4);
    transition: color 0.3s ease;
}

.subscribe-mosfilm input:focus {
    outline: none;
}

.subscribe-mosfilm input:focus::placeholder {
    color: rgba(63, 63, 63, 0.2);
}

.subscribe-mosfilm__text {
    max-width: 62ch;
}

.subscribe-mosfilm__text p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

.subscribe-mosfilm .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 136px;
    font-size: 16px;
    font-weight: 400;
    padding: 7px 20px;
    border-radius: 20px;
    background-color: #6633cc;
    transition: background-color 0.25s ease;
}

.club-mosfilm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 auto;
    padding: 49px 32px;
    font-family: "Fira Sans";
    text-align: center;
}

.club-mosfilm__title {
    margin: 0 0 40px 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.45;
}

.club-mosfilm__button {
    display: flex;
    margin: 0 auto;
}

.club-mosfilm__button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #6633cc;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.club-mosfilm__button .button-text {
    min-height: 40px;
    margin: 0 6px 0 0;
    padding: 7px 20px; 
    border-radius: 20px;
    font-family: "Fira Sans";
    font-size: 16px;
    font-weight: 400;
}

.club-mosfilm__button img {
    width: 12px;
    margin: 0 0 0 2px;
}

.club-mosfilm .button-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}


/*=====================================================================================*/
/* Media Queries */
@media (any-hover: hover) and (any-pointer: fine) {
    .subscribe-mosfilm .button:hover,
    .club-mosfilm__button:hover span {
        background-color: #5726b7;
    }

    .club-mosfilm__button:hover .button-arrow {
        transform: translateX(6px);
    }
}
@media (max-width: 1023.98px) {
    .subscribe-mosfilm {
        padding: 26px 36px 28px;
    }

    .subscribe-mosfilm__title {
        max-width: 40ch;
        min-height: 94px;
        padding: 0 0 0 120px;
    }

    .subscribe-mosfilm__form {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .mosfilm-actions {
        margin: 0 0 12px 0;
    }

    .mosfilm-actions__body {
        flex-direction: column-reverse;
    }

    .subscribe-mosfilm,
    .club-mosfilm {
        border-radius: 30px;
    }

    .subscribe-mosfilm {
        flex: none;
        padding: 26px 20px 20px;
    }

    .subscribe-mosfilm img {        
        top: 9px;
        left: 8px;
        width: 91px;
    }

    .subscribe-mosfilm__title {
        max-width: 38ch;
        padding: 0 0 0 100px;
    }

    .subscribe-mosfilm__form {
        max-width: 500px;
    }

    .club-mosfilm {
        padding: 28px 18px 30px;
    }

    .club-mosfilm__title {
        margin: 0 0 14px 0;
    }
}

@media (max-width: 479.98px) {
    .subscribe-mosfilm__form {
        flex-direction: column;
        margin: 0 0 14px 0;
    }

    .subscribe-mosfilm input {
        height: 40px;
    }

    .subscribe-mosfilm .button {
        flex: none;
        width: 100%;
        height: 40px;
    }
}

@media (max-width: 359px) {
    .subscribe-mosfilm__title {
        padding: 0;
    }

    .subscribe-mosfilm img {        
        display: none;
    }
}



/*==========================================================================================================================================================================*/
/* Yandex Карта */
.ymaps-2-1-79-copyright,
.ymaps-2-1-79-gototech,
.ymaps-2-1-79-gototaxi {                                                       
	display: none !important;
}

.ymaps-2-1-79-map {
    width: 100% !important;
}

.ymaps-2-1-79-controls__toolbar_right,
.ymaps-2-1-79-controls__toolbar_left,
.ymaps-2-1-79-controls__bottom {
    display: none;
}

.ymaps-2-1-79-map-copyrights-promo {
    bottom: 8px !important;
}

.ymaps-2-1-79-gotoymaps {
    margin-left: 12px !important;
}

.ymaps-2-1-79-gotoymaps__container {
    height: 28px !important;
    padding: 0 6px !important;
    border-radius: 46px !important;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25) !important;
}

.ymaps-2-1-79-gotoymaps__text-container {
    font-family: "Fira Sans", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.71 !important;
}


#map {
	background: url("@img/icons/loading.gif") center / 50px no-repeat;
}
