/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Fonts
# Root
# Global
    ## Tools
# Typography
# actusblank
# Menu
# Footer
# Layout
--------------------------------------------------------------*/
 


/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

/*
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700,900&display=swap&subset=greek');
*/
 
/* ------------------- CFAstyPro */
/* ----------------------------- */
@font-face {
    font-family: 'CFAstyPro';
    src: url(fonts/CFAstyPro-Light.otf);
    font-weight: 300;
	font-display: swap;
}
@font-face {
    font-family: 'CFAstyPro';
    src: url(fonts/CFAstyPro-Book.otf);
    font-weight: 400;
	font-display: swap;
}
@font-face {
    font-family: 'CFAstyPro';
    src: url(fonts/CFAstyPro-Bold.otf);
    font-weight: 700;
	font-display: swap;
}





/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/
:root {

    --fontA: 'CFAstyPro', sans-serif;
    --fontB: 'CFAstyPro', sans-serif;
	
	--colorA: #7e4939;
	--colorB: #505f58;
	--colorC: #b38972;
	--colorD: #21221c;


    --txA: 0 0 1px hsla(176, 99%, 33%, 0.4);
    --txB: 0 0 1px hsla(217, 51%, 20%, 0.4);
    --txC: 0 0 1px hsla(215, 26%, 37%, 0.4);
    --txD: 0 0 1px hsla(0, 0%, 90%, 0.4);

    --txA3: 0 0 1px hsla(210, 74%, 48%, 0.4);

    --txWH: 0 0 1px hsla(0, 0%, 100%, 0.4);
    --txBL: 0 0 1px hsla(0, 0%, 0%, 0.4);



}


 
/*--------------------------------------------------------------
# Typography - Colors
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
	font-family: sans-serif; 
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body { margin: 0; font-family: var(--fontA); }
body, body * { box-sizing: border-box; }
html, body { overflow-x: hidden; }
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--colorA);
}
::-webkit-scrollbar-thumb {
    background: var(--colorB);
    border: 2px solid var(--colorA);
}
body::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}


a,p,li,h1,h2,h3,h4,h5,h6 { font-family: var(--fontA); }
.uline::after { border-bottom: 8px solid var(--colorA); }
a { color: var(--colorA); text-decoration: none; }
a h1, a h2, a h3, a h4, a h5, a h6, a li,
a p { color: black; }

a, p, li { font-size: 18px; }



.A-round,
.A-button-round { background: var(--colorA); }

.backA { background: var(--colorA); }
.backB { background: var(--colorB); }
.backC { background: var(--colorC); }
.backD { background: var(--colorD); }
.backE { background: #021d26; }
.backF { background: #cecece; }

.A-flex { display: flex; }
.A-flex-wrap { display: flex; flex-flow: row wrap; }

.abs {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}




body main#content,
body footer { display: block; }
figure { margin: 0; }


img { position: relative; }
img:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: white;
}


/* **************************************************************** */
/* **************************************************************** */
/* **************************************************************** */

/* 	--------------
	HEADER
 	-------------- */
header {
	position: relative;
	width: 100%;
    text-align: center;
	padding: 48px 5% 16px;
	background: url(img/dark-back-1.jpg); 
}
header .A-flex {
	place-items: flex-end; 
	place-content: space-between;
    align-items: center;
}
header .A-logo {
	display: inline-block;
    width: auto;
	margin: 0 0 56px 0;
	transition: 1s all;
	line-height: 0;
}
header .A-logo img {
    width: 260px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}
header .A-logo.closed { transform: scale(0); }


/* Navigation */
header nav .menu-toggle {
	display: none;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	cursor: pointer;
}
header nav .menu-toggle svg {
	height: 32px;
    fill: white;
    stroke: white;
    stroke-width: 12px;
}
header nav {
    display: block;
    position: relative;
    width: 100%;
    text-align: right;
    z-index: 999999;
}
header nav.closed { left: -300px; }
header nav ul {
    display: flex;
	flex-flow: row wrap;
    place-content: flex-end;
	width: auto;
    padding: 0;
    margin: 0;
    list-style: none;
	text-align: center;
}
header nav ul li {
    position: relative;
    width: auto;
    padding: 0px;
    margin: 6px 0 6px 32px;
    cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
header nav ul li a {
    position: relative;
    font: 400 18px var(--fontA);
	text-decoration: none;
	color: white;
    z-index: 99;
}
header nav ul li:hover > a,
header nav ul li.current_page_item > a {
    color: var(--colorA);
    opacity: 1;
}
header nav ul.children { 
	display: none;
	position: absolute;
	min-width: 120px;
	padding: 4px 0;
	text-align: left;
}
header nav ul.children li {
	margin: 0;
	padding: 4px 0 4px 16px;
}
header nav ul li:hover ul.children { display: block; }


header nav ul.sub-menu { 
	display: none;
	position: absolute;
	min-width: 200px;
	padding: 8px 8px;
	text-align: left;
	z-index: 9999;
	background: #1f1f1f;
}
header nav ul.sub-menu li {
	display: block;
	margin: 0;
	padding: 4px 0;
}
header nav ul.sub-menu li a { font-size: 16px; }
header nav ul li:hover ul.sub-menu { display: block; }
header nav ul.sub-menu ul.sub-menu {
	position: relative;
	padding: 0 0 0 24px;
}

header .A-flags {
	position: absolute;
	right: 72px;
	top: 48px;
}
header .A-flags img {
	width: auto;
	height: 20px;
}
header .A-flags .languages { display: flex; }
header .A-flags .languages li { margin-left: 16px; }

nav.A-breadcrumb {}

nav.A-breadcrumb ul { display: flex; list-style: none; }
nav.A-breadcrumb ul li { margin-right: 8px; }
nav.A-breadcrumb ul li a { text-decoration: none; font-weight: 700; color: var(--colorB); }
nav.A-breadcrumb ul li a:hover { text-decoration: underline; }


/* SEARCH */
.A-search {
	display: flex;
	position: absolute;
    top: 32px;
    right: 5%;
	opacity: 0.35;
}
.A-search:hover {opacity: 1;}
.A-search form { display: flex; }
.A-search label span { display: none; }
.A-search input[type="search"] {
    min-width: 260px;
    padding: 4px 8px;
    font: 400 14px var(--fontA);
    background: hsla(0, 0%, 0%, 0.1);
    border: 0;
    outline: 0;
    border-radius: 100px;
}
.A-search .search-submit {
    top: 2px;
    background: transparent;
    color: transparent;
    border: 0;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.7;
}
.A-search .search-submit:hover { opacity: 1; }
.A-search .search-submit img {
    width: auto;
    height: 20px;
    padding: 2px 0;
	object-fit: contain;
}
.A-search svg { height: 24px; margin-left: -48px; pointer-events: none; }

.A-404,
.A-SEARCH-RESULTS {
	padding: 32px 10%;
}

.A-page-title {
	font: 700 40px var(--fontA);
}




#act_map {
	display: none;
	width: 60%;
	height: 300px;
}
.gm-style-mtc { display: none; }




.A-video-frame {
	position: relative;
	background: url(img/laptop.png) no-repeat;
	background-size: 100%;
    width: 80%;
	padding: 2.5% 0.4% 10% 0.3%;
	margin: 32px 0 64px;
    margin-left: 10%;
}
.A-video-frame .wp-block-embed__wrapper {
	position: relative;
	width: calc(100% / 1.3);
	padding-top: calc(56.25% / 1.3);
	margin: 0 auto;
}
.A-video-frame .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.A-shadow-R { position: relative; }
.A-shadow-R:before {
	content: "";
	position: absolute;
	left: 100%;
	top: 0;
	height: 100%;
	width: 128px;
	background: url(img/shadow-R.jpg) no-repeat;
	background-size: contain;
}


.A-button {
	display: inline-block;
	margin: 0;
	padding: 8px 16px;
	background: var(--colorA);
	color: white;
	font: 700 16px var(--fontA);
	border-radius: 100px;
	cursor: pointer;
}
.A-button:hover {
	background: black;
	color: white;
}
.A-button a { color: white; font: 700 16px var(--fontA); }
.A-button a:hover { color: white; }
.A-button-white {
	background: white;
	color: black;
	font: 700 28px var(--fontA);
}

.A-button-white:hover {
	background: var(--colorA);
	color: white;
}
.A-button-white a { color: black; font: 700 28px var(--fontA); }
.A-button-white a:hover { color: white; }

/* ******************************************************* */
/* ******************************************************* */
/* ******************************************************* */
.A-home-dark {
	min-height: 50vw;
	background-color: var(--colorB);
	background: url(img/dark-back.jpg);
	background-size: cover;
}

.A-home-slider {
	position: relative;
	width: 100%;
	min-height: 20vw;
	height: auto;
}
.A-home-slider figure img {
	width: 100%;
	height: auto;
	min-height: 560px;
	padding: 0 5%;
	object-fit: contain;
}
.A-home-slider .A-red-color {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 500px;
	background-color: var(--colorA);
	mix-blend-mode: color;
	
}
.A-home-slider .A-moto {
	position: absolute;
	top: 80px;
	left: 0;
	width: 100%;
	text-align: center;
	font: 700 90px var(--fontA);
	line-height: 0.8;
	color: white;
}
.A-home-slider .A-moto div:nth-child(2) {
	position: relative;
	left: -12%;
	font-size: 48px;
	opacity: 0.5;
}
.A-home-slider .A-moto div:nth-child(3) {
	position: relative;
	left: 10%;
	color: #d24a4f;
	line-height: 1;
}
.A-home-slider .A-side-group {
    right: -7%;
    margin-top: -20%;
    z-index: 9;
}
.A-home-slider .A-side-group div { color: white; }
#A-theatre-grid #theatre-soon > .A-flex,
#A-theatre-grid #movies-soon > .A-flex { display: none; }


.A-red-button {
    display: flex;
	padding: 12px 16px 12px 32px;
	font: 400 16px var(--fontA);
	background: var(--colorA);
	color: white;
	cursor: pointer;
}
.A-red-button:hover {
	background: white;
	color: var(--colorA);
}
.A-red-button img {
	margin-left: 24px;
	object-fit: scale-down;
}
.A-red-button.A-to-left {
	white-space: nowrap;
	padding: 12px 32px 12px 16px;
}
.A-red-button.A-to-left img {
	margin-left: 0;
	margin-right: 24px;
	transform: rotate(180deg);
}

.A-theatre-home,
.A-cinema-home {
	position: relative;
	padding: 0 10%;
	z-index: 9;
}
.A-theatre-home .A-head,
.A-cinema-home .A-head {
	display: flex;
	align-items: flex-end;
    place-content: space-between;
}
.A-theatre-home .A-head .A-flex,
.A-cinema-home .A-head .A-flex { align-items: flex-end; }

.A-theatre-home .A-head .A-red-button,
.A-cinema-home .A-head .A-red-button { flex: 0 0 auto; }
.A-theatre-home .theatre,
.A-cinema-home .cinema {
	margin: 0 40px 0 0;
	font: 300 140px var(--fontA);
	color: var(--colorA);
	line-height: 0.6;
}
.A-theatre-home .theatre { margin: 0 24px 0 0; font-size: 96px; }
.A-cinema-home h2 {
	margin: 0;
	font: 700 72px var(--fontA);
	line-height: 0.6;
	color: white;
}
.A-theatre-home h2 {
	margin: 0;
	font: 700 72px var(--fontA);
	line-height: 0.6;
	color: black;
}
.A-theatre-home h2 img {
	width: 80px; height: auto;
}
.A-theatre-home { padding: 0; }
.A-theatre-home .A-head { padding: 48px 10%; }
.A-theatre-home .Acarousel {
	position: relative;
	padding-right: 20% !important;
	background: var(--colorC);
}
.A-theatre-home .Acarousel .Acolumn .photo {
	max-width: 100%;
	height: 240px;
	object-fit: contain;
	object-position: bottom left;
}
.A-theatre-home .Acarousel .Acolumn h3 { margin: 12px 0; }
.A-theatre-home .Acarousel .Acolumn p { margin: 12px 0; }
.A-theatre-home .Acarousel[data-navi="sides"] .Anavi {
    left: 0.5%;
    top: calc(35% - 16px);
    width: 82%;
}
.A-theatre-home .Acarousel[data-navi="sides"]:last-child .Anavi {
	left: 17%;
	top: calc(42% - 16px);
	width: 81%;
}
.A-theatre-home .Acarousel[data-navi="sides"]:last-child .Acontainer {
	margin-bottom: 32px;
}
.A-theatre-home .A-red-button { white-space: nowrap; }
.A-theatre-home .Acarousel:last-child {
	padding-right: 5% !important;
	padding-left: 20% !important;
}

.A-theatre-home .Acarousel .Acolumn a { 
	display: block;
	pointer-events: all !important;
}


#theatre-now { padding-top: 48px; }
#theatre-soon > .A-flex {
    place-content: flex-end;
    padding: 48px 0 32px;
}


.A-home-dark #movies-now.Acarousel { padding: 96px 5% 96px; } 

.A-movies-carousel.Acarousel .Anavi {
    left: -64px;
    top: calc(40% - 16px);
    width: calc(100% + 128px);
}
X.A-movies-carousel.Acarousel .Aitems { margin: 0 -16px; }
.A-movies-carousel.Acarousel .Aitems .Acolumn {
	margin-bottom: 24px;
	padding: 0 16px;
}
.A-movies-carousel.Acarousel .Acolumn h3 {
	margin: 8px 0 0;
	font: 400 18px var(--fontA);
}
.A-movies-carousel.Acarousel .Acolumn h3 span { color: var(--colorA); }
.A-page-content .A-movies-carousel.Acarousel .Acolumn h3 {
	font-weight: 700;
}
.A-page-content .A-movies-carousel.Acarousel .Acolumn h3 span {
	font-size: 18px;
	font-weight: 400;
	opacity: 0.5;
}
.A-movies-carousel.Acarousel .Acolumn .poster {
	width: 100%;
    height: 400px; 
    max-height: 28vw;
	object-fit: contain;
    object-position: bottom left ;
}
.A-movies-carousel.Acarousel .Acolumn a {
	display: block;
	pointer-events: all !important;
}
.A-home-dark .A-movies-carousel.Acarousel .Acolumn h3 { color: white; }
.A-home-dark .A-movies-carousel.Acarousel .Anavi svg { fill: white; }

.A-movies-grid .Acarousel .Aitems { flex-flow: row wrap; }
.A-movies-grid .Acarousel .Aitems .Acolumn a {
	pointer-events: all !important;
}
.A-movies-grid .Acarousel .Aitems .Acolumn a h3 {
	margin-top: 12px;
	font-size: 24px;
}
.A-movies-grid .Acarousel .Aitems .Acolumn a h3,
.A-movies-grid .Acarousel .Aitems .Acolumn a p { padding-right: 24px; }
.A-movies-grid .Acarousel .photo { max-width: 100%; }
.A-movies-grid .Anavi { display: none; }

.A-movies-grid #theatre-soon .photo,
.A-movies-grid #theatre-now .photo {
    height: 240px;
    object-fit: contain;
    object-position: bottom;
}


#movies-soon.Acarousel {
	padding: 0 0 96px;
} 
#movies-soon > .A-flex {
	place-content: flex-end;
	margin-bottom: 48px;
}
#theatre-soon > .A-flex h2,
#movies-soon > .A-flex h2 { margin-right: 16px; }

.A-aithouses-grid {
	padding: 64px 20%;
}
.A-aithouses-grid .Aitem h3 { margin-top: 8px; font-size: 28px; }


.A-manual-list {
	padding: 0px 20% 80px;
}
.A-manual-title {
	display: inline-block;
	margin: 48px 0 48px 10%;
	padding: 0 0 8px;
	font: 700 40px var(--fontA);
	color: var(--colorA);
	border-bottom: 10px solid black;
}
.A-manual-list .Aitem h3 {
	margin-top: 8px;
	font-size: 28px;
	color: var(--colorA);
}
.A-manual-list .Aitem h3:before {
	content: "⦿";
	margin-right: 16px;
	font-size: 28px;
	color: var(--colorA);
}
.parent-pageid-465 .A-page-content {
	padding: 64px 20%;
}
.parent-pageid-465 .A-page-content h1 {
	display: inline-block;
	margin: 8px 0;
	padding-bottom: 8px;
	font: 700 48px var(--fontA);
	color: var(--colorA);
	border-bottom: 8px solid black;
}
.parent-pageid-465 .A-page-content h2 {
	margin: 48px 0 8px;
	font: 700 32px var(--fontA);
	color: var(--colorA);
}
.parent-pageid-465 .A-page-content p { margin: 12px 0; }
.parent-pageid-465 .A-page-content .Acolumns { align-items: center; }
.parent-pageid-465 .A-page-content .Col2 {
	max-width: 50%;
	flex: 0 0 auto;
}
.parent-pageid-465 .A-page-content img {
	padding: 0 12px;
	object-fit: scale-down;
	object-position: top left;
}



.A-home-productions {
	position: relative;
	width: 85%;
	margin-left: 15%;
	padding: 64px 0;
	background: url(img/prod-back.jpg) no-repeat;
	background-size: cover;
}
.A-home-productions:before {
	content: "ΠΑΡΑΓΩΓΕΣ";
	position: absolute;
    left: -10%;
    top: 0%;
	font: 300 72px var(--fontA);
	color: var(--colorA);
	transform: rotate(-90deg);
    transform-origin: top left;
	transition: 1s all ease-out;
}
body.lang-en .A-home-productions:before {
	content: "PRODUCTIONS";
}
.A-home-productions:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -80%;
	width: 16px;
	height: calc(100% - 64px);
	background: var(--colorA);
	transition: 1s all ease-out;
}
.A-home-productions.reveal-mid:before { top: 92%; }
.A-home-productions.reveal-mid:after { bottom: 0%; }
.A-home-productions .Aitem h3 {
	margin: 12px 0 24px;
	color: white;
}
.A-home-productions .Aitem .text {
	color: white;
}
.A-home-productions .Aitem .more {
	padding: 4px 24px;
	background: white;
	color: black;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}
.A-home-productions .Aitem .more:hover {
	background: var(--colorA);
	color: white;
}
.A-home-productions.Aposts[data-navi="sides"] .Anavi {
	top: calc(35% - 24px);
}
.A-home-productions.Aposts[data-navi="sides"] .Anavi svg {
    width: 24px;
    height: 24px;
	right: 40px;
	fill: white;
}
.A-home-productions.Aposts[data-navi="sides"] .Anavi svg:nth-child(1) {
    left: 40px;
    right: unset;
}

.A-home-productions .Aitem .image { background: transparent; }
.A-home-productions .Aitem img {
	object-fit: contain;
	object-position: bottom left;
}

.A-home-news {
	position: relative;
	width: 85%;
	padding: 64px 0;
	background: url(img/news-back.jpg) no-repeat;
	background-size: cover;
}
.A-home-news:before {
	content: "NEWS";
	position: absolute;
    right: -13%;
    top: 142%;
    font: 300 96px var(--fontA);
    color: var(--colorA);
    transform: rotate(90deg);
    transform-origin: top right;
	transition: 1s all ease-out;
}
.A-home-news.reveal-mid:before { top: 82%; }
.A-home-news.Aposts[data-navi="sides"] .Anavi {
	top: calc(35% - 24px);
}
.A-home-news.Aposts[data-navi="sides"] .Anavi svg {
    width: 24px;
    height: 24px;
	right: 40px;
}
.A-home-news.Aposts[data-navi="sides"] .Anavi svg:nth-child(1) {
    left: 40px;
    right: unset;
}

.A-home-news .Aitem .more {
	padding: 4px 24px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}


.A-side-group {
	position: absolute;
	margin: 0;
}
.A-side-group p,
.A-side-group div {
	font: 400 14px var(--fontA);
	letter-spacing: 12px;
	transform: rotate(-90deg);
}
.A-side-text {
	position: absolute;
	margin: 0;
	font: 400 14px var(--fontA);
	letter-spacing: 12px;
	transform: rotate(-90deg);
}


.A-shadow-L2,
.A-shadow-L { position: relative; }
.A-shadow-L2:before,
.A-shadow-L:before {
	content: "";
	position: absolute;
	left: -60px;
	bottom: -20px;
	width: 200px;
	height: 450px;
	border-radius: 300px;
	background: black;
	background: radial-gradient(closest-side, black, hsla(0, 0%, 0%, 0));
	transform: rotate(15deg);
	opacity: 0.7;
}
.A-shadow-L2:before {
	left: -40px;
	height: 300px;
}


.A-page-cover { position: relative; }
.A-page-cover figure {
	position: relative;
	height: 500px;
}
.A-page-cover figure:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--colorA);
	mix-blend-mode: color;
}
.A-page-cover figure img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.A-page-cover h1 {
	position: absolute;
	right: 0;
	bottom: -13px;
	margin: 0;
	font: 700 128px var(--fontA);
	text-align: right;
    line-height: 0.8;
	color: white;
}
.A-page-gray { background: var(--colorC); }

.A-page-content h2 {
	margin: 48px 0 24px;
	font: 700 64px var(--fontA);
	line-height: 1;
}
.A-page-content h3 {
	margin: 32px 0 16px;
	font: 700 40px var(--fontA);
	line-height: 1;
	color: var(--colorA);
}
.A-page-white > *:first-child,
.A-page-gray > *:first-child { margin-top: 0; }



/* POST */
/* ******************************************************* */
.A-post-cover {
	position: relative;
	min-height: 50vh;
	padding: 48px 20% 0px 20%;
}
.A-post-cover:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 500px;
	background: url(img/dark-back-4.jpg);
}
.A-post-cover h1 {
	position: relative;
	margin: 0 0 32px;
	font: 700 60px var(--fontA);
	line-height: 1;
	color: white;
}
.A-post-cover h1 strong { font-weight: 400; }
.A-post-cover figure {
	position: relative;
	z-index: 9;
}
.A-post-cover figure img {
	position: relative;
	z-index: 9;
}
.A-post-content { 
	padding: 48px 20% 48px 20%;
}
.A-post-content h2 {
	margin: 48px 0 8px;
	font: 700 32px var(--fontA);
	color: var(--colorA);
}
.A-post-content > h2:first-child { margin-top: 0; }
.A-post-content .wp-block-embed.is-type-video { width: 100%; }

.A-post-content .is-type-video .wp-block-embed__wrapper {
	position: relative;
	width: calc(100% * 1);
	padding-top: calc(56.25% * 1);
	margin: 0 auto;
}
.A-post-content .is-type-video .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 99.7%;
    height: 100%;
}
.has-text-align-center { text-align: center; }

.A-post-content table { border-collapse: collapse; }
.A-post-content .wp-block-table td { padding: 2px 0; }
.A-post-content .wp-block-table td:first-child {
	padding-right: 8px;
	border-right: 4px solid var(--colorA);
}
.A-post-content .wp-block-table td:nth-child(2) { padding-left: 8px; }

/* ΑΙΘΟΥΣΕΣ */
/* ******************************************************* */
.A-cinema-cover {
	position: relative;
	min-height: 50vh;
}
.A-cinema-cover:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 500px;
	background: url(img/dark-back-4.jpg);
}

.A-cinema-cover h1 {
	position: relative;
	margin: 0 0 32px;
	font: 700 60px var(--fontA);
	line-height: 1;
	color: white;
}
.A-cinema-cover h1 strong { font-weight: 400; }
.A-cinema-cover .Apic {
	position: relative;
	z-index: 9;
}
.A-cinema-cover .Apic img {
	position: relative;
	z-index: 9;
}

.A-cinema-place {}
.A-cinema-place h2 {
	position: relative;
	margin: 0 0 32px;
	font: 700 72px var(--fontA);
	line-height: 1;
}

.A-cinema-gray {
	background: var(--colorC);
}
.A-cinema-gray h2 {
	display: table;
	margin: 48px 0 12px;
	padding: 6px 12px;
	font: 400 18px var(--fontA);
	background: var(--colorA);
	color: white;
}
.A-cinema-gray h2:first-child { margin: -48px 0 32px; }

.A-cinema-quote { flex-flow: column-reverse; }
.A-cinema-quote .Acolumn { width: 100%; text-align: center; }
.A-cinema-quote .Col1 .ACB-flex {
    place-content: center;
}
.A-cinema-quote .Col1 .ACB-flex > figure {
	margin: 0 8px;
}
.A-cinema-quote .Col1 a,
.A-cinema-quote .Col1 p {
	font: 700 22px var(--fontA);
	color: var(--colorA);
}
.A-cinema-quote img {
	height: auto;
	max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}


.A-cinema-photos { margin-bottom: 64px; }
.A-cinema-photos .Acolumn { cursor: zoom-in; }
.A-cinema-photos img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.A-cinema-photos.Acarousel .Aitems {
	flex-flow: row wrap;
}
.ACB-gallery-show .slide-new,
.ACB-gallery-show .slide { object-fit: scale-down; }
.Acarousel .Aitems .Acolumn { padding: 0 4px; }



/* ΤΑΙΝΙΕΣ */
/* ******************************************************* */
.A-movie-cover {
	display: flex;
    align-items: center;
	position: relative;
	height: auto;
	padding: 0px 5% 0px 10%;
	z-index: 99990;
}
.A-movie-cover:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(img/dark-back-4.jpg);
}
.A-movie-cover h1 {
	flex: 0 0 auto;
	position: relative;
	width: 30vw;
	padding: 0 64px;
	font: 400 32px var(--fontA);
	line-height: 1;
	text-align: right;
	color: white;
}
.A-movie-cover h1 strong { font-weight: 400; }
.A-movie-cover .photo {
	position: absolute;
	left: 0;
	top: 0;
	width: 40vw;
	height: 100%;
	z-index: 99995;
	pointer-events: none;
	mix-blend-mode: luminosity;
	opacity: 0.31;
}
.A-movie-cover .photo img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.A-movie-cover.no-trailer { height: 400px; }
.A-movie-cover.no-trailer .video { display: none; }
.A-movie-cover.no-trailer .photo { width: 100%; }
.A-movie-cover.no-trailer h1 {
	width: 100%;
	font-size: 56px;
	text-align: center;
}


.A-movie-cover .video {
	flex: 1;
	position: relative;
    margin: -48px 0 0;
	z-index: 99996;
}
.A-movie-cover .video .wp-block-embed__wrapper {
	position: relative;
	width: calc(100% * 1);
	padding-top: calc(56.25% * 1);
	margin: 0 auto;
}
.A-movie-cover .video .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 99.7%;
    height: 100%;
}
.A-movie-cover .video:before {
	content: "";
	position: absolute;
    top: 99%;
    left: 20%;
    width: 70%;
    height: 200px;
	background: url(img/shadow-5.png) no-repeat;
	background-size: contain;
}


.A-movie-info {
	position: relative;
	padding: 48px 15%;
	z-index: 999999;
}
.A-movie-info .A-top { display: flex; align-items: flex-start; }
.A-movie-info h2 {
	flex: 1;
	margin: 0;
}
.A-movie-info .A-button {
	flex: 0 0 auto;
	width: 200px;
	text-align: center;
	background: black;
}
.A-movie-info .A-button:hover { background: var(--colorA); }
.A-movie-info .A-info { margin-top: 48px; }
.A-info .row { display: flex; }
.A-info .row label {
	flex: 0 0 auto;
	width: 200px;
	padding: 2px 0;
	font: 400 16px var(--fontA);
}
.A-info .row p {
	margin: 0;
	padding: 2px 0 2px 8px;
	font: 400 16px var(--fontA);
	border-left: 4px solid var(--colorA);
}

.A-movie-about {
	position: relative;
	padding: 0 15%;
}
.A-movie-about .photo {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.25;
	filter: saturate(0);
	object-fit: cover;
}
.A-movie-about .A-left {
	flex: 0 0 auto;
	width: 65%;
	padding: 48px 15% 48px 0;
}
.A-movie-about h2 {
	position: relative;
	font: 700 64px var(--fontA);
    margin: 0 0 24px;
    white-space: nowrap;
}
.A-movie-about h3 {
	position: relative;
    display: table;
    margin: 24px 0;
    padding: 6px 12px;
    font: 400 18px var(--fontA);
    background: var(--colorA);
    color: white;
}
.A-movie-about .A-left div {
	position: relative;
	white-space: break-spaces;
}
.A-movie-about .A-right { position: relative; line-height: 0; }
.A-movie-about .poster img {
	max-width: 100%;
	object-fit: contain;
}
.A-movie-about .poster:before {
	content: "";
	position: absolute;
    top: 99%;
    left: 20%;
    width: 70%;
    height: 200px;
	background: url(img/shadow-5.png) no-repeat;
	background-size: contain;
}


.A-movie-content {
	padding: 64px 15% 96px;
}
.A-movie-content > h2:first-child {
	position: relative;
	font: 700 64px var(--fontA);
    margin: 0 0 24px;
    white-space: nowrap;
}
.A-movie-content > h3:nth-child(2) {
	position: relative;
    display: table;
    margin: 24px 0 12px;
    padding: 6px 12px;
    font: 400 18px var(--fontA);
    background: var(--colorA);
    color: white;
}

.A-movie-extra {
	position: relative;
    padding: 48px 24px 64px;
    background: url(img/dark-back-5.jpg);
    background-position: 0% 12%;
}
.A-movie-extra .Acolumns {
    align-items: flex-end;
    padding: 0 18%;
    margin-bottom: 48px;
}
.A-movie-extra .Acolumns h2 {
	flex: 1 1 auto;
    margin: 0;
    font: 700 76px var(--fontA);
    color: white;
}
.A-movie-extra .Acolumns p {
	flex: 1 1 auto;
    margin: 0 0 14px;
    font: 400 24px var(--fontA);
    color: hsl(0, 0%, 37%);
}
.A-movie-extra .Acarousel .photo {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.A-movie-extra .Acarousel .Acolumn {
	cursor: zoom-in;
}
.A-movie-extra .Acarousel .Anavi svg { fill: white; }
#movie-videos { margin-top: 32px; }
#movie-videos .video {
	position: relative;
    width: calc(100% / 1.0);
    padding-top: calc(56.25% / 1.0);
    margin: 0 auto;
}
#movie-videos .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.A-movie-schedule {
	padding: 64px 20%;
	background: var(--colorC);
}
.A-movie-schedule .A-place { margin-bottom: 48px; }
.A-movie-schedule .A-place:last-child { margin-bottom: 0; }
.A-movie-schedule .A-place .A-row {
	display: flex;
}
.A-movie-schedule .A-place h2 {
	width: 100%;
	margin: 0;
	padding: 16px;
	font: 700 28px var(--fontA);
	line-height: 1;
	text-align: center;
	background: #AAA;
	background: var(--colorA);
	color: white;
	border-radius: 100px;
}
.A-movie-schedule .A-place h2 a {
	display: block;
	font: 700 28px var(--fontA);
	color: hsla(0, 0%, 100%, 0.8);
	color: white;
}
.A-movie-schedule .A-place h2:hover { background: var(--colorA); }
.A-movie-schedule .A-place h2:hover a { color: white; }
.A-movie-schedule .A-place .A-folded { text-align: center; }
.A-movie-schedule .A-place .A-folded .A-button { margin-bottom: 24px; }
.A-movie-schedule .A-place .A-folded > p {
	margin-top: 12px;
	padding: 0 40px;
	font: 700 18px var(--fontA);
	color: var(--colorA);
}
.A-movie-schedule .A-place .A-row {
	padding: 0 10%;
	text-align: left;
}
.A-movie-schedule .A-place .A-row .day {
	flex: 0 0 auto;
	width: 120px;
	padding: 2px 16px;
}
.A-movie-schedule .A-place .A-row .date {
	flex: 0 0 auto;
	width: 220px;
	padding: 2px 16px;
	border-right: 5px solid var(--colorA);
}
.A-movie-schedule .A-place .A-row .time {
	display: flex;
	flex: 1;
	padding: 0;
}
.A-movie-schedule .A-place .A-row .time div {
	flex: 0 0 auto;
	width: 80px;
	padding: 2px 16px;
	border-right: 5px solid var(--colorA);
}
.A-movie-schedule .A-place .A-row .time span:last-child { border: 0; }

/* ΠΑΡΑΓΩΓΕΣ */
/* ******************************************************* */
.A-production-cover {
	display: flex;
    align-items: center;
	position: relative;
	height: auto;
	z-index: 99990;
}
.A-production-cover:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(img/dark-back-4.jpg);
}

.A-production-cover h1 {
	flex: 0 0 auto;
	position: relative;
	width: 30vw;
	padding: 0 64px;
	font: 400 32px var(--fontA);
	line-height: 1;
	text-align: right;
	color: white;
}
.A-production-cover h1 strong { font-weight: 400; }
.A-production-cover .main-photo {
	flex: 1;
	position: relative;
    margin: -48px 0;
	height: 30vw;
	z-index: 99996;
}
.A-production-cover .main-photo .Apic {
	width: 100%;
	opacity: 1;
}
.A-production-cover .wp-block-embed {
	flex: 1;
	position: relative;
    margin: -48px 0;
	z-index: 99996;
}
.A-production-cover .wp-block-embed__wrapper {
	position: relative;
	width: calc(100% * 1);
	padding-top: calc(56.25% * 1);
	margin: 0 auto;
}
.A-production-cover .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 99.7%;
    height: 100%;
}
.A-production-cover .wp-block-embed:before {
	content: "";
	position: absolute;
    top: 99%;
    left: 20%;
    width: 70%;
    height: 200px;
	background: url(img/shadow-5.png) no-repeat;
	background-size: contain;
}


.A-production-cover .Apic {
	position: absolute;
	left: 0;
	top: 0;
	width: 40vw;
	height: 100%;
	z-index: 99995;
	pointer-events: none;
	mix-blend-mode: luminosity;
	opacity: 0.31;
}
.A-production-cover .Apic img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.A-production-A {
	margin: 16px 0;
	background: var(--colorC);
}
.A-production-A h2:first-child {
	margin: 0 0 80px;
	padding-right: 30%;
}
.A-production-B {
	position: relative;
	margin: 16px 0;
	background: var(--colorC);
}
.A-production-B .Acolumns { align-items: center; }
.A-production-B .Col1 { padding: 48px 48px 48px 0; }
.A-production-B h2 { margin: 0; font: 700 28px var(--fontA); }
.A-production-B h3 {
    display: table;
    margin: 24px 0 12px;
    padding: 6px 12px;
    font: 400 18px var(--fontA);
    background: var(--colorA);
    color: white;
}
.A-production-B .A-poster {
	position: relative;
	cursor: zoom-in;
	z-index: 9;
}
.A-production-B .A-poster:before {
	content: "";
	position: absolute;
    top: 99%;
    left: 0%;
    width: 100%;
    height: 100px;
	background: url(img/shadow-5.png) no-repeat;
	background-size: 100% 100%;
}
.A-production-B .Col2 .Apic:nth-child(2) {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.18;
}
.A-production-B .Col2 .Apic:nth-child(2) img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.A-production-B .Col1 { position: relative; z-index: 9; }
.A-production-B h2.A-all-info {
	font: 300 76px var(--fontA);
	margin: 0 0 24px;
}
.A-production-B h2.A-all-info strong { font-weight: 700; }

.A-production-B .A-side-group:first-child {
    left: -7%;
    top: 100%; 
	z-index: 9;
}

.A-production-B .A-side-group:last-child {
    right: -9%;
    top: 0%;
	z-index: 9;
}

.A-production-C h2 { font-size: 38px; }
.A-production-C p { margin: 0; }
.A-production-C p strong:first-child {
    display: inline-flex;
	width: 320px;
	margin: 0 12px 0 0;
	padding: 4px 0;
	border-right: 2px solid black;
	font-weight: 400;
}

.A-production-extra {
	padding: 48px 24px 64px;
	background: url(img/dark-back-5.jpg);
	background-position: 0% 12%;
}
.A-production-extra .Acolumns {
	align-items: flex-end;
	padding: 0 18%;
	margin-bottom: 48px;
}
.A-production-extra .Acolumns h2 {
	margin: 0;
    font: 700 76px var(--fontA);
	color: white;
} 
.A-production-extra .Acolumns p {
	margin: 0 0 14px;
    font: 400 24px var(--fontA);
	color: hsl(0, 0%, 37%);
}
.A-production-extra .Acarousel { position: relative; }
.A-production-extra .Acarousel .Anavi svg { fill: white; }
.A-production-extra .Acarousel img {
	height: 240px;
	object-fit: cover;
}
.A-production-extra .Acarousel .Acolumn { cursor: zoom-in; }


/* ΘΕΑΤΡΟ */
/* ******************************************************* */
.A-theatre-cover {}
.A-theatre-cover:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(img/dark-back-5.jpg);
}
.A-theatre-cover:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 50%;
	background: var(--colorA);
	mix-blend-mode: color;
}
.A-theatre-cover h1 {
	position: relative;
	margin: 0 0 20px;
	padding-left: 88px;
    font: 700 62px var(--fontA);
	color: white;
	z-index: 9;
}
.A-theatre-cover > p:nth-child(2) {
	position: relative;
	margin: 0 0 48px;
	padding-left: 88px;
    font: 400 24px var(--fontA);
	color: white;
	z-index: 9;
	mix-blend-mode: screen;
}
.A-theatre-cover > p:nth-child(2):before {
	content: "";
	position: absolute;
	left: 0;
	top: -8px;
	width: 62px;
	height: 62px;
	background: url(img/icon-01.png) no-repeat;
	background-size: contain;
}
.A-theatre-cover .Apic {
	position: relative;
	z-index: 11;
}
.A-theatre-cover .Apic img {
	max-height: 700px;
}
.A-theatre-cover .Acolumns {
	position: relative;
	margin-top: 32px;
	z-index: 9;
	mix-blend-mode: screen;
}
.A-theatre-cover .Acolumns p:not(.A-button) {
	margin: 0;
	font: 400 24px var(--fontA);
	color: white;
}
.A-theatre-cover .Acolumns .Col1 { flex: 0 0 auto; }
.A-theatre-cover .Acolumns .Col2 { flex: 0 0 auto; }
.A-theatre-cover .Acolumns .Col2 p { font-weight: 700; }
.A-theatre-cover .Acolumns .Col3 p { font-weight: 300; }
.A-theatre-cover .Acolumns .Col3 p strong { font-weight: 700; }
.A-theatre-cover .Acolumns .Col2,
.A-theatre-cover .Acolumns .Col3 {
	position: relative;
	padding-left: 96px;
}
.A-theatre-cover .Acolumns .Col2:before,
.A-theatre-cover .Acolumns .Col3:before {
	content: "";
	position: absolute;
	left: 16px;
	top: 0;
	width: 62px;
	height: 62px;
	margin-right: 16px;
	background: url(img/icon-02.png) no-repeat;
	background-size: contain;
}
.A-theatre-cover .Acolumns .Col3:before {
	background: url(img/icon-03.png) no-repeat;
	background-size: contain;
} 

#A-theatre-grid .A-side-group {
    right: -8%; 
    top: 40%;
	z-index: 9;
	pointer-events: none;
}
.A-theatre-cover .A-side-group {
    right: -7%;
    top: 40%;
	z-index: 9;
}
.A-theatre-cover .A-side-group p { color: white; }

.A-movie-info .A-side-group {
    right: -10%;
    top: 100%;
	z-index: 9;
}

.A-theatre-A {}
.A-theatre-A .A-button { float: right; margin-bottom: 24px; }
.A-theatre-A h2:before {
	content: "";
	display: table;
	clear: both;
}
.A-theatre-A h2 {
	margin: 0 0 32px;
	font: 700 76px var(--fontA);
}
.A-theatre-A .A-side-group {
    left: -10%;
    top: 70%;
	z-index: 9;
}

.A-theatre-B { background: var(--colorC); }
.A-theatre-B h2 {
	display: table;
	margin: 48px 0 12px;
	padding: 6px 12px;
	font: 400 18px var(--fontA);
	background: var(--colorA);
	color: white;
}
.A-theatre-B h2:first-child { margin: -48px 0 32px; }

.A-theatre-C {}
.A-theatre-C .Acolumns { margin-bottom: 64px; }
.A-theatre-C .Acolumns .Col1 {
	flex: 0 0 auto;
	width: 40%;
}
.A-theatre-C .Acolumns .Col1 p {
	margin: 0;
	padding-right: 32px;
	font: 700 36px var(--fontA);
	line-height: 1.1;
	color: var(--colorA);
}
.A-theatre-C .Col2 .wp-block-embed__wrapper {
	position: relative;
	width: calc(100% * 1);
	padding-top: calc(56.25% * 1);
	margin: 0 auto;
}
.A-theatre-C .Col2 .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 99.7%;
    height: 100%;
}
.A-theatre-C .Col2 .wp-block-embed { position: relative; }
.A-theatre-C .Col2 .wp-block-embed:before {
	content: "";
	position: absolute;
    top: 99%;
    left: 10%;
    width: 70%;
    height: 200px;
	background: url(img/shadow-5.png) no-repeat;
	background-size: contain;
	pointer-events: none;
}

.A-theatre-D { background: var(--colorC); }
.A-theatre-D h2 {
	margin-top: 0;
	font-size: 38px;
	line-height: 1;
}
.A-theatre-D ul { padding: 0; }
.A-theatre-D ul li { margin: 8px 0; }
.A-theatre-D .Col1,
.A-theatre-D .Col2 { position: relative; padding-left: 88px; }
.A-theatre-D .Col1 p { margin: 0; }
.A-theatre-D .Col1 p strong:first-child {
    display: inline-flex;
	width: 320px;
	margin: 0 12px 0 0;
	padding: 4px 0;
	border-right: 2px solid black;
	font-weight: 400;
}
.A-theatre-D .Col2 a,
.A-theatre-D .Col2 p { font-size: 22px; }
.A-theatre-D .Col1:before,
.A-theatre-D .Col2:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 72px;
	height: 72px;
	background: url(img/icon-04.png) no-repeat;
	background-size: contain;
}
.A-theatre-D .Col2:before {
	background: url(img/icon-05.png) no-repeat;
    background-size: contain;
}


.A-table table {
	border-collapse: collapse;
	font: 400 18px var(--fontA);
}
.A-table td:first-child {
	min-width: 260px;
    margin: 0 12px 0 0;
    padding: 4px 16px 4px 0;
    border-right: 2px solid black;
    vertical-align: baseline;
}
.A-table td:last-child {
	padding: 4px 0px 4px 16px;
    vertical-align: baseline;
}


#A-theatre-grid .Acarousel[data-navi="sides"] {
	padding: 0;
}

#A-theatre-grid {
	margin-top: 32px;
	background: var(--colorC);
}

#A-theatre-grid .A-head {
	margin-bottom: 40px;
}
#A-theatre-grid .A-head h2 {
	margin: 0 0 24px;
	font: 300 72px var(--fontA);
}
#A-theatre-grid .A-head .A-red-button {
	display: inline-block;
	margin: 0;
	padding: 12px 16px;
	line-height: 1;
	pointer-events: none;
}

#A-theatre-grid .Aposts { margin: 0 -16px; }
#A-theatre-grid .Aposts .Aitem h3 {
	margin-top: 16px;
	font: 700 22px var(--fontA);
	color: black;
}
#A-theatre-grid .Aposts .Aitem .text { font-size: 16px; }
#A-theatre-grid .Aposts .Aitem .image {
	height: 240px;
	background: transparent;
}
#A-theatre-grid .Aposts .Aitem .image img {
	object-fit: contain;
	object-position: bottom left;
}

#A-theatre-grid .A-head .Col2 {
	text-align: right;
}
#A-theatre-grid .A-head .Col2 p {
	font: 700 14px var(--fontA);
}
#A-theatre-grid .A-head .Col2 select {
	padding: 8px 16px;
	background-color: #999;
	color: white;
	font: 700 18px var(--fontA);
	line-height: 1;
	border: 0;
	outline: 0;
	border-radius: 50px;
}
.act-popup.act-theatre-search {
	display: flex;
	flex-flow: column;
	height: auto;
}
.act-theatre-search h2 { flex: 0 0 auto; }
.act-theatre-search .results {
	flex: 1;
	overflow-y: auto;
}
.act-theatre-search .act-show-row {
	display: flex;
	flex-flow: row wrap;
	margin-bottom: 24px;
}
.act-theatre-search .act-show-row img {
	flex: 0 0 auto;
	width: 50%;
}
.act-theatre-search .act-show-row .text {
	flex: 0 0 auto;
	width: 50%;
	padding: 16px 12px;
	background: var(--colorC);
}
.act-theatre-search .act-show-row .text h3 {
	margin: 0 0 12px;
}

.act-theatre-search .act-show-row .dates {
	flex: 0 0 auto;
	width: 100%;
	padding: 12px;
	border: 2px solid #DDD;
	border-top: 0;
}
.act-theatre-search .act-show-row .dates .date {
	display: flex;
	margin-bottom: 4px;
}
.act-theatre-search .act-show-row .dates .date .day {
	flex: 0 0 auto;
	width: 180px;
}
.act-theatre-search .act-show-row .dates .date .time {
	flex: 0 0 auto;
	width: 60px;
}



.A-author-info {  }
.A-author-info .author_link { display: block; margin-top: 16px; }
#author-description > p { margin: 0; }
#author-description h2 { margin: 0; }
#author-description .bio {}
.A-archive .A-page-title.author { margin-bottom: 48px; }


/* 	--------------
	ARCHIVE
 	-------------- */
.A-archive { position: relative; }
.A-archive .A-page-title { margin: 0; }
.A-archive .A-subcategories {
	margin-top: 16px;
}
.A-archive .A-subcategories > a {
	margin-right: 16px;
}
.A-archive .A-list {
	display: flex;
	flex-flow: row wrap;
	margin-top: 48px;
}
.A-archive .A-list > a {
	width: 33.333%;
	margin-bottom: 32px;
}
.A-pagination { margin-top: 64px; }
.A-pagination ul {
	display: flex;
    place-content: center;
	padding: 0;
	list-style: none;
}
.A-pagination ul li { margin: 0 8px; }
.A-pagination ul li a { color: black; }


.A-contact-white h3 {
	margin: 0;
	padding-left: 100px;
	line-height: 0.9;
	color: black;
	font-size: 32px;
}

.A-contact-gray .Acolumns .Col1 { padding: 0 20px 32px; }
.A-contact-gray .Acolumns:last-child .Col1 { padding: 0 20px 0; }
.A-contact-gray .Acolumns .Col1 {
	flex: 0 0 auto;
	width: 80px;
	margin-right: 20px;
	text-align: right;
	border-right: 3px solid var(--colorA);
}
.A-contact-gray .Acolumns p,
.A-contact-gray .Acolumns a { margin: 0; }
 


/* 	--------------
	FOOTER
 	-------------- */
.A-footer {
	display: flex;
    padding: 40px 0;
    background: #f8f8f8;
	position: relative;
	z-index: 9;
}
.A-footer-col {
    width: 25%;
    padding: 16px;
    float: left;
}
.A-footer-col:nth-child(2) { width: 20%; }
.A-footer-col:nth-child(3) { width: 15%; }
.A-footer-col:nth-child(4) { width: 15%; }
.A-footer-col .A-logo {
	width: 100%;
	text-align: center;
}
.A-footer-col .A-logo img {
    width: 100%;
	max-width: 300px;
	max-height: 120px;
    height: auto;
    padding: 0 32px;
	object-fit: contain;
    object-position: left;
}
.A-footer-col h3 {
	margin: 0 0 16px;
	font: 700 18px var(--fontA);
	color: var(--colorB);
}
.A-footer-col label,
.A-footer-col p,
.A-footer-col li,
.A-footer-col a {
    display: block;
	margin: 2px 0;
	font: 400 16px var(--fontA);
	color: black;
}
.A-footer-col label { display: inline-block; margin-right: 8px; }
.A-footer-col a:hover { color: var(--colorB);  font-weight: 700; }
.A-footer-col ul { padding: 0; margin: 0; list-style: none; }

footer .A-contact .A-flex,
footer .A-contact p {
	display: flex;
	position: relative;
	margin-bottom: 8px;
}
footer .A-contact .A-flex:before,
footer .A-contact p:before {
	content: "";
	width: 22px;
	height: 24px;
	margin-left: -24px;
	margin-right: 2px;
	background: url(img/icon-12.png) no-repeat;
	background-size: contain;
}
footer .A-contact .A-flex { position: relative;}
footer .A-contact .A-flex:before {
	background: url(img/icon-13.png) no-repeat;
	background-size: contain;
}


footer a { text-decoration: none; }
footer .A-social { display: flex; }
footer .A-social a {
    align-items: center;
	margin: 0 16px 12px 0;
	cursor: pointer;
}
footer .A-social svg {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	margin-right: 8px;
	fill: var(--colorA);
	transition: 0.3s all;
}
footer .A-social a:hover svg { fill: var(--colorB); transform: scale(1.2); }



.A-footer-created {
	position: relative;
    width: 100%;
    text-align: center;
    padding: 8px;
    background: var(--colorC);
	z-index: 9;
}
.A-footer-created a {
	font-size: 14px;
    font-weight: 700;
    color: var(--colorA);
}
.A-footer-created a:hover { color: var(--colorB); }
.A-footer-created img {
    height: 40px;
    margin: 16px 0 8px 0;
}




.act-popup {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 800px;
	height: auto;
	max-width: 80%;
	max-height: 80%;
	margin: auto;
	padding: 32px;
	background: white;
	border-radius: 24px;
	box-shadow: 12px 12px 40px black;
	z-index: 999999999999;
}
.act-popup h2 { margin: 0 0 24px; color: var(--colorA); }
.act-popup .close {
    position: absolute;
    right: 12px;
    top: 6px;
    font-size: 34px;
    cursor: pointer;
    line-height: 1;
	transition: 0.3s;
}
.act-popup .close:hover { transform: scale(0.8); }

.act-schedule-popup { width: 1000px; padding: 32px 80px; }
.act-schedule-popup .schedule {
	height: 100%;
	overflow-y: auto;
}
.act-schedule-popup .schedule .event {
	display: flex;
	padding: 6px 4px;
	line-height: 1;
}
.act-schedule-popup .schedule .event:nth-child(even) { background: hsl(0, 0%, 90%); }
.act-schedule-popup .schedule .event span { flex: 0 0 auto; }
.act-schedule-popup .schedule .event span:first-child {
    display: inline-block;
    width: 200px;
    margin-right: 8px;
    text-align: right;
}
.act-schedule-popup .schedule .event span:nth-child(2) {
    display: inline-block;
    width: 42px;
	margin: 0 8px;
}
.act-schedule-popup .schedule .event span:nth-child(3) {
    display: inline-block;
    width: 160px;
	margin: 0 8px;
}
.act-schedule-popup .schedule .event span:last-child {
	flex: 1;
    width: auto;
	margin: 0 8px;
	font-size: 14px;
    line-height: 1.25;
}


/* PARALLAX */
.actus-parallax { overflow: hidden; }

.velaki {
    display: none;
    background: var(--colorA);
    position: fixed;
    bottom: 16px;
	left: calc(100% - 64px);
    padding: 8px 12px 12px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    transform: rotate(-90deg) scale(1);
    cursor: pointer;
    z-index: 9999;
    border-radius: 7px;
    box-shadow: -4px 4px 8px hsla(0, 0%, 0%, 0.3);
    transition: 0.3s;
}


.wpcf7-form { padding-right: 10%; }
.wpcf7-form label { font-size: 14px; }
.wpcf7-form input {
    width: 100%;
	padding: 6px 16px;
	font-size: 16px;
	background: #EEE;
	border-radius: 30px;
	border: 0;
	outline: 0;
}
.wpcf7-form input[type="submit"] {
    width: 180px;
	background: black;
	color: white;
	margin-top: 16px;
	cursor: pointer;
}
.wpcf7-form input[type="submit"]:hover {
	background: var(--colorA);
}








/* **************************************************************** */
@media (min-width: 1921px) {
/* **************************************************************** */

	header,
	.A-production-cover:before,
	.A-cinema-cover:before {
		background-size: cover;
		background-position: top left;
	}
	
}



/* **************************************************************** */
@media (max-width: 1600px) {
/* **************************************************************** */


	.A-home-slider .A-moto { top: 32px; }
	.A-cinema-home .cinema { font-size: 120px; }

	#A-theatre-grid .A-side-group { right: -10%; }

}




/* **************************************************************** */
@media (max-width: 1500px) {
/* **************************************************************** */

	.A-home-slider .A-side-group { right: -10%; }
	
	.A-theatre-home .A-head,
	.A-cinema-home .A-head {
		flex-flow: column-reverse;
    	align-items: flex-start;
	}
	.A-theatre-home .A-head .A-flex,
	.A-cinema-home .A-head .A-flex {
		width: 100%;
		margin-bottom: 48px;
	}
	.A-home-dark #movies-now.Acarousel { padding: 64px 5% 96px; } 
	#A-theatre-grid .A-side-group { right: -12%; }
	
	.A-movie-cover { padding: 0px 5%; }
	
	.A-movie-about { padding-right: 10%; }
	.A-movie-about .A-left { width: 60%; }
	.A-movie-extra .Acolumns { padding: 0 14%; }
	
	.A-theatre-cover .A-side-group { right: -12%; }
	
	.A-production-cover { padding: 0 5%; }
	.A-production-B .A-side-group:last-child { right: -16%; }
	.A-production-B h2.A-all-info { font-size: 70px; }
	
	
}




/* **************************************************************** */
@media (max-width: 1280px) {
/* **************************************************************** */

	.A-home-slider .A-moto div:nth-child(2) { left: -18%; }
	.A-home-slider .A-moto div:nth-child(3) { left: 14%; }
	.A-home-slider .A-side-group { right: -15%; margin-top: -15%; }
	
	.A-cinema-home .cinema { font-size: 110px; }
	.A-theatre-home .Acarousel[data-navi="sides"] .Anavi {
    	width: 82.5%;
	}
	
	
	.A-cinema-cover h1 strong { font-size: 48px; }
	.A-cinema-photos.Acarousel .Aitems .Acolumn {
		width: calc(100% / 2);
	}

	#A-theatre-grid .A-side-group { right: -16%; }
	
	.A-movie-cover { padding: 0px 0% 0px 5%; }
	.A-movie-cover h1 {
		width: 35vw;
		padding: 0 32px 0 24px;
	}
	.A-movie-info .A-side-group { right: -17%; }
	.A-movie-about { padding-left: 10%; }
	.A-movie-extra .Acolumns { padding: 0 10%; }
	.A-movie-schedule { padding: 64px 15%; }
	.A-movie-schedule .A-place .A-row { padding: 0 5%; }
	
	#A-theatre-grid .A-head { flex-flow: column-reverse; } 
	#A-theatre-grid .A-head .Col2 { margin-bottom: 12px; }
	
	.A-theatre-cover .A-side-group { right: -15%; }
	.A-theatre-cover > p:nth-child(2):before {
		top: -4px;
		width: 56px;
		height: 56px;
	}
	.A-theatre-cover > p:nth-child(2),
	.A-theatre-cover h1 { padding-left: 72px; }
	.A-theatre-cover h1 { font-size: 56px; margin-bottom: 12px; }
	.A-theatre-cover .Acolumns { flex-flow: row wrap; }
	.A-theatre-cover .Acolumns .Acolumn { width: 50%; }
	.A-theatre-cover .Acolumns .Col3 {
		flex: 0 0 auto;
		margin-left: 50%;
		margin-top: 32px;
	}
	.A-theatre-A .A-side-group { left: -15%; }
	.A-theatre-C,
	.A-theatre-B,
	.A-theatre-A { padding: 48px 15% 48px 20%; }
	
	.A-production-extra .Acolumns { padding: 0 10%; }
	.A-theatre-D > .Acolumns { flex-flow: column-reverse; }
	.A-theatre-D .Col2 { margin-bottom: 48px; }
	
	.A-production-cover { padding: 0 0 0 5%; }
	.A-production-cover h1 {
		width: 35vw;
		padding: 0 32px 0 24px;
	}
	.A-production-A { padding: 80px 15% 48px; }
	.A-production-B { padding: 0px 10% 0px 15%; }
	.A-production-C { padding: 48px 15% 64px; }
	.A-production-B .A-side-group:last-child { right: -23%; }
	.A-production-B .A-side-group:first-child { left: -15%; }
	.A-production-B h2.A-all-info { font-size: 64px; }
	
	.A-post-cover { padding: 48px 15% 0px; }
	.A-post-content { padding: 48px 15%; }
	.A-post-cover h1 { font-size: 52px; }
	
	.A-movie-content { padding: 64px 10% 96px; }
	
}

 




/* **************************************************************** */
@media (max-width: 1024px) {
/* **************************************************************** */

	header .A-flex { place-items: baseline; }
	header nav .menu-toggle { display: inline-block; }
	header nav ul { display: none; text-align: right; }
	header nav ul.sub-menu {
		position: relative;
		display: block;
		padding-right: 32px;
		text-align: right;
		background: transparent;
	}
	header nav ul.sub-menu ul.sub-menu { padding-right: 32px; }
	
	.A-home-slider .A-moto div:nth-child(2) { left: -20%; }
	.A-home-slider .A-side-group { right: -18%; margin-top: -20%; }
	.A-theatre-home .theatre { font-size: 80px; }
	.A-cinema-home .cinema { font-size: 90px; }
	.A-theatre-home h2,
	.A-cinema-home h2 { font-size: 56px; }
	.A-theatre-home h2 img,
	.A-cinema-home h2 img { width: auto; height: 50px; }
	.A-theatre-home .Acarousel[data-navi="sides"] .Anavi {
    	width: 83.5%;
	}
	.A-theatre-home .Acarousel[data-navi="sides"]:last-child .Anavi {
		left: 16%;
		width: 82.5%;
	}
	.A-theatre-home h2,
	.A-cinema-home h2 {
		position: relative;
		top: 7px;
		line-height: 0.7;
	}
	
	.A-home-productions:before { left: -14%; }
	.A-home-news:before { right: -16%; }
	
	.A-page-cover h1 { font-size: 96px; bottom: -10px; }
	.A-page-cover figure { height: 450px; }

	.A-page-content .A-page-white { padding: 96px 10% 48px; }
	.A-page-content .A-page-gray { padding: 48px 10%; }
	.A-page-content h2 { font-size: 56px; }
	.A-page-content h3 { font-size: 36px; }
	
	.A-cinema-cover { padding: 48px 10% 0; }
	.A-cinema-quote,
	.A-cinema-gray,
	.A-cinema-place { padding: 48px 10%; }
	
	#A-theatre-grid .A-side-group { right: -22%; }
	#A-theatre-grid .A-head h2 { font-size: 64px; }
	
	
	.A-movie-cover h1 { width: 40vw; font-size: 28px; }
	.A-movie-cover .photo { width: 50vw; }
	.A-movie-info .A-side-group { right: -25%; }
	.A-movie-about h2 {
		line-height: 0.8;
		white-space: unset;
	}
	.A-production-extra .Acolumns,
	.A-movie-extra .Acolumns {
		flex-flow: column;
		align-items: unset;
		padding: 0 6%;
		margin-bottom: 24px;
	}
	.A-movie-schedule { padding: 64px 10%; }
		
	
	.A-theatre-cover .A-side-group { right: -20%; }
	.A-theatre-cover h1 { font-size: 48px; }
	.A-theatre-cover > p:nth-child(2) { font-size: 22px; }
	
	
	.A-theatre-cover .Acolumns .Acolumn { width: 60%; }
	.A-theatre-cover .Acolumns .Col3 { margin-left: 40%; }
	.A-theatre-cover .Acolumns .Col1 { width: 40%; }
	.A-theatre-cover .Acolumns .Col1 .A-button-white a {
		font-size: 20px;
	}
	.A-theatre-cover .Acolumns { margin-top: 24px; }
	.A-theatre-A .A-side-group { left: -21%; }
	.A-theatre-A h2 { font-size: 64px; }
	.A-theatre-C .Acolumns .Col1 p { font-size: 26px; }
	
	.A-production-cover h1 { width: 40vw; font-size: 28px; }
	.A-production-cover .Apic { width: 50vw; }
	.A-production-A h2:first-child { padding-right: 10%; }
	.A-production-A { padding: 80px 10% 48px; }
	.A-production-B { padding: 0px 10%; }
	.A-production-C { padding: 48px 10% 64px; }
	.A-production-B .A-side-group:first-child { left: -22%; }
	.A-production-B h2.A-all-info {
		font-size: 56px;
		line-height: 0.9;
	}
	.A-production-B h2 { font-size: 24px; }
	
	
	
	.A-footer { flex-flow: row wrap; padding: 40px 64px; }
	.A-footer-col:nth-child(1) { width: 100%; }
	.A-footer-col:nth-child(2),
	.A-footer-col:nth-child(3),
	.A-footer-col:nth-child(4),
	.A-footer-col:nth-child(5) { width: 24%; }
	
	
}





/* **************************************************************** */
@media (max-width: 800px) {
/* **************************************************************** */

	.A-home-slider .A-moto { font-size: 80px; }
	.A-home-slider .A-moto div:nth-child(2) {
		left: -25%;
		font-size: 40px;
	}
	.A-home-slider figure img {
		object-position: 50% 70%;
		padding: 0;
	}
	.A-home-slider .A-side-group { display: none; }
	
	
	.A-theatre-home .theatre,
	.A-cinema-home .cinema { font-size: 70px; }
	.A-theatre-home h2,
	.A-cinema-home h2 { font-size: 48px; }
	.A-theatre-home h2 img,
	.A-cinema-home h2 img { width: auto; height: 40px; }
	.A-movies-carousel.Acarousel .Acolumn .poster {
		max-height: 45vw;
	}
	.A-theatre-home .Acarousel[data-navi="sides"] .Anavi {
		width: 85%;
	}
	.A-theatre-home .Acarousel[data-navi="sides"]:last-child .Anavi {
		left: 15%;
		width: 84.5%;
	}
	
	.A-home-news:before { font-size: 72px; }
	.A-home-news.reveal-mid:before { top: 72%; }
	
	.A-page-cover h1 { font-size: 80px; bottom: -8px; }
	.A-page-cover figure { height: 360px; }
	
	.A-page-content .A-page-white { padding: 72px 10% 48px; }
	 
	.A-cinema-place h2 { font-size: 64px; }
	.A-cinema-photos img { height: 220px; }
	
	#A-theatre-grid .A-side-group { display: none; }
	
	
	.A-movie-cover {
		flex-flow: column;
		align-items: flex-end;
		padding: 0;
	}
	.A-movie-cover h1 { width: 70vw; }
	.A-movie-cover .video {
		width: 70%;
		margin: 0;
	}
	.A-movie-cover .photo {
		width: 80vw;
		left: -14vw;
	}
	.A-movie-info { padding: 48px 10%; }
	.A-movie-info .A-side-group { right: -32%; }
	
	
	.A-movie-about h2 { font-size: 56px; }
	.A-movie-about h3 { display: none; }
	.A-movie-about .A-left { padding: 48px 8% 32px 0; }
	.A-production-extra .Acolumns,
	.A-movie-extra .Acolumns { padding: 0 8%; }
	.A-movie-schedule .A-place .A-row { padding: 0; }
	
	
	.A-theatre-cover .A-side-group { right: -28%; }
	.A-theatre-cover .Acolumns { margin-top: 16px; }
	.A-theatre-cover .Acolumns .Col1 {
		margin-bottom: 32px;
		text-align: right;
	}
	.A-theatre-cover .Acolumns .Col1,
	.A-theatre-cover .Acolumns .Acolumn { width: 100%; }
	.A-theatre-cover .Acolumns .Col3 { margin-left: 0%; }
	.A-theatre-cover .Acolumns .Col1 .A-button-white a {
		font-size: 20px;
	}
	.A-theatre-cover .Acolumns p:not(.A-button) {
		font-size: 22px;
	}
	.A-theatre-A .A-side-group { left: -32%; }
	.A-theatre-C,
	.A-theatre-B,
	.A-theatre-A { padding: 48px 10% 48px 15%; }
	.A-theatre-D { padding: 64px 10% 96px 5%; }
	.A-table td:first-child { min-width: 200px; }
	
	
	.A-production-cover {
		flex-flow: column;
		align-items: flex-end;
		padding: 0;
	}
	.A-production-cover h1 { width: 70vw; }
	.A-production-cover .wp-block-embed {
		width: 70%;
		margin: 0;
	}
	.A-production-cover .Apic {
		width: 80vw;
		left: -14vw;
	}
	.A-production-B .A-side-group:first-child,
	.A-production-B .A-side-group:last-child { display: none; }
	.A-production-B .Acolumns { flex-flow: column-reverse; }
	.A-production-B .Acolumns .Col1 {
		width: 100%;
		padding-right: 0;
	}
	.A-production-B .Acolumns .Col2 { padding-top: 48px; }
	
	
	.A-post-cover { padding: 48px 10% 0px; }
	.A-post-content { padding: 48px 10%; }
	.A-post-cover h1 { font-size: 44px; }
	
	
	
	
	.A-footer-col:nth-child(2),
	.A-footer-col:nth-child(3),
	.A-footer-col:nth-child(4),
	.A-footer-col:nth-child(5) {
		width: 50%;
		text-align: center;
	}
	footer .A-flex,
	footer .A-social,
	footer .A-contact p,
	footer .A-contact .A-flex { place-content: center; }
	
}





/* **************************************************************** */
@media (max-width: 640px) {
/* **************************************************************** */

	header .A-flex {
		flex-flow: column;
		place-items: center;
	}
	header .A-logo { margin-bottom: 32px; }
	header nav { text-align: center; }
	header nav ul {
		text-align: left;
		padding-left: 30%;
	}
	header nav ul li { margin: 6px 0; }
	header nav ul.sub-menu {
		padding: 0 0 8px 24px;
		text-align: left;
	}
	header nav ul.sub-menu ul.sub-menu { padding: 0 0 0 24px; }
	
	.A-home-slider .A-red-color { height: 400px; }
	.A-home-slider figure img { min-height: 440px; }
	.A-home-slider .A-moto { font-size: 64px; }
	
	.A-theatre-home .A-head .A-flex,
	.A-cinema-home .A-head .A-flex {
		flex-flow: column;
		align-items: flex-start;
		margin-bottom: 16px;
	}
	#theatre-soon > .A-flex,
	#movies-soon > .A-flex {
		flex-flow: column;
		align-items: flex-start;
	}
	#theatre-soon > .A-flex h2,
	#movies-soon > .A-flex h2 { margin-bottom: 16px; }
	.A-theatre-home .theatre,
	.A-cinema-home .cinema { margin-bottom: 8px; }
	.A-movies-carousel.Acarousel .Anavi {
		left: -32px;
		width: calc(100% + 64px);
	}
	.A-movies-carousel.Acarousel .Acolumn .poster {
		max-height: 75vw;
    	object-position: bottom center;
	}
	.A-movies-carousel.Acarousel .Acolumn a { text-align: center; }
	.A-theatre-home .Acarousel { padding: 48px 64px 0 !important; }
	.A-theatre-home .Acarousel:last-child { padding: 24px 64px 0 !important; }
	.A-theatre-home .Acarousel[data-navi="sides"]:last-child .Anavi,
	.A-theatre-home .Acarousel[data-navi="sides"] .Anavi {
		width: 95%;
		left: 2%;
	}
	.A-theatre-home .Acarousel[data-navi="sides"]:last-child .Anavi {
		top: 45%;
	}
	
	.A-home-productions.Aposts[data-navi="sides"] .Acontainer {
		margin: 0 48px;
	}
	.A-home-productions.Aposts[data-navi="sides"] .Anavi svg:nth-child(1) {
		left: 24px;
		right: unset;
	}
	.A-home-productions.Aposts[data-navi="sides"] .Anavi svg {
		right: 24px;
	}
	.A-home-productions:before { font-size: 56px; left: -15%; }
	.A-home-productions.reveal-mid:before { top: 83%; }
	.A-home-news .Aitem .text,
	.A-home-productions .Aitem .text { font-size: 16px; }
	
	.A-home-news:before { font-size: 64px; }
	.A-home-news.reveal-mid:before { top: 70%; }
	.A-home-news.Aposts[data-navi="sides"] .Acontainer {
		margin: 0 48px;
	}
	.A-home-news.Aposts[data-navi="sides"] .Anavi svg { right: 20px; }
	.A-home-news.Aposts[data-navi="sides"] .Anavi svg:nth-child(1) {
		left: 20px;
		right: unset;
	}

	.A-page-cover h1 { font-size: 64px; bottom: -7px; }
	.A-page-cover figure { height: 300px; }
	
	.A-page-content .A-page-white { padding: 64px 10% 48px; }
	.A-page-content h2 { font-size: 48px; }
	.A-page-content h3 { font-size: 32px; }
	
	.A-cinema-photos.Acarousel .Aitems .Acolumn {
		width: calc(100% / 1);
	}
	#A-theatre-grid .A-side-group { right: -45%; }
	
	.A-cinema-cover h1 { font-size: 56px; }
	.A-cinema-cover h1 strong { font-size: 40px; }
	.A-cinema-place h2 { font-size: 56px; }
	.A-cinema-photos img { height: 280px; }
	.A-cinema-cover:before { height: 400px; }
	
	#A-theatre-grid .A-head h2 {
		font-size: 56px;
		line-height: 0.9;
	}
	
	.A-movie-cover h1 { width: 80vw; }
	.A-movie-cover .video { width: 80%; }
	.A-movie-info { padding-top: 80px; }
	.A-movie-info .A-side-group { right: -46%; }
	.A-movie-info .A-button {
		position: relative;
		left: 5%;
		top: -48px;
	}
	.A-info .row label { width: 160px; }
	.A-movie-about h2 { font-size: 48px; }
	.A-production-extra .Acolumns,
	.A-movie-extra .Acolumns { padding: 0 10%; }
	.A-production-extra .Acolumns h2,
	.A-movie-extra .Acolumns h2 { font-size: 70px; }
	.A-movie-schedule { padding: 64px 5%; }
	.A-movie-schedule .A-place { font-size: 14px; }
	.A-movie-schedule .A-place .A-row .day { width: 100px; }
	.A-movie-schedule .A-place .A-row .time div {
		width: 64px;
		padding: 2px 8px;
	}
	
	#A-theatre-grid .A-head .Col2 { 
		position: relative;
		top: -32px;
	}
	
	.A-theatre-cover { padding: 48px 5% 64px; }
	.A-theatre-cover .A-side-group { display: none; }
	.A-theatre-cover .Acolumns p:not(.A-button) { font-size: 20px; }
	.A-theatre-cover h1 { font-size: 40px; }
	.A-theatre-cover > p:nth-child(2) { font-size: 20px; }
	.A-theatre-A .A-side-group { display: none; }
	.A-theatre-C,
	.A-theatre-B,
	.A-theatre-A { padding: 48px 10% 48px 10%; }
	.A-theatre-A h2 { font-size: 56px; }
	.A-theatre-C .Acolumns { flex-flow: column-reverse; }
	.A-theatre-C .Acolumns .Col1 {
		position: relative;
		width: 100%;
		margin-top: 12px;
		z-index: 9;
	}
	.A-theatre-C .Acolumns .Col1 p { font-size: 22px; }
	
	
	.A-theatre-D .Col1:before,
	.A-theatre-D .Col2:before {
		width: 48px;
		height: 48px;
	}
	.A-theatre-D .Col1,
	.A-theatre-D .Col2 { padding-left: 0px; }
	
	.A-theatre-D h2 {
		margin-bottom: 16px;
		padding-left: 60px;
		font-size: 34px;
	}
	.A-production-C .A-table td:first-child,
	.A-theatre-D .A-table td:first-child { min-width: 120px; }
	.A-production-C .A-table table,
	.A-theatre-D .A-table table { font-size: 16px; }
	
	.A-production-cover h1 { width: 80vw; }
	.A-production-cover .wp-block-embed { width: 80%; }
	.A-production-B .Acolumns .Col2 { width: 80%; }
	.A-production-B h2.A-all-info { font-size: 38px; }
	
	.A-post-cover h1 { font-size: 40px; }
	.A-post-content h2 { font-size: 28px; }
	
	
	.act-popup.act-theatre-search {
		max-width: 95%;
		padding: 24px;
	}
	.act-theatre-search .act-show-row img {
		width: 100%;
		height: auto;
		max-height: 300px;
		object-fit: contain;
	}
	.act-theatre-search .act-show-row .text { width: 100%; }
	.act-theatre-search .act-show-row .dates .date {
		flex-flow: row wrap;
		margin-bottom: 16px;
	}
	.act-theatre-search .act-show-row .dates .date .day {
		width: 100%;
		font-weight: 700;
	}
	
}



/* **************************************************************** */
@media (max-width: 480px) {
/* **************************************************************** */

	
	header nav ul { padding-left: 20%; }
	.A-home-slider .A-red-color { height: 300px; }
	.A-home-slider figure img { min-height: 340px; }
	.A-home-slider .A-moto { font-size: 48px; line-height: 1; }
	.A-home-slider .A-moto div:nth-child(2) {
		left: -20%;
		font-size: 34px;
	}
	.A-home-slider .A-moto div:nth-child(3) { left: 10%; }

	.A-movies-carousel.Acarousel .Anavi {
		left: -24px;
		width: calc(100% + 48px);
	}
	.A-movies-carousel.Acarousel .Acolumn .poster {
		max-height: unset;
	}
	.A-home-dark #movies-now.Acarousel { padding: 48px 5%; }
	#movies-soon.Acarousel { padding: 0 0 64px; }
	.A-theatre-home .theatre,
	.A-cinema-home .cinema { font-size: 60px; }
	.A-theatre-home .A-head .A-red-button { white-space: unset; }
	.A-red-button.A-to-left,
	.A-red-button { padding: 12px; }
	.A-red-button img { display: none; }
	
	.A-home-productions.Aposts[data-navi="sides"] .Acontainer {
		margin: 0 24px;
	}
	.A-home-productions.Aposts[data-navi="sides"] .Anavi svg:nth-child(1) {
		left: 8px;
		right: unset;
	}
	.A-home-productions.Aposts[data-navi="sides"] .Anavi svg {
		right: 8px;
	}
	.A-home-productions:before { font-size: 40px; left: -16%; }
	.A-home-productions.reveal-mid:before { top: 73%; }
	.A-home-productions:after { content: unset; }
	.A-home-productions .Aitem h3 { margin: 12px 0; }
	
	.A-home-news:before { font-size: 48px; right: -17%; }
	.A-home-news.reveal-mid:before { top: 60%; }
	.A-home-news.Aposts[data-navi="sides"] .Acontainer {
		margin: 0 24px;
	}
	.A-home-news.Aposts[data-navi="sides"] .Anavi svg { right: 8px; }
	.A-home-news.Aposts[data-navi="sides"] .Anavi svg:nth-child(1) {
		left: 8px;
		right: unset;
	}
	
	.A-page-cover h1 { font-size: 48px; bottom: -5px; }
	.A-page-cover figure { height: 220px; }
	
	.A-page-content h2 { font-size: 40px; }
	.A-page-content h3 { font-size: 30px; }
	.A-page-content li,
	.A-page-content a,
	.A-page-content p { font-size: 16px; }
	
	.A-cinema-cover h1 { font-size: 48px; }
	.A-cinema-cover h1 strong { font-size: 32px; }
	.A-cinema-place h2 { font-size: 40px; }
	.A-cinema-cover:before { height: 350px; }
	.A-cinema-photos img { height: 200px; }
	
	#A-theatre-grid .A-head h2 { font-size: 48px; }
	#A-theatre-grid .A-side-group { display: none; }
	
	
	.A-movie-cover h1 { width: 100vw; font-size: 26px; }
	.A-movie-cover .video { width: 90%; }
	.A-movie-info .A-side-group { display: none; }
	.A-info .row label { width: 100px; }
	.A-movie-info { padding-top: 32px; }
	.A-movie-info .A-top {
		flex-flow: column-reverse;
	    align-items: unset;
		place-items: self-end;
	}
	.A-movie-info .A-button {
		left: unset;
		top: unset;
		margin-bottom: 48px;
	}
	.A-movie-info h2 {
		width: 100%;
		text-align: left;
	}
	.A-movie-info .A-info { margin-top: 32px; }
	
	.A-movie-about > .A-flex { flex-flow: column-reverse; }
	.A-movie-about .A-right { padding: 32px 16px 0; }
	.A-movie-about .poster img {
		object-position: bottom;
	}
	.A-movie-about .A-left {
		width: 100%;
		padding: 32px 0;
	}
	.A-movie-about h2 {
		font-size: 32px;
		text-align: center;
	}
	.A-production-extra .Acolumns h2,
	.A-movie-extra .Acolumns h2 { font-size: 60px; }
	.A-production-extra .Acolumns p,
	.A-movie-extra .Acolumns p { font-size: 20px; }
	.A-movie-schedule .A-place .A-row .day { 
		width: 68px;
		overflow: hidden;
		padding: 2px 0;
	}
	.A-movie-schedule .A-place .A-row .date {
		overflow: hidden;
		width: 80px;
		padding: 2px 12px;
		letter-spacing: 1px;
		white-space: nowrap;
	}
	.A-movie-schedule .A-place .A-row .date .year { display: none;  }
	.A-movie-schedule .A-place .A-row .time div {
		padding: 2px 0px 2px 9px;
		width: 58px;
	}
	
	
	.A-theatre-cover h1 { font-size: 36px; }
	.A-theatre-cover > p:nth-child(2) { font-size: 18px; }
	.A-theatre-cover > p:nth-child(2):before {
		top: 0px;
		width: 40px;
		height: 40px;
	}
	.A-theatre-cover > p:nth-child(2),
	.A-theatre-cover h1 { padding-left: 52px; }
	.A-theatre-A h2 { font-size: 44px; }
	.A-theatre-C .Acolumns .Col1 p {
		font-size: 20px;
		text-align: center;
	}
	.A-theatre-D h2 { font-size: 32px; }
	.A-production-C .A-table td:first-child,
	.A-theatre-D .A-table td:first-child {
		padding-bottom: 0;
		border-right: 0;
		font-weight: 700;
	}
	.A-production-C .A-table tr,
	.A-theatre-D .A-table tr {
		display: flex;
		flex-flow: column;
		margin-bottom: 16px;
	}
	
	
	.A-production-cover h1 { width: 100vw; font-size: 26px; }
	.A-production-cover .wp-block-embed { width: 90%; }
	.A-production-B .Acolumns .Col2 { width: 100%; }
	.A-production-C h2 { font-size: 30px; }
	
	.A-post-cover h1 { font-size: 34px; }
	.A-post-content h2 { font-size: 26px; }
	
	.A-page-content .A-contact-gray { padding: 48px 5% 48px 0%; }
	.A-contact-gray .Acolumns .Col1 img {
		height: 36px;
		width: auto;
	}
	.A-contact-gray .Acolumns .Col1 {
		width: 56px;
		padding: 0 10px 32px;
	}
	.A-contact-gray .Acolumns:last-child .Col1 {
		padding: 0 10px 0;
	}
	.A-contact-white h3 { padding-left: 20px; }
	
	
	
	.A-footer { padding: 40px 16px; }
	.A-footer-col:nth-child(2),
	.A-footer-col:nth-child(3),
	.A-footer-col:nth-child(4),
	.A-footer-col:nth-child(5) { width: 100%; }
	
}



/* **************************************************************** */
@media (max-width: 320px) {
/* **************************************************************** */


}












.fontA { font-family: var(--fontA) !important; }
.fontB { font-family: var(--fontB) !important; }
