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

--------------------------------------------------------------*/



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

@font-face {
    font-family: 'DinText'; 
    src: url('../fonts/PFDinTextLight-Regular.otf');
    font-weight: 300;
	font-display: swap;
}
@font-face {
    font-family: 'DinText';
    src: url('../fonts/PFDinText-Regular.otf');
    font-weight: 400;
	font-display: swap;
}
@font-face {
    font-family: 'DinText';
    src: url('../fonts/PFDinText-Bold.otf');
    font-weight: 700;
	font-display: swap;
}
@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/MyriadPro-Regular.otf');
    font-weight: 400;
	font-display: swap;
}
@font-face {
    font-family: 'Pistilli';
    src: url('../fonts/Pistilli-Roman.otf');
    font-weight: 400;
	font-display: swap;
}

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

    --fontA: 'DinText', sans-serif;
    --fontB: 'MyriadPro', sans-serif;
    --fontC: 'Pistilli', 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);



}




/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
html, body {
	width: 100vw;
	overflow-x: hidden;
} 
body {
	position: relative;
	width: 100%;
    margin: 0;
    font: 400 14px var(--fontA);
    line-height: 1.3;
	background: white;
	overflow-x: hidden;
}
*, *::before, *::after { box-sizing: border-box; }
#content, footer {
    display: block !important;
}


::-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;
}




/*--------------------------------------------------------------
## Tools
--------------------------------------------------------------*/
.hvcenter {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.hcenter {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.vcenter {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.hidden { display: none; }
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

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



/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
a,p,h1,h2,h3,h4,h5 {
    color: hsl(60, 0%, 10%);
}

a {
    margin: 0 0 8px 0;
    font: 900 16px var(--fontA);
    text-decoration: none;
    color: var(--colorA);
}
p, li {
    margin: 0 0 8px 0;
    font: 400 16px var(--fontA);
}
h1 {
    margin: 0px 0 16px 0;
    font: 900 48px var(--fontA);
}
h2 {
    margin: 16px 0 8px 0;
    font: 700 32px var(--fontB);
    color: var(--colorA);
}
h3 {
    margin: 0 0 8px 0;
    font: 900 22px var(--fontA);
}
h4 {
    margin: 16px 0 0 0;
    font: 700 20px var(--fontA);
}
h5 {
    margin: 0 0 8px 0;
    font: 400 18px var(--fontA);
}

/* Heading Underline */
.uline { position: relative; display: inline-block; }
.uline::after {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -12px;
    content: "";
    border-bottom: 8px solid var(--colorA);
}
.uline-small::after { width: 64px; }

h1.uline { margin-bottom: 24px; }
h2.uline {
    margin-bottom: 24px;
    color: var(--colorB);
    text-shadow: var(--txB);
    font-weight: 900;
}
h3.uline::after {
    bottom: -8px;
    border-bottom: 4px solid var(--colorA);
}
h4.uline::after,
h5.uline::after { bottom: -4px; border-bottom: 2px solid var(--colorA); }


.ACT-title { padding: 48px 10%; border-top: 1px solid var(--colorA); }
.ACT-title h2 {
	position: relative;
	margin: 0;
	font: 400 16px var(--fontB);
}
.ACT-title h2:before {
	content: " ";
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 2px;
	height: 40px;
	background: var(--colorA);
}
.ACT-title h3 {
	position: relative;
	left: -40px;
	margin: 0;
	font: 400 26px var(--fontB);
}

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


/* DARK BACK */
.dark-back h1 {
    color: white;
    text-shadow: var(--txWH);
}
.dark-back h3,
.dark-back h4,
.dark-back h5,
.dark-back p,
.dark-back a {
    color: var(--colorD);
    text-shadow: var(--txD);
}

.dark-back h2.uline {
    color: white;
    text-shadow: var(--txWH);
    font-weight: 900;
}
.dark-back h3.uline,
.dark-back h4.uline,
.dark-back h5.uline {
    margin-bottom: 16px;
    color: white;
    text-shadow: var(--txWH);
}


.ACT-button-round {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: var(--colorA);
    border-radius: 100px;
    cursor: pointer;
}
.ACT-button-round .overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    overflow: hidden;
    background: black;
    transition: 0.2s all;
    border-radius: 16px;
}
.ACT-button-round:hover .overlay { width: 100%; }
.ACT-button-round p {
    position: relative;
    padding: 4px 16px;
    margin: 0;
    letter-spacing: 0.7px;
    font: 700 16px var(--fontB);
    color: white;
}


.ACT-round {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: var(--colorA);
    border-radius: 100px;
}
.ACT-round p {
    position: relative;
    padding: 4px 16px;
    margin: 0;
    letter-spacing: 0.7px;
    font: 700 14px var(--fontA);
    color: white;
    text-shadow: var(--txWH);
}
.ACT-round.green { background: #0f6f4e; }

.hidden { display: none; }



/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.half  { width: 50%; }
.third { width: 33.333%; }
.two-thirds { width: 66.666%; }
.quarter  { width: 25%; }

.floL { float: left; }
.floR { float: right; }

.txtC { text-align: center; }
.txtL { text-align: left; }
.txtR { text-align: right; }


.space { width: 100%; height: 32px; clear: both; }
.space16 { height: 16px; }
.space64 { height: 64px; }
.space128 { height: 128px; }

.pad8  { padding: 8px; }
.pad16 { padding: 16px; }
.pad32 { padding: 32px; }
.pad64 { padding: 64px; }
.pad128 { padding: 128px; }

.ACT-padding-A { padding: 0 10%; }
.ACT-padding-B { padding: 0 15%; }
.ACT-padding-C { padding: 0 20%; }
.ACT-padding-A2 { padding: 5% 10%; }
.ACT-padding-B2 { padding: 5% 15%; }
.ACT-padding-C2 { padding: 5% 20%; }
.ACT-padding-A3 { padding: 10% 10%; }
.ACT-padding-B3 { padding: 10% 15%; }
.ACT-padding-C3 { padding: 10% 20%; }




.ACT-search {
	position: absolute;
    top: 32px;
    right: 5%;
	opacity: 0.35;
}
.ACT-search:hover {opacity: 1;}
.ACT-search label span { display: none; }
.ACT-search input {
    min-width: 320px;
    padding: 4px 8px;
    font: 400 14px var(--fontA);
    background: hsla(0, 0%, 0%, 0.1);
    border: 0;
    outline: 0;
    border-radius: 100px;
}
.ACT-search .search-submit {
    position: absolute;
    top: 2px;
    right: 4px;
    background: transparent;
    border: 0;
    color: black;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.7;
}
.ACT-search .search-submit:hover { opacity: 1; }
.ACT-search .search-submit img {
    width: auto;
    height: 20px;
    padding: 2px 0;
	object-fit: contain;
}

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




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



.ACT-sxima {
	display: flex;
	position: relative;
	width: 100%;
	margin: 32px 0;
	text-align: center;
}
.ACT-sxima-box {
	position: relative;
	width: 400px;
	margin: 0 auto;
}
.ACT-sxima img {
	width: 400px;
	object-fit: contain;
}
.ACT-sxima .cross {
	position: absolute;
	top: 96px;
	left: calc(50% - 56px);
	width: 32px;
	height: 32px;
	padding: 1px;
	font-size: 20px;
	font-weight: 700;
	background: var(--colorB);
	color: var(--colorC);
	border-radius: 50%;
	cursor: pointer;
	animation: sxima-glow 2s infinite;
	animation-direction: alternate;
}
.ACT-sxima .cross span {
	display: none;
	position: absolute;
	top: -44px;
	left: -38px;
	width: 108px;
	padding: 4px 8px;
	background: var(--colorC);
	color: var(--colorB);
	font: 700 14px var(--fontA);
}
.ACT-sxima .cross2 { left: calc(50% + 24px); } 
.ACT-sxima .cross3 { left: calc(50% - 128px); top: 220px; } 
.ACT-sxima .cross4 { left: calc(50% - 56px); top: 220px; } 
.ACT-sxima-text { text-align: left; }
	
.ACT-sxima .cross:hover {
	background: var(--colorC);
	color: var(--colorB);
}
.ACT-sxima .cross:hover span { display: block; }

@keyframes sxima-glow {
	0% { box-shadow: 0 0 4px var(--colorC), 0 0 8px var(--colorC), 0 0 16px var(--colorC); }
	100% { box-shadow: 0 0 4px var(--colorC), 0 0 8px var(--colorC), 0 0 16px var(--colorC), 0 0 32px var(--colorC), 0 0 64px var(--colorC), 0 0 64px var(--colorC), 0 0 128px var(--colorC); }
}


.wp-block-columns { display: flex; }
.wp-block-column { flex: 1 1 auto; }




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



/* 	--------------
	HEADER
 	-------------- */
.ACT-header {
	display: flex;
    position: absolute;
	top: -24px;
    width: 100%;
    text-align: left;
	padding: 48px 80px;
    z-index: 999;
}
.ACT-logo {
	display: flex;
    flex-shrink: 0;
    width: auto;
	margin: 0 0 32px 0;
	transition: 1s all;
}
.ACT-logo img {
    width: 56px;
    height: 140px;
    object-fit: contain;
}
.ACT-logo .text { 
    width: 300px;
	padding-top: 48px;
	text-align: right; 
}
.ACT-logo .text h3 {
	margin: 0;
	font: 700 22px var(--fontA);
	color: var(--colorA);
}
.ACT-logo .text p {
	width: 100%;
	color: var(--colorA);
	font: 700 18px var(--fontA);
}



/* Navigation */
.ACT-navigation .menu-toggle { 
	display: none;
	background: transparent;
	border: 0;
	outline: 0;
	float: right;
}
.ACT-navigation .menu-toggle svg {
	width: 32px;
	height: 32px;
	fill: var(--colorA);
}
.ACT-navigation .svg-times { 
	display: none;
	position: fixed;
	right: 16px;
	top: 16px;
	width: 16px;
	fill: white;
}
.ACT-navigation {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    text-align: right;
    z-index: 9;
}
.ACT-header .ACT-navigation {
	display: block;
    flex: 1;
    min-width: 0;
    width: auto;
    padding: 24px 0 0 48px;
	margin: 0;
	transition: 1s all;
}
.ACT-navigation .menu-container { width: 100%; }
.ACT-navigation ul {
	width: auto;
    padding: 0;
    margin: 0;
    list-style: none;
	text-align: right;
	border-top: 1px solid hsla(0, 0%, 100%, 0.2);
    white-space: nowrap;
}
.ACT-navigation ul li {
    display: inline-block;
    position: relative;
    width: auto;
    padding: 6px 16px;
    margin: 0px;
    cursor: pointer;
}
.ACT-navigation ul li a {
    position: relative;
    font: 400 18px var(--fontA);
	color: var(--colorA);
    z-index: 99;
}
.ACT-navigation ul li:hover > a,
.ACT-navigation ul li.current_page_item > a {
    color: var(--colorB);
    opacity: 1;
}
.ACT-navigation ul.sub-menu { 
	display: none;
	position: absolute;
	min-width: 100%;
	width: auto;
	height: auto;
	padding: 8px;
	background: var(--colorC);
	z-index: 999;
}
.ACT-navigation ul.menu > li > ul.sub-menu {
	box-shadow: 2px 2px 8px hsla(0, 0%, 0%, 0.5);
}
.ACT-navigation ul.sub-menu li { display: block; padding: 0; }
.ACT-navigation ul.sub-menu li a { 
	display: block; 
    padding: 6px 16px;
	margin: 0;
	color: var(--colorB); 
}
.ACT-navigation ul.sub-menu li:hover a { color: var(--colorA); background: var(--colorB); }
.ACT-navigation ul.sub-menu ul.sub-menu { 
	right: 90%;
	top: -32px;
	min-width: 200px;
	text-align: left;
	background: var(--colorB);
	z-index: 999; 
}
.ACT-navigation ul.sub-menu ul.sub-menu li a { color: var(--colorA); opacity: 0.5; }
.ACT-navigation ul.sub-menu ul.sub-menu li:hover a { color: var(--colorA); opacity: 1; }
.ACT-navigation ul li:hover > ul.sub-menu { display: block; }

#primary .ACT-navigation {
	position: absolute;
	left: unset;
	right: 32px;
	top: 80px;
    width: auto;
	text-align: right;
    z-index: 999;
    pointer-events: all;
}
#primary .ACT-navigation ul {
    text-align: right;
    border: 0;
}
#primary .ACT-navigation ul li a {
    color: white;
	font-size: 24px;
    text-shadow: 0 0 8px black;
}
 




 
/* 	--------------------
	COVER A
 	-------------------- */
.ACT-cover-A {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
    text-align: right;
	background: url('../img/marble.jpg');
}
.ACT-cover-A .ACT-overlay {
	height: 200px;
	background: linear-gradient(to bottom, hsla(0, 0%, 0%, 0.7), hsla(0, 0%, 0%, 0.5), hsla(0, 0%, 0%, 0.1), hsla(0, 0%, 0%, 0));
}
.ACT-cover-A .ACT-text {
	position: absolute;
	right: 0;
	bottom: 0;
	width: auto;
	max-width: 600px;
	padding: 32px 5%;
	background: white;
}
.ACT-cover-A .ACT-text h1 { margin: 0; font-weight: 400; line-height: 1.1; }
.ACT-cover-A .ACT-text h2 { margin: 0; font: 700 40px var(--fontA); }
.ACT-cover-A img { width: 80%; }



 
/* 	--------------------
	COVER FOU
 	-------------------- */
.ACT-cover-fou {
	position: relative;
	width: 100%;
	height: 960px;
	overflow: hidden;
    text-align: right;
	background: url('../img/marble.jpg');
}

.ACT-cover-fou .ACT-cover-back {
	position: relative;
	width: 100%;
	height: 660px;
}
.ACT-cover-fou .fyto,
.ACT-cover-fou .flower,
.ACT-cover-fou .flower2 {
	position: absolute;
	left: 0;
	bottom: 0;
	width: auto;
	height: 70%;
	transform-origin: bottom left;
}
.ACT-cover-fou .flower2 { left: -0.7%; height: 65%; }
.ACT-cover-fou .fyto { height: 60%; }
.ACT-cover-fou .ACT-grad-01 {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 90%;
	height: 80%;
	background: radial-gradient(ellipse farthest-side at bottom left,
		rgba(0,0,0,1)     0%, 
		rgba(0,0,0,0.5)  50%, 
		rgba(0,0,0,0)   100% );
}
.ACT-glows { width: 80%; top: -15%; transform: rotate(20deg); }
.ACT-glows-B { width: 80%; opacity: 0.7; top: 5%; }
.ACT-glow-element {
	position: absolute;
	width: 64px;
	height: 64px;
	background: radial-gradient(circle farthest-side,
		hsla(0, 0%, 100%, 1)     0%,
		hsla(0, 0%, 100%, 0.5)  60%,
		hsla(0, 0%, 100%, 0)   100% );
	opacity: 0.7;
}

.ACT-cover-fou .ACT-cover-circles {
	position: absolute;
	right: 14vw;
	top: 12vw;
	width: 42vw;
	height: 42vw;
    padding: 15vw 6vw 0;
	text-align: left;
}
.ACT-cover-fou .ACT-cover-circle {
	position: absolute;
	right: 0%;
	top: 0%;
	width: 100%;
	height: 100%;
	transition: 0.5s all 0s;
}
.ACT-cover-fou .ACT-cover-circle-A {
	right: 25%;
	top: 25%;
	width: 50%;
	height: 50%;
	border: 3px solid var(--colorA);
	border-radius: 50%;
}
.ACT-cover-fou .ACT-cover-circle-B img {
	position: absolute;
	right: 32.5%;
    top: 32.5%;
    width: 35%;
	transition: 0.5s all 0.5s;
}
.ACT-cover-fou .ACT-cover-circle-C img {
	position: absolute;
	right: 37.5%;
    top: 37.5%;
    width: 25%;
	transition: 0.5s all 0.5s;
}
.ACT-cover-fou .ACT-cover-circle-B { transform: rotate(90deg); transition: 1.5s all 1s; }
.ACT-cover-fou .ACT-cover-circle-C { transform: rotate(-90deg); transition: 1.5s all 1.5s; }
.ACT-cover-fou .ACT-cover-circles h1 {
	margin: 0 0 0.6vw;
	font: 300 3.7vw var(--fontA);
	line-height: 1.1;
	transition: 2.5s all 1s;
	opacity: 0;
}
.ACT-cover-fou .ACT-cover-circles p {
	font: 300 1.85vw var(--fontA);
	transition: 2.5s all 1.25s;
	opacity: 0;
}
.ACT-cover-fou.open {}
.ACT-cover-fou.open .ACT-cover-circle-A {
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.ACT-cover-fou.open .ACT-cover-circle-B img {
	position: absolute;
	right: -5%;
    top: -5%;
}
.ACT-cover-fou.open .ACT-cover-circle-C img {
	right: -16%;
    top: -16%;
    width: 50%;
}
.ACT-cover-fou.open .ACT-cover-circles h1 { opacity: 1; }
.ACT-cover-fou.open .ACT-cover-circles p { opacity: 1; }
.ACT-cover-fou.open .ACT-cover-circle-B { transform: rotate(270deg); }
.ACT-cover-fou.open .ACT-cover-circle-C { transform: rotate(90deg); }

.ACT-cover-icons {
	display: flex;
	width: 65%;
	padding: 64px 6vw;
}
.ACT-cover-icons .ACT-cover-icon {
	position: relative;
	width: 45%;
	margin-right: 5%;
	text-align: left;
	overflow: hidden;
}
.ACT-cover-icons .ACT-cover-icon svg {
	position: relative;
	width: 64px;
	height: 64px;
	margin-bottom: 28px;
}
.ACT-cover-icons .ACT-cover-icon:before {
	content: " ";
	position: absolute;
	top: 76px;
	left: 0;
	width: 64px;
	height: 3px;
	background: linear-gradient(to left, #f7b796 40%, #3c3c3b 120%);
}
.ACT-cover-icons .ACT-cover-icon h3 {
	position: relative;
	left: 0%;
	font: 300 30px var(--fontA);
	color: var(--colorD);
	transition: 0.6s all;
}
.ACT-cover-icons .ACT-cover-icon h3.hovered {
	position: absolute;
	left: -100%;
	bottom: 0;
	color: var(--colorA);
}
.ACT-cover-icons .ACT-cover-icon:hover h3 { left: 100%; }
.ACT-cover-icons .ACT-cover-icon:hover h3.hovered { left: 0%; }







/* 	--------------------
	CONTENT BOX A
 	-------------------- */
.ACT-content-box-A {
	display: flex;
	position: relative;
	width: 100%;
	background: var(--colorC);
}
.ACT-content-box-A .ACT-left {
	position: relative;
	left: -35%;
	width: 35%;
	padding: 80px 7vw;
	background: var(--colorB);
	transition: 0.3s all 0.7s;
}
.ACT-content-box-A .ACT-left h2 {
	font: 300 36px var(--fontA);
	color: var(--colorC);
	line-height: 1;
	margin-bottom: 32px;
}
.ACT-content-box-A .ACT-left h3 {
	padding-right: 50%;
	font: 300 22px var(--fontA);
	color: var(--colorA);
	line-height: 1;
}
.ACT-content-box-A .ACT-right {
	position: relative;
	left: 65%;
	width: 65%;
	padding: 80px 15vw 64px 5vw;
	background: var(--colorC);
	transition: 0.5s all;
	animation: content-box-A 1s forwards;
	animation-play-state: paused;
}
.ACT-content-box-A .ACT-right h3 {
	margin-top: 32px;
	font: 700 24px var(--fontA);
}
.ACT-content-box-A .ACT-right p {
	font: 300 18px var(--fontA);
}
.ACT-content-box-A .ACT-right a {
	display: block;
	margin-top: 32px;
	font: 700 20px var(--fontA);
	color: var(--colorB);
	cursor: pointer;
}
.ACT-content-box-A .ACT-right a:hover { color: var(--colorA); }

.ACT-content-box-A.open .ACT-left {
	left: 0%;
}
.ACT-content-box-A.open .ACT-right {
	animation-play-state: running;
}
@keyframes content-box-A {
	0% { left: 65%; }
	70% { left: -35%; }
	100% { left: 0%; }
}











/* 	--------------------
	PAGES A
 	-------------------- */
.ACT-pages-A {
	position: relative;
	width: 100%;
	padding: 80px 12vw;
	background: var(--colorB);
	overflow: hidden;
	text-align: center;
}
.ACT-pages-A h1 {
	font: 300 34px var(--fontA);
	color: var(--colorC);
	letter-spacing: 24px;
	margin-bottom: 48px;
}
.home .ACT-pages-A h2 { font: 300 24px var(--fontA); }
.ACT-pages-A .ACT-circles {
	display: flex;
	flex-flow: row wrap;
	position: relative;
	width: 100%;
}
.ACT-pages-A .ACT-page {
	display: block;
	position: relative;
	width: 22vw;
	height: 22vw;
	margin: 1vw auto;
	border: 2px solid var(--colorC);
	border-radius: 50%;
}
.ACT-pages-A .ACT-page h3 {
	padding: 0 2vw;
	margin-top: 9.8vw;
	font: 300 18px var(--fontA); 
	color: var(--colorC); 
}
.ACT-pages-A .ACT-page img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: 1s all;
	border-radius: 50%;
	object-fit: cover;
}
.ACT-pages-A .ACT-page:hover img { opacity: 1; }
.ACT-pages-box-A {
	position: absolute;
	right: 0vw;
	top: 0vw;
	width: 65vw;
	height: 100%;
	transform: rotate(0);
	background: var(--colorB);
	transition: 2s transform 0.7s, 1s right 0s, 1s top 0s, 2s width 0.7s, 2s height 0.7s, 2s background 0s;
}
.ACT-pages-box-B {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 35vw;
	height: 100%;
	transform: rotate(0);
	background: var(--colorC);
	transition: 2s transform 0.7s, 1s left 0s, 1s bottom 0s, 2s width 0.7s, 2s height 0.7s, 1s background 1s;
}


.ACT-pages-A.open .ACT-pages-box-A {
	right: -15vw;
	top: -15vw;
	width: 30vw;
	height: 30vw;
	transform: rotate(45deg);
	background: hsla(0, 0%, 0%, 0.25);
}
.ACT-pages-A.open .ACT-pages-box-B {
	left: -15vw;
	bottom: -15vw;
	width: 30vw;
	height: 30vw;
	transform: rotate(45deg);
	background: white;
}








.ACT-flower-back { position: relative; }
.ACT-flower-back img.back {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.25;
	object-fit: cover;
    object-position: right;
}

.ACT-seperator {
	width: 80%;
	height: 4px;
	margin: 96px 10%;
	background: linear-gradient(to left, hsl(20, 86%, 88%), hsl(20, 56%, 58%), hsl(20, 86%, 88%), hsl(20, 56%, 58%) );
}



/* 	--------------------
	DOCTOR HOME
 	-------------------- */
.ACT-doctor-home {
	position: relative;
	padding: 64px 12vw;
	margin-bottom: 256px;
	text-align: right;
}
.ACT-doctor-home img.doctor {
	width: 15vw;
	height: auto;
	margin-right: 32px;
	object-fit: cover;
    object-position: right;
	border-radius: 50%;
}
.ACT-doctor-home h2 {
	position: relative;
	margin: -64px 0 0;
	font: 400 150px var(--fontC);
	color: black;
}
.ACT-doctor-home .text { 
	position: relative;
	display: inline-block;
	width: 360px;
	text-align: left; 
	margin-right: 32px;
}
.ACT-doctor-home h4 {
	margin: 0 0 20px;
	font: 700 28px var(--fontA);
	color: #B9899B;
}
.ACT-doctor-home h3 {
	margin: 0;
	font: 700 24px var(--fontA);
	letter-spacing: 4px;
}
.ACT-doctor-home p {
	margin: 0;
	font: 300 24px var(--fontA);
	letter-spacing: 4px;
}
.ACT-doctor-home img.iatreio {
	position: absolute;
	left: 15vw;
	top: 8vw;
	width: 44%;
	clip-path: url(#iatreio-mask);
}
.ACT-doctor-home svg {
	position: absolute;
	left: 15vw;
	top: 8vw;
	width: 44%;
}



/* 	--------------------
	WEB TV
 	-------------------- */
.ACT-webtv {
	position: relative;
	padding: 64px 12vw;
	text-align: center;
}
.ACT-webtv img {
	max-width: 50%;
	height: auto;
}
.ACT-webtv p { margin-top: 8px; }




/* 	--------------------
	COVER DOCTOR
 	-------------------- */
.ACT-cover-doctor {
	position: relative;
	width: 100%;
	height: auto;
	padding: 256px 0 0;
    background: url('../img/marble.jpg');
}
.ACT-cover-doctor .ACT-left {
	position: relative;
	width: 30%;
	height: 550px;
	background: #e6dbd5;
	float: left;
}
.ACT-cover-doctor .ACT-right {
	position: relative;
	right: 0;
	width: 70%;
	height: 550px;
	background: #f5f2eb;
	float: left;
}
.ACT-cover-doctor .ACT-photo,
.ACT-cover-doctor .ACT-circle {
	position: absolute;
	left: calc(30% - 65px);
	top: 450px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	object-fit: cover;
	transition: 1s all;
}
.ACT-cover-doctor .ACT-circle { transform: rotate(135deg); border-radius: unset; }
.ACT-cover-doctor .ACT-circle img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 130px;
	height: 130px;
	transition: 1s all;
}
.ACT-cover-doctor .ACT-circle-2 {
	position: absolute;
    right: -5%;
    top: 600px;
    width: 30vw;
    height: 30vw;
    border: 2px solid var(--colorA);
    border-radius: 50%;
	z-index: 9;
}
.ACT-cover-doctor .ACT-circle-2 .line {
	position: absolute;
	left: -10vw;
	top: 13vw;
	width: 20vw;
	height: 2px;
	background: black;
	transform: rotate(45deg);
}
.ACT-cover-doctor .ACT-text {
	position: absolute;
	left: 30%;
	top: 400px;
	width: 50%;
}
.ACT-cover-doctor .ACT-text h1 {
	position: relative;
	left: 10%;
	text-align: center;
	font: 400 96px var(--fontC);
	line-height: 1;
	color: black;
	opacity: 0;
	transition: 4s all 0.4s;
}
.ACT-cover-doctor .ACT-text h1 span { opacity: 0.15; }
.ACT-cover-doctor .ACT-text h2 {
	position: relative;
	left: 10%;
	padding-left: 40%;
	margin: 32px 0 0;
	font: 700 22px var(--fontA);
	line-height: 1;
	letter-spacing: 2px;
	color: black;
	opacity: 0;
	transition: 4s all 0.8s;
}
.ACT-cover-doctor .ACT-text h3 {
	position: relative;
	left: 10%;
	padding-left: 40%;
	font: 300 20px var(--fontA);
	line-height: 1;
	letter-spacing: 2px;
	color: black;
	opacity: 0;
	transition: 4s all 1.2s;
}
.ACT-cover-doctor .ACT-text p {
	padding-left: 10%;
	margin-top: 128px;
	font: 400 28px var(--fontA);
	line-height: 1;
	opacity: 0;
	transition: 4s all 1.6s;
}

.ACT-cover-doctor .ACT-bottom-A {
	position: relative;
	width: 100%;
	padding: 32px 10% 8px;
	background: white;
}

.ACT-cover-doctor .ACT-bottom {
	position: relative;
	width: 100%;
	padding: 2px 0;
	background: #f5f2eb;
}
.ACT-cover-doctor .ACT-bottom h2 { color: var(--colorB); }
.ACT-cover-doctor .ACT-bottom .text { padding: 32px 20vw; }
.ACT-cover-doctor .ACT-bottom li {
	margin-bottom: 24px;
	font-weight: 300;
}
.ACT-cover-doctor .ACT-bottom li b,
.ACT-cover-doctor .ACT-bottom li strong {
	margin: 32px 0 4px; 
	font-size: 18px;
}
.ACT-cover-doctor .ACT-bottom img.back {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 130%;
	opacity: 0.25;
	object-fit: cover;
    object-position: right;
	pointer-events: none;
}
.ACT-cover-doctor .ACT-glows { 
	position: absolute;
	top: unset;
	bottom: 0px;
	width: 100%;
	height: 300px;
	transform: rotate(20deg);
	z-index: 9;
}
.ACT-cover-doctor .ACT-glows-B { 
	position: absolute;
	top: unset;
	bottom: -100px;
	width: 100%;
	height: 300px;
	opacity: 0.7;
	z-index: 9;
}

.ACT-cover-doctor.open .ACT-photo,
.ACT-cover-doctor.open .ACT-circle {
	left: calc(30% - 165px);
	top: 350px;
	width: 330px;
	height: 330px;
}
.ACT-cover-doctor.open .ACT-circle { transform: rotate(-45deg); }
.ACT-cover-doctor.open .ACT-circle img {
	left: -50px;
	top: 140px;
	width: 100px;
	height: 100px;
}
.ACT-cover-doctor.open .ACT-text h1,
.ACT-cover-doctor.open .ACT-text h2,
.ACT-cover-doctor.open .ACT-text h3,
.ACT-cover-doctor.open .ACT-text p { left: 0; opacity: 1; }


.ACT-doctor-content h2 strong,
.ACT-doctor-content h2 {
	margin: 64px 0;
	font: 300 28px var(--fontA);
	line-height: 1;
	letter-spacing: 8px;
	text-align: center;
	color: black;
}


/* 	--------------------
	COVER INSIDE
 	-------------------- */
.ACT-cover-inside {
	position: relative;
	width: 100%;
	padding: 256px 0 0;
    background: url('../img/marble.jpg');
}
.ACT-cover-inside .ACT-flex { flex-flow: row wrap; }
.ACT-cover-inside .ACT-flex picture {
	position: relative;
	width: 65%;
	height: 100%;
	height: 600px;
	object-fit: cover;
}
.ACT-cover-inside .ACT-flex picture img {
	object-fit: cover;
	filter: saturate(0);
}
.ACT-cover-inside .ACT-flex picture.pic-B { width: 35%; }
.ACT-cover-inside .ACT-flex picture img.image-B { filter: unset; }

 
/* 	--------------------
	INSIDE BOXES
 	-------------------- */
.ACT-content-inside-box-A,
.ACT-content-inside-box-B {
	position: relative;
	width: 35%;
	padding: 96px 5% 32px;
	background: #e6dbd5;
	height: 728px;
	z-index: 9;
}
.ACT-content-inside-box-A h1 {
	font-weight: 300;
	margin-bottom: 64px;
}
.ACT-content-inside-box-A .ACT-text {
	position: relative;
	left: 0%;
}

.ACT-content-inside-box-B { 
	top: -128px; 
	width: 65%; 
	background: #f5f2eb; 
	padding: 64px 20% 64px 10%;
	z-index: 8;
}
.ACT-content-inside-box-B h2 {
	padding-right: 20%;
	font: 300 64px var(--fontA);
	line-height: 1;
}
.ACT-content-inside-box-B h3 {
	padding-right: 20%;
	margin-bottom: 64px;
}
.ACT-content-inside-box-A { z-index: 99; }
.ACT-content-inside-back { 
	position: absolute;
	width: 100%;
	height: 100%;
	background: #e6dbd5;
	z-index: 98;
	transition: 1s all;
}
.ACT-cover-inside.open .ACT-content-inside-back { width: 35%; }
.ACT-cover-inside.open2 .ACT-content-inside-back { height: 30%; }



 

/* 	--------------------
	CONTENT A
 	-------------------- */
.ACT-content-A {
	padding: 64px 20vw;
}
.ACT-content-A h2 { margin: 64px 0 0; }
.ACT-content-A h3 { margin-top: 32px; }
.ACT-content-A h4 {
	position: relative;
	margin-top: 32px;
	margin-bottom: 8px;
}
.ACT-content-A h4:before {
    content: " ";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 72px;
    height: 3px;
    background: linear-gradient(to left, #f7b796 40%, #3c3c3b 120%);
}
.ACT-content-A li,
.ACT-content-A p { font-size: 16px; text-align: justify; opacity: 0.5; }
.ACT-content-A p { margin-bottom: 16px; }

.ACT-inside-content {
	position: relative;
	padding-top: 96px;
	margin-top: -128px;
	background: white;
}



.ACT-banner-A {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
    text-align: center;
	background: black;
}
.ACT-banner-A .actus-parallax img { opacity: 0.35; }
.ACT-banner-A img.logo {
	max-width: 30%;
	margin: 0 auto;
	text-align: center;
	filter: invert(1);
}



.ACT-footnote { margin-top: 64px; }
.ACT-footnote .wp-block-group__inner-container { display: flex; }
.ACT-footnote h2 { margin: 0; font-size: 14px; min-width: 130px; }
.ACT-footnote p { margin: 0; font-size: 12px; }





/* 	--------------
	BLOG
 	-------------- */
.ACT-blog-list { position: relative; }
.ACT-blog-list h1 {
    padding: 64px 0;
    margin: 0;
    font-weight: 400;
    line-height: 1.1;
	text-align: center;
    background: var(--colorC);
}
.ACT-blog-list .ACT-boxes {
	display: flex;
	flex-flow: row wrap;
	padding: 48px 10vw;
}
.ACT-blog-post {
	flex: 0 0 auto;
	width: 33.333%;
	margin: 0 0 32px;
	position: relative;
	text-align: center;
}
.ACT-blog-post a { display: block; }
.ACT-blog-post .photo {
	width: 200px;
	height: 200px;
	object-fit: cover;
	transition: 0.5s all;
	border-radius: 100px;
}
.ACT-blog-post .title {
	padding: 0 32px;
}
.ACT-blog-post .title h3 { margin: 0; color: var(--colorB); }
.ACT-blog-post .text {
	display: flex;
	align-items: center;
	padding: 0 32px;
	margin: 0;
	background: var(--colorA);
}


















/* 	--------------
	CAROUSEL
 	-------------- */
.ACT-carousel {
	position: relative;
	width: auto;
	margin: 0 0 96px;
	text-align: center;
}
.ACT-carousel h2 { margin: 64px 0; font: 300 32px var(--fontA); }
.ACT-carousel .ACT-container {
	width: auto;
	margin: 0 10%;
	overflow: hidden;
	text-align: left
}
.ACT-carousel .ACT-carousel-items {
	position: relative;
	left: 0;
	display: flex;
	flex-flow: row nowrap;
	width: auto;
	height: 100%;
	transition: 0.5s all;
}
.ACT-carousel .ACT-item { width: 33.333%; min-width: 33.333%; }
.ACT-carousel .ACT-item {
	display: flex;
	position: relative;
	height: auto;
	padding: 0 16px;
	cursor: pointer;
	z-index: 9;
}
.ACT-carousel .ACT-item img {
	width: 40%;
	height: 200px;
	object-fit: cover;
}
.ACT-carousel .ACT-item .text { width: 60%; padding-left: 32px; }
.ACT-carousel .ACT-item h3 {
	position: relative;
	padding: 0;
	margin: 0;
	font: 700 20px var(--fontA);
}
.ACT-carousel .ACT-item p {
	font-size: 16px;
	opacity: 0.7;
}
.ACT-carousel-navigation {
	position: absolute;
	left: 0;
	top: 160px;
	width: 100%;
	z-index: 99;
}
.ACT-carousel-navigation svg {
	position: absolute;
	left: 18%;
	top: 0;
	width: 48px;
	cursor: pointer;
	opacity: 0.25;
	z-index: 99;
	object-fit: contain;
	fill: var(--colorA);
}
.ACT-carousel-navigation svg:hover { opacity: 1; }
.ACT-carousel .dashicons {
	position: absolute;
	left: 18%;
	bottom: 16px;
	color: var(--colorA);
	font-size: 30px;
	cursor: pointer;
	opacity: 0.25;
	z-index: 99;
}
.ACT-carousel-navigation .prev { left: 5%; transform: rotate(180deg); }
.ACT-carousel-navigation .next { left: unset; right: 5%; }



/* ΦΟΥΝΤΖΗΛΑ */
.ACT-carousel-fountzila .ACT-item .text { width: 100%; padding: 0; }
.ACT-carousel-fountzila .ACT-item .text > p { display: none; }
.ACT-carousel-fountzila .ACT-item { flex-flow: column; text-align: center; }
.ACT-carousel-fountzila .ACT-item img {
	width: 200px;
	height: 200px;
	margin: 0 auto;
	border-radius: 50%;
}
.ACT-carousel-fountzila .ACT-item h3 {
	margin: 12px 0 16px;
	font-weight: 400;
	opacity: 0.6;
}
.ACT-carousel-fountzila .ACT-item .ACT-button-round { background: transparent; }
.ACT-carousel-fountzila .ACT-item .ACT-button-round p { 
	color: black;
	font: 900 16px var(--fontA);
	opacity: 1;
}

	



/* CAROUSEL SERVICES */
	.ACT-carousel-services .ACT-container { padding: 0; }
	.ACT-carousel-services .ACT-item { height: 500px; margin: 0; }
	.ACT-carousel-services .ACT-item img {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}
	.ACT-carousel-services .ACT-item h3 {
	    margin: 0;
	    font: 700 22px var(--fontA);
	    background: transparent;
	    color: var(--colorA);
	    text-align: center;
		transition: 0.4s all;
	}
	.ACT-carousel-services .overlay { 
		background: rgba(255, 255, 255, 0.7);
		transition: 0.4s all;
	}
	.ACT-carousel-services .ACT-item:hover .overlay { background: rgba(255, 255, 255, 0); }
	.ACT-carousel-services .ACT-item:hover h3 { 
		text-shadow: 0 0 8px white, 0 0 16px white, 0 0 32px white; 
	}
	.ACT-carousel-services .ACT-carousel-navigation img {
		width: 32px;
		height: 32px;
		opacity: 0.75;
	}
	.ACT-carousel-services .ACT-carousel-navigation .prev { left: 4%; }
	.ACT-carousel-services .ACT-carousel-navigation .next { right: 4%; }

/* CAROUSEL BLOG */
	.ACT-carousel-blog .ACT-container { height: 640px; }
	.ACT-carousel-blog .ACT-item:nth-child(even) { top: 96px; }
	.ACT-carousel-blog .ACT-item { width: 25%; min-width: 25%; }
	.ACT-carousel-blog .ACT-item { 
		display: block;
		flex: 0 0 auto;
		height: auto;
		margin: 0;
	}
	.ACT-carousel-blog .ACT-item img {
		position: relative;
		width: 256px;
		height: 256px;
		margin-bottom: 16px;
		border-radius: 300px;
	}
	.ACT-carousel-blog .ACT-item .text {
		width: 100%;
		padding: 0;
	}
	.ACT-carousel-blog .ACT-item h3 {
	    margin: 0 0 16px 0;
	    font: 900 16px var(--fontB);
	    text-align: left;
		line-height: 1;
	    background: transparent;
	    color: var(--colorA);
	}
	.ACT-carousel-blog .ACT-item p {
	    font: 400 16px var(--fontB);
		opacity: 0.7;
	}
	.ACT-carousel-blog .ACT-item .date {
		margin: 16px 0;
	    font: 400 16px var(--fontB);
	    color: var(--colorB);
	}
	.ACT-carousel-blog .ACT-item .ACT-button-round { margin-top: 16px; background: #CECECE; }
	.ACT-carousel-blog .ACT-item .ACT-button-round:hover { background: var(--colorA); }
	.ACT-carousel-blog .ACT-item .ACT-button-round p { 
		color: white; 
		text-shadow: var(--txWH);
		opacity: 1;
	}
	.ACT-carousel-blog .ACT-carousel-navigation { top: 360px; }
	.ACT-carousel-blog .ACT-carousel-navigation img { 
		width: 32px;
		height: 32px;
		opacity: 0.75;
	}
	.ACT-carousel-blog .ACT-carousel-navigation .prev { left: 4%; }
	.ACT-carousel-blog .ACT-carousel-navigation .next { right: 4%; }


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


}
@media (max-width: 1280px) {
	.ACT-carousel .ACT-container { margin: 0 10%; }

}
@media (max-width: 1024px) {

	.ACT-carousel .ACT-item { width: 100%; min-width: 100%; }

}
@media (max-width: 800px) {


}
@media (max-width: 640px) {

	.ACT-carousel { padding: 0 16px; }
	.ACT-carousel h2 { margin: 64px 0 32px; }
	.ACT-carousel .ACT-container { margin: 0 7%; }
	.ACT-carousel-navigation { top: 260px; }
	.ACT-carousel-navigation img { height: 32px; }
	.ACT-carousel-navigation .prev { left: 0; }
	.ACT-carousel-navigation .next { right: 0; }
	.ACT-carousel .ACT-item { display: block; }
	.ACT-carousel .ACT-item .text { width: 100%; padding: 0; }
	.ACT-carousel .ACT-item h3 { max-width: 100%; margin: 8px 0; }

}







/* 	--------------------
	SLIDER
 	-------------------- */
.ACT-slider {
	position: fixed !important;
	top: 0 !important;
	left: 0% !important;
	width: 100vw !important;
	height: 100vh !important;
	transition: 1s all;
	-webkit-clip-path: polygon(55% 0%, 90% 0%, 85% 100%, 10% 100%);
	clip-path: polygon(55% 0%, 90% 0%, 85% 100%, 10% 100%);
}
.ACT-slider-container .ASLP-SLIDER {
	position: fixed !important;
	top: 0 !important;
	left: 10% !important;
	width: 80% !important;
	height: 100% !important;
}

.ACT-home-A .ACT-image img {
	position: relative; 
	-webkit-clip-path: polygon(55% 0%, 90% 0%, 85% 100%, 10% 100%);
	clip-path: polygon(55% 0%, 90% 0%, 85% 100%, 10% 100%);
	transition: 1s all;
}
.ACT-home-A .ACT-image.closed img,
.ACT-slider.closed {
	transform: rotateZ(30deg) translate3d(-60%, 0px, 0px) scale(1, 1.3);
	-webkit-clip-path: polygon(55% 0%, 90% 0%, 10% 100%, -20% 100%);
	clip-path: polygon(55% 0%, 90% 0%, 10% 100%, -20% 100%);
}




/* 	--------------------
	ZOOM SLIDER
 	-------------------- */
.ACT-zoom-slider {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
    filter: drop-shadow(0px 0px 16px black);
}
.ACT-zoom-slider .slides {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-webkit-clip-path: polygon(55% 0%, 80% 0%, 75% 100%, 10% 100%); 
	clip-path: polygon(55% 0%, 80% 0%, 75% 100%, 10% 100%); 
}
.ACT-zoom-slider .AB-slide img {
	position: relative;
	left: 10%;
	width: 70%;
	object-fit: cover;
}
.ACT-zoom-slider .slide-info {
	position: absolute;
	left: 10%;
	top: 50px;
	width: auto;
	height: 400px;
	object-fit: contain;
	transition: 2s all;
}
.ACT-zoom-slider .slide-info.off {
	filter: blur(10px);
	transform: scale(0.8);
	opacity: 0;
}































.ACT-contact-flex { display: flex; }
.ACT-contact-flex .ACT-left h1 { font: 400 80px var(--fontC); opacity: 0.15; }
.ACT-contact-flex .ACT-left {
	width: 35%;
	background: #e6dbd5;
    padding: 96px 2% 32px 5%;
}
.ACT-contact-flex .ACT-right {
	width: 65%;
	background: #f5f2eb;
    padding: 64px 0;
}









/* 	--------------
	CONTACT
 	-------------- */
.ACT-contact {
	text-align: center;
}
.ACT-contact .doctor-info { padding: 32px 0; }
.ACT-contact-box {
	display: flex;
	margin-top: 64px;
}
.ACT-contact-box a { display: block; }
.ACT-contact-box > div { flex: 1 1 auto; width: 50%; height: 450px; }
.ACT-contact-box > div iframe { width: 100%; height: 100%; }
.ACT-contact-box-bottom { padding: 0 20%; }

/* Contact Form */
.ACT-contact-form {
	position: relative;
    height: 100%;
	padding: 32px 10%;
}
.ACT-form { position: relative; }
.ACT-contact-form > h3 {
	color: var(--colorA);
}
.theme-A .ACT-contact-form-field {
	display: grid;
	grid-template-columns: 140px auto;
	position: relative;
	width: 100%;
	margin-bottom: 8px;
	background: hsla(0, 0%, 0%, 0.15);
	border-radius: 100px;
	transition: 0.6s all;
	overflow: hidden;
}
.theme-A .ACT-contact-form-field label {
	position: relative;
	width: 100%;
	padding: 8px;
	overflow: hidden;
	font-weight: 700;
	text-align: right;
	color: rgba(255, 255, 255, 0.51);
	background: hsla(0, 0%, 0%, 0.25);
	border-radius: 100px;
	transition: 0.4s all;
}
.theme-A .ACT-contact-form-field.required label::before {
	content: "*";
	position: absolute;
	left: 6px;
	top: 4px;
	font-weight: 900;
	font-size: 26px;
	color: white;
	opacity: 0.5;
}
.theme-A .ACT-contact-form-field.error label {
	background: hsl(0, 100%, 85%);
}
.theme-A .ACT-contact-form-field.closed { width: 0%; }
.theme-A .ACT-contact-form-field.closed label { width: 0%; }
.theme-A .ACT-contact-form-field textarea,
.theme-A .ACT-contact-form-field input {
	position: relative;
	padding: 8px;
	font-size: 18px;
	font-weight: 700;
	background: transparent;
	border: 0;
	outline: 0;
	border-radius: 100px;
	transition: background 0.6s;
}
.theme-A .ACT-contact-form-field textarea:focus,
.theme-A .ACT-contact-form-field input:focus { background: hsla(0, 0%, 100%, 0.25); }
.theme-A .ACT-contact-form-field.textarea { border-radius: 16px 32px 32px; }
.theme-A .ACT-contact-form-field textarea {
	height: 160px;
	font-weight: 400;
	border-radius: 16px 32px 32px;
	resize: none;
}
.theme-A .ACT-contact-form-field.textarea label {
	height: 34px;
	border-radius: 16px;
}
.ACT-contact-form-submit,
.theme-A .ACT-contact-form-submit {
	position: relative;
	text-align: right;
	z-index: 9;
}
.theme-A .ACT-contact-error {
	position: relative;
	top: -32px;
	padding-right: 140px;
	text-align: left;
	text-shadow: var(--txBL);
	color: hsl(0, 100%, 30%);
}
.theme-A .ACT-contact-error ul { margin: 0; }
.theme-A .ACT-contact-result {
	position: absolute;
	top: 64px;
	width: 0%;
	margin: 32px 0;
	overflow: hidden;
	white-space: nowrap;
	transition: 0.6s all ease 0.6s;
}
.theme-A .ACT-contact-result.open { width: 100%; }
.theme-A .ACT-contact-result p { padding: 8px 24px; }
.theme-A.ACT-contact-form .ACT-button-round { background: aliceblue; }
.theme-A.ACT-contact-form .ACT-button-round p { color: black; }
.theme-A.ACT-contact-form .ACT-button-round:hover p { color: white; }
.theme-A.ACT-contact-form .ACT-button-round:hover .overlay { background: var(--colorA); }


/* ΦΟΥΝΤΖΗΛΑ */
.theme-A .ACT-contact-form-field {
	grid-template-columns: 76px auto;
    background: transparent;
	border-radius: 0;
}
.theme-A .ACT-contact-form-field label {
	position: relative;
    background: transparent;
	color: hsla(0, 0%, 0%, 0.33);
}
.theme-A .ACT-contact-form-field.textarea { border-radius: 0; }
.theme-A .ACT-contact-form-field textarea, 
.theme-A .ACT-contact-form-field input {
    background: transparent;
    border-bottom: 2px dotted hsla(0, 0%, 0%, 0.1);
	border-radius: 0;
}
.theme-A .ACT-contact-form-field textarea { 
	font: 400 16px var(--fontA);
	background: hsla(0, 0%, 100%, 0.3);
}
.theme-A .ACT-contact-form-field:before {
    content: " ";
    position: absolute;
    top: 36px;
    left: 0;
    width: 72px;
    height: 3px;
    background: linear-gradient(to left, #f7b796 40%, #3c3c3b 120%);
}
.theme-A.ACT-contact-form .ACT-button-round { background: transparent; }









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



/* 	--------------
	FOOTER
 	-------------- */
.ACT-footer {
    padding: 64px 5vw;
    background: #f8f8f8;
}
.ACT-footer-col {
    width: 33.333%;
    padding: 16px;
    float: left;
}

.ACT-footer-col .ACT-logo { display: flex; }
.ACT-footer-col .ACT-logo .text { width: 240px; }
.ACT-footer-col .ACT-logo .text h3 { font-size: 18px; }
.ACT-footer-col .ACT-logo .text p { font-size: 14px; }
	
}
.ACT-footer-col h3 {
	margin: 0;
	font: 400 16px var(--fontA);
	color: var(--colorB);
}
.ACT-footer-col p,
.ACT-footer-col li,
.ACT-footer-col a {
    display: block;
	margin: 2px 0;
	font: 400 16px var(--fontA);
	color: var(--colorA);
	color: hsl(20, 86%, 64%);
}
.ACT-footer-col a:hover { color: var(--colorB); }
.ACT-footer-col ul { padding: 0; margin: 0; list-style: none; }

.ACT-footer .ACT-social {
	display: flex;
    padding: 8px 0;
	text-align: center;
}
.ACT-footer .ACT-social a {
	margin: 0 16px 0 0;
	cursor: pointer;
}
.ACT-footer .ACT-social svg { 
	height: 24px;
	fill: var(--colorA);
	transition: 0.3s all;
}
.ACT-footer .ACT-social a:hover svg { fill: var(--colorB); transform: scale(1.2); }



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






/* 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;
}








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


	.ACT-cover-fou { height: 1060px; }
	.ACT-cover-fou .ACT-cover-back { height: 760px; }
	.ACT-cover-fou .ACT-cover-circles {
		right: 19vw;
		top: 8vw;
		width: 36vw;
		height: 36vw;
		padding: 12vw 4vw 0;
	}
	.ACT-cover-fou .ACT-cover-circles h1 { font: 300 3.4vw var(--fontA); }
	.ACT-cover-fou .ACT-cover-circles p { font: 300 1.6vw var(--fontA); }


}




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

	.ACT-header { padding: 24px 32px; }
	.ACT-header .ACT-navigation { padding: 16px 0 0 16px; }
	.ACT-logo img { width: 44px; height: 110px; }
	.ACT-logo .text { width: 230px; padding-top: 32px; }
	.ACT-logo .text h3 { font-size: 17px; }
	.ACT-logo .text p { font-size: 14px; }
	.ACT-navigation ul li { padding: 4px 8px; }
	.ACT-navigation ul li a { font-size: 13.5px; }
	.ACT-blog-post { width: 50%; }

}






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

	
	
}





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

}





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

	/* Header */
	.ACT-header { display: block; top: 0; padding: 16px 32px; }
	.ACT-header .ACT-logo img { width: 100px; }
	.ACT-logo { margin: 0 0 16px 0; }
	.ACT-logo .text { width: auto; }
	.ACT-logo .text h3 span { 
		display: block; 
		font-size: 0;
		opacity: 0; 
	}
	
	.ACT-cover-A { height: 400px; }
	
	/* Menu */
	.ACT-header .ACT-navigation { padding: 0; }
	.ACT-navigation .menu-toggle { display: block; }
	.ACT-navigation .menu-container {
		display: none;
		position: fixed;
		left: 0;
		top: 0;
		height: 100vh;
		overflow-y: auto;
		padding: 64px 32px;
		background: var(--colorB);
	}
	.ACT-navigation ul li { display: block; }
	.ACT-navigation ul li:hover > a, 
	.ACT-navigation ul li.current_page_item > a { color: white; }
	.ACT-navigation ul.sub-menu {
		display: block;
		position: relative;
		padding: 4px 4px 16px;
		text-align: left;
		background: transparent;
		opacity: 0.5;
	}
	.ACT-navigation ul.sub-menu li a { color: var(--colorA); }
	.ACT-navigation ul.sub-menu ul.sub-menu { display: none !important; }
	.ACT-navigation ul.menu > li > ul.sub-menu { box-shadow: 0 0 0; }
	
	/* Cover Home */
	.ACT-cover-fou { height: auto; }
	.ACT-cover-fou .ACT-cover-back { height: 100vh; }
	.ACT-cover-fou .flower { height: 35%; }
	.ACT-cover-fou .flower2 { height: 32%; }
	.ACT-cover-fou .fyto { height: 30%; }
	.ACT-cover-fou .ACT-cover-circles {
		top: 35vh;
		width: 62vw;
		height: 62vw;
		padding: 20vw 6vw 0;
	}
	.ACT-cover-fou .ACT-cover-circles h1 { font-size: 6vw; }
	.ACT-cover-fou .ACT-cover-circles p { font-size: 4.4vw; }
	.ACT-cover-icons { width: 100%; padding: 32px 6vw; }
	.ACT-cover-icons .ACT-cover-icon { margin: 0; }
	.ACT-cover-icons .ACT-cover-icon h3 { font-size: 20px; }
	.ACT-cover-icons .ACT-cover-icon h3.hovered {
		position: relative;
		left: 0;
		margin: 0;
		font-size: 15px;
	}
	
	/* Content Box A */
	.ACT-content-box-A { display: block; }
	.ACT-content-box-A .ACT-left,
	.ACT-content-box-A .ACT-right { 
		left: 0;
		width: 100%;
		padding: 32px 7vw;
		animation: unset;
	}
	
	/* Home Pages A */
	.ACT-pages-A { padding: 48px 7vw; }
	.ACT-pages-A h2 { letter-spacing: 12px; }
	.ACT-pages-A .ACT-page { 
		display: flex;
		align-items: center;
		width: 42vw;
		height: 42vw;
	}
	.ACT-pages-A .ACT-page img { opacity: 0.2; }
	.ACT-pages-A .ACT-page h3 { width: 100%; margin: 0; font-size: 16px; }
	.ACT-pages-A .ACT-pages-box-A,
	.ACT-pages-A .ACT-pages-box-B {
		right: -15vw;
		top: -15vw;
		width: 30vw;
		height: 30vw;
		transform: rotate(45deg);
		background: hsla(0, 0%, 0%, 0.25);
	}
	.ACT-pages-A .ACT-pages-box-B { 
		top: unset; 
		left: -15vw;
		bottom: -15vw;
		background: white;
	}
	
	
	
	/* Home Doctor */
	.ACT-doctor-home { padding: 16px 7vw; }
	.ACT-doctor-home img.iatreio,
	.ACT-doctor-home svg {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		height: 35vh;
	}
	.ACT-doctor-home svg { position: absolute; width: 90vw; }
	.ACT-doctor-home { text-align: left; }
	.ACT-doctor-home img.doctor { width: 55vw; }
	.ACT-doctor-home h2 { text-align: right; font-size: 120px; line-height: 0.9; }
	.ACT-doctor-home .text { width: auto; margin: 48px 0 0 0; }
	
	/* Web TV */
	.ACT-webtv { padding: 48px 7vw 32px; }
	.ACT-webtv img { max-width: 100%; }
	.ACT-seperator { margin: 48px 10%; }
	
	
	/* Doctor Page */
	.ACT-cover-doctor { padding: 236px 0 0; }
	.ACT-cover-doctor .ACT-left { width: 40%; }
	.ACT-cover-doctor .ACT-right { width: 60%; }
	.ACT-cover-doctor.open .ACT-photo,
	.ACT-cover-doctor.open .ACT-circle {
		left: calc(40% - 165px);
		top: 300px;
		width: 300px;
		height: 300px;
	}
	.ACT-cover-doctor .ACT-text {
		position: absolute;
		left: unset;
		right: 16px;
		top: 230px;
		width: 100%;
		text-align: right;
	}
	.ACT-cover-doctor.open .ACT-text h1 {
		position: absolute; 
	    top: 390px;
		left: 10%;
		font-size: 64px;
	}
	.ACT-cover-doctor .ACT-circle-2 {
		top: 720px;
		width: 60vw;
		height: 60vw;
	}
	.ACT-bottom-A p strong { display: block; margin-top: 16px; }
	.ACT-cover-doctor .ACT-bottom .text { padding: 32px 16px; }
	.ACT-content-A.ACT-doctor-content { padding: 32px 24px; }
	
	/* Page */
	.ACT-cover-A .ACT-text { max-width: 100%; width: 80%; padding: 24px 7% 0; }
	.ACT-cover-A .ACT-text h1 { display: block; font-size: 30px; }
	.ACT-content-A { padding: 32px 24px; }
	.ACT-cover-A img { width: 100%; }
	
	.ACT-content-inside-box-A {
		position: relative;
    	width: 100%;
		height: auto;
		padding: 48px 5% 32px;
    	background: transparent;
	}
	.ACT-content-inside-box-A .ACT-text { left: 0; }
	.ACT-cover-inside .ACT-flex picture.pic-A {
		position: absolute;
		right: 0;
		top: 32px;
		height: 500px;
	}
	.ACT-cover-inside .ACT-flex img.image-A {
		opacity: 0.5 !important;
		-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 75%);
		mask-image: linear-gradient(to bottom, transparent 0%, black 75%);
	}
	.ACT-cover-inside .ACT-flex picture.pic-B { width: 100%; height: 400px; }
	.ACT-cover-inside .ACT-content-inside-back,
	.ACT-cover-inside.open2 .ACT-content-inside-back { height: 30%; }
	.ACT-content-inside-box-B { 
		top: 0;
		width: 100%;
		height: auto;
		padding: 16px 10% 32px;
	}
	.ACT-inside-content { margin-top: 0; }
	
	
	/* Blog */
	.ACT-blog-post { width: 100%; }
	.ACT-blog-post .title { padding: 0 16px; }
	
	
	
	/* Sxima */
	.ACT-sxima { flex-flow: column; }
	.ACT-sxima-box { width: 100%; margin-bottom: 32px; }
	.ACT-sxima img { width: 100%; }

	
	/* Footer */
	.ACT-footer { padding: 32px 5vw; }
	.ACT-footer-col { width: 100%; text-align: center; }
	.ACT-footer .ACT-social { padding: 8px; }
	.ACT-footer .ACT-social a { flex: 1 1 auto; }
	.ACT-footer-created span { display: block; }
	
}



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

	

}



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


}











body img.ACT-fade { opacity: 0; transition: 1s opacity; }

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



/* **************************************************************** */
/* Extras */
/* **************************************************************** */

.stat-cards {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.stat-card {
	display: flex;
	flex-direction: column;
	width: 33%;
	padding-left: 1vw;
	padding-right: 1vw;
	gap: 0.5rem;
}


.stat-card:first-child {
    border-right: 3px solid var(--colorA);
}

.stat-card:last-child {
    border-left: 3px solid var(--colorA);
}

.stat-card span {
	text-align: center;
	font: 400 3rem var(--fontC);
}

.stat-card p {
	text-align: center;
	color: var(--colorB);
}