/*--------------------------------------------------------------
>>> 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');
@import url('https://fonts.googleapis.com/css?family=Manrope:300,400,700,900&display=swap&subset=greek');
@import url('https://fonts.googleapis.com/css?family=Geologica:300,400,700,900&display=swap&subset=greek');
@import url('https://fonts.googleapis.com/css?family=Sofia+Sans+Condensed:300,400,500,700,900,1000&display=swap&subset=greek');
*/
 
/* ┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅ Roboto */
@font-face {
    font-family: 'Roboto';
    src: url(fonts/Roboto-Light.ttf);
    font-weight: 300;
	font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url(fonts/Roboto-Regular.ttf);
    font-weight: 400;
	font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url(fonts/Roboto-Bold.ttf);
    font-weight: 700;
	font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url(fonts/Roboto-Black.ttf);
    font-weight: 900;
	font-display: swap;
}


@font-face {
    font-family: 'Ubuntu';
    src: url(fonts/Ubuntu-B.ttf);
    font-weight: 700;
	font-display: swap;
}




/* Root */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
:root {

    --fontA: 'Roboto', sans-serif;
    --fontB: 'Ubuntu', 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);



	
	--dd-overlay: rgba(0, 0, 0, .75);
	--dd-background: #FFFFFF;
	--dd-text1: #333333;
	--dd-text2: #FFFFFF;
	--dd-primary: #FD4741;
	--dd-gradient: linear-gradient(45deg, #e61e68 0%, #FD4741 100%);
	--dd-radius: .35em;
	--dd-shadow: 0 0 2.5em rgba(0, 0, 0, 0.1);
	--dd-range: rgba(0, 0, 0, 0.05);
	
	--dd-primary: #4a5a46;
	--dd-gradient: #4a5a46;
	--dd-monthBackground: #4a5a46 !important;
	--dd-confirmButtonBackground: #4a5a46 !important;
	--dd-selectedBackground: #4a5a46 !important;
	--dd-shadow: 0 0 2.5em rgba(0,0,0,0.1) !important;
	--dd-shadow: 0 0 2.5em rgba(0,0,0,0.3) !important;


}

div.datedropper.primary:before, 
div.datedropper.primary .pick-submit, 
div.datedropper.primary .pick-lg-b .pick-sl:before, 
div.datedropper.primary .pick-m, 
div.datedropper.primary .pick-lg-h { background: var(--colorA); }

div.datedropper.primary .pick-y.pick-jump, 
div.datedropper.primary .pick li span, 
div.datedropper.primary .pick-lg-b .pick-wke, 
div.datedropper.primary .pick-btn { color: var(--colorA); }


#datedropper {
	min-width: 264px;
}
.dd__block[data-key=d] .dd__view>div:first-of-type {
    font-size: 64px;
    margin-top: 8px;
}
.dd__block[data-key=d] .dd__view>div:last-of-type {
	opacity: 0.5;
}
.dd__block[data-key=y] .dd__view>div { margin: 8px 0; font-weight: 300; }


 
/* 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-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;
}
.A-content img { max-width: 100%; height: auto; }
[data-show="1"] { cursor: zoom-in; }



/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ HEADER */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
header {
	position: relative;
    text-align: center;
	padding: 48px 64px;
	z-index: 999;
}
header .A-flex {
	flex-flow: column;
    align-items: center;
}
header .A-logo {
	display: inline-block;
	position: relative;
    width: auto;
	margin: 0;
	transition: 1s all;
	z-index: 99;
}
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: 40px;
    fill: black;
    stroke: black;
    stroke-width: 12px;
}
header nav {
    position: relative;
	display: block;
    width: 100%;
    margin: 12px 0 0;
    text-align: right;
	transition: 1s all;
    z-index: 9;
}
header nav.closed { left: -360px; }
header nav ul {
	width: auto;
    padding: 0;
    margin: 0;
    list-style: none;
	text-align: center;
}
header nav ul li {
    display: inline-block;
    position: relative;
    width: auto;
    padding: 0px;
    margin: 4px 32px;
    cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
header nav ul li a {
    position: relative;
    font: 400 20px var(--fontA);
	text-decoration: none;
	color: var(--colorD);
    z-index: 99;
}
header nav ul li:hover > a,
header nav ul li.current_page_item > a {
    color: #4A5A46;
    opacity: 1;
}
header nav ul.sub-menu { 
	display: none;
	position: absolute;
	width: 420px;
	padding: 16px 0px;
	text-align: left;
	background: white;
	box-shadow: 0 8px 16px rgba(0,0,0,0.15);
	z-index: 9999;
}
Xheader nav ul.sub-menu .menu-item-has-children:not(:first-child) {
	border-top: 1px solid #DDD;
}
header nav ul.sub-menu ul.sub-menu {
	position: relative;
    width: 100%;
	padding: 0 12px 12px 16px;
	box-shadow: unset;
}
header nav ul.sub-menu li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 4px 0 4px 16px;
}
header nav ul.sub-menu li a {
	font-size: 18px;
	letter-spacing: 0;
}
header nav ul.sub-menu ul.sub-menu li a {
	font-size: 16px;
	font-weight: 400;
}
header nav ul li:hover ul.sub-menu { display: block; }

nav.A-breadcrumb {}

nav.A-breadc 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; }


/* PHONE */
.A-phone {
	display: flex;
	position: absolute;
    top: 36px;
    right: calc(5% + 200px);
}
.A-phone a {
	font-size: 21px;
	font-weight: 900;
	text-decoration: unset;
}
.A-phone img {
	position: relative;
	top: -2px;
	margin-right: 8px;
}


/* SEARCH */
.A-search {
	display: flex;
	position: absolute;
    top: 32px;
    right: 5%;
}
.A-search:hover {opacity: 1;}
.A-search form { display: flex; }
.A-search label span { display: none; }
.A-search input[type="search"] {
    width: 180px;
    padding: 6px 32px 6px 8px;
    font: 400 14px var(--fontA);
    background: var(--colorC);
    border: 0;
    outline: 0;
    border-radius: 100px;
}
.A-search .search-submit {
    top: 2px;
    margin-left: -34px;
    font-size: 14px;
    opacity: 0.7;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.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 {
    position: relative;
    top: 2px;
	height: 16px;
	pointer-events: none;
	fill: white;
	stroke: white;
	stroke-width: 8;
}


.search-result-list {
	padding: 0;
	list-style: none;
}
.search-result-list li { margin-bottom: 16px; }
.search-result-list li > a {
	display: flex;
    align-items: center;
}
.search-result-list li .img-placeholder,
.search-result-list li img {
	flex: 0 0 auto;
	width: 100px;
	height: 100px;
	object-fit: cover;
	margin-right: 16px;
	background: #DDD;
}
.search-result-list li h3 { margin: 0 0 12px; }
.search-result-list li p { margin: 0; }


.A-404,
.A-SEARCH-RESULTS { padding: 32px 10%; }
.A-SEARCH-RESULTS ul {
	padding: 0;
	list-style: none;
}
.A-SEARCH-RESULTS .pagination { margin-top: 64px; }
.A-SEARCH-RESULTS .pagination > .screen-reader-text {
	display: none;
}
.A-SEARCH-RESULTS .nav-links {
	display: flex;
	align-items: center;
	place-content: center;
}
.A-SEARCH-RESULTS .nav-links span,
.A-SEARCH-RESULTS .nav-links a {
	margin: 0 4px;
	font-size: 18px;
	line-height: 1;
}
.A-SEARCH-RESULTS .page-numbers {
	margin: 4px;
	padding: 6px 12px;
	background: var(--colorA);
	color: white;
}
.A-SEARCH-RESULTS .prev,
.A-SEARCH-RESULTS .next {
	background: transparent;
	color: var(--colorA);
}
.A-SEARCH-RESULTS .page-numbers:hover {
	background: var(--colorB);
	color: white;
}



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


.Aitem .more,
.A-more {
	display: inline-block;
	position: relative;
    width: 30px;
	margin-top: 32px;
    padding: 6px 0;
	font: 700 18px var(--fontA);
    text-align: center;
	line-height: 1;
	background: var(--colorA);
	color: white;
	border-radius: 40px;
	cursor: pointer;
}
.A-more a { color: white; }
.Aitem .more:hover,
.A-more:hover { background: black; }


.Apic { position: relative; }
.Apic img {
	width: 100%;
	height: 100%;
	object-fit: cover;

}


/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ MAIN */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
body { color: #606060; }
h1 {
	font: 700 56px var(--fontA);
	color: var(--colorA);
}
h2 {
	font: 400 44px var(--fontA);
	color: var(--colorA);
}
h2 strong { font-weight: 900; }
h3 {
	font: 700 32px var(--fontA);
	color: var(--colorA);
}


.Aitem h3 {
	margin-top: 24px;
	font: 400 24px var(--fontA);
	color: var(--colorB);
}
.Aitem .text { font-size: 18px; }
.Aitem .image { height: 360px; }
.Aitem .image img {
	height: 100%;
	object-fit: cover;
}
.Aposts[data-navi="sides"] .Anavi { top: 180px; }
.Aposts[data-navi="sides"] .Anavi svg { width: 24px; height: 24px; }







.home-cover {
	margin-top: 64px;
	padding: 5vw 6% 0 10%;
}
.home-cover .Acolumn {
	flex: 0 0 50%;
}
.home-cover h1 {
	width: 760px;
	margin: 0 0 32px;
	font: 700 56px var(--fontA);
	color: var(--colorA);
}
.home-cover h2 {
	margin: 0;
	font: 400 40px var(--fontA);
	color: var(--colorC);
}
.home-cover .Col2 { position: relative; padding: 64px 0 200px; }
.home-cover .photo img { border-radius: 600px; }
.home-cover .photo-1 {
	position: relative;
	left: -8vw;
	width: 35vw;
	height: 35vw;
	transform: scale(0);
	transition: 1s all;
	z-index: 9;
}
.home-cover .photo-2 {
	position: absolute;
	top: 6.5vw;
	left: 20vw;
	width: 23vw;
	height: 23vw;
	transform: scale(0);
	transition: 1s all 0.3s;
	z-index: 9;
}
.home-cover .photo-3 {
	position: absolute;
	top: 26vw;
	left: 16vw;
	width: 19vw;
	height: 19vw;
	transform: scale(0);
	transition: 1s all 0.6s;
	z-index: 9;
}
.home-cover .line-1 {
	position: absolute;
	left: 23vw;
	top: -9vw;
	width: 2px;
	height: 0vw;
	background: var(--colorA);
	transition: 1s all 0.4s;
}
.home-cover .line-2 {
	position: absolute;
	left: 34vw;
	top: 12vw;
	width: 2px;
	height: 0vw;
	background: var(--colorA);
	transition: 0.6s all;
}
.home-cover .gfx-1 {
	position: absolute;
	left: 20.1vw;
	bottom: -2.5vw;
	width: 3vw;
	height: auto;
}
.home-cover .circle-1 {
	left: 34.1vw;
	top: 12vw;
	opacity: 0;
}

/* OPEN 1 */
.home-cover.open1 .line-1 { height: 65vw; }
.home-cover.open1 .line-2 { height: 15vw; top: -3vw; }
.home-cover.open1 .circle-1 {
	animation: 2s cir1 forwards 0.25s;
}

/* OPEN 2 */
.home-cover.open .photo-1,
.home-cover.open .photo-2,
.home-cover.open .photo-3 { transform: scale(1); }


@keyframes cir1 {
	0%   { top: 12vw; opacity: 0; }
	50%  { top: -5vw; opacity: 1; }
	100% { top: 1vw; opacity: 1; }
}
@keyframes cir0a {
	0%   { top: 40vw; opacity: 0; }
	50%  { top: -8vw; opacity: 1; }
	70%  { top: -9vw; opacity: 1; }
	100% { top: 40vw; opacity: 10; }
}
@keyframes cir0b {
	0%   { top: 40vw; opacity: 0; }
	50%  { top: -6vw; opacity: 1; }
	70%  { top: -5vw; opacity: 1; }
	100% { top: 40vw; opacity: 10; }
}
@keyframes cir0c {
	0%   { top: 40vw; opacity: 0; }
	50%  { top: -4vw; opacity: 1; }
	70%  { top: -6vw; opacity: 1; }
	100% { top: 40vw; opacity: 10; }
}






.circle-0,
.circle-1 {
	position: absolute;
	width: 28px;
	height: 28px;
	background: #3B3836;
	border-radius: 100px;
}
section.circle2,
section.circle1 {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.circle1:after {
	content: "";
	position: absolute;
    left: calc(50% - 14px);
    top: -24px;
	width: 28px;
	height: 28px;
	background: #3B3836;
	border-radius: 100px;
}
.circle2:after {
	content: "";
	position: absolute;
    left: calc(50% - 7.5vw);
    bottom: -8vw;
	width: 15vw;
	height: 15vw;
	background: var(--colorA);
	border-radius: 500px;
	opacity: 0.5;
}




.doctor-c { position: relative; }
.doctor-c img {
	width: 41.5vw;
	height: 41.5vw;
	border-radius: 500px;
	transform: scale(0.7);
	transition: 0.6s all;
}
.doctor-c .circle1 { transform: rotate(-180deg); opacity: 0; }
.doctor-c .circle2 { transform: rotate(30deg) scale(0.6); opacity: 0; }

.revealed-bottom.doctor-c img { transform: scale(1); }
.revealed-bottom.doctor-c .circle1 { animation: 2s doc-c1 forwards; }
.revealed-bottom.doctor-c .circle2 { animation: 2s doc-c2 forwards 0.3s; }

@keyframes doc-c1 {
	0%   { transform: rotate(-180deg); opacity: 0; }
	60%  { transform: rotate(50deg); opacity: 1; }
	100% { transform: rotate(42deg); opacity: 1; }
}
@keyframes doc-c2 {
	0%   { transform: rotate(90deg) scale(0.6); opacity: 0; }
	60%  { transform: rotate(-30deg) scale(1); opacity: 1; }
	100% { transform: rotate(-25deg) scale(1); opacity: 1; }
}




.home-doc { padding: 0 5% 96px 10%; }
.home-doc .Acolumn {
	flex: 1;
	position: relative;
}
.home-doc .Col2 { padding: 15vw 20% 0 8%; }
.home-doc .Col1 { flex: 0 0 41.5vw; }
.home-doc p:not(.A-more):first-child {
	margin: 0 0 48px;
	font: 300 22px var(--fontA);
	color: #3B3836;
}
.home-doc p:not(.A-more) {
	margin: 0;
	font: 700 24px var(--fontA);
	color: var(--colorC);
}
.home-doc h2 { margin: 0 0 32px; }





.home-icons {
	margin-top: 64px;
	padding: 64px 8vw 48px;
	background: var(--colorA);
	color: var(--colorB);
}
.home-icons .Acolumn {
	flex: 0 0 25%;
	padding: 0 0% 0 5%;
	cursor: pointer;
}
.home-icons img {
	width: 120px;
	height: 120px;
	object-fit: contain;
}
.home-icons .Acolumn h3 { font-size: 28px; color: var(--colorB); }
.home-icons .Acolumn h3 a {
	font-size: 28px;
	color: var(--colorB);
}
.home-icons .Acolumn:hover h3 a,
.home-icons .Acolumn:hover h3 { color: white; }
.home-icons .Acolumn:hover img { filter: brightness(2); }
.home-icons-B { margin: 0 -10vw; }

.home-gfx-2 {
	position: relative;
	left: 75vw;
	top: -1px;
	width: 5vw;
}

.home-A { align-items: center; margin: 96px 0; padding: 0; }
.home-A .Col2,
.home-A .Col4 {
	flex: 0 0 5vw;
	transition: 2s all;
}
.home-A .Col1,
.home-A .Col5 {
	flex: 0 0 24vw;
	position: relative;
	height: 38vw;
	overflow: hidden;
	background: white;
	z-index: 9;
	transition: 2s all;
}
.home-A .Col3 {
	flex: 1;
	text-align: center;
	padding: 0 16px;
	margin: 0 3.5vw;
	transition: 2s all;
}
.home-A .Col1 {
	border-right: 2px solid var(--colorA);
}
.home-A .Col5 {
	border-left: 2px solid var(--colorA);
}
.home-A .Apic {
	width: 25.5vw;
	height: 25.5vw;
}
.home-A img { border-radius: 700px; }
.home-A h2 {
	margin: 0 0 40px;
	font: 300 46px var(--fontA);
	color: var(--colorA);
}
.home-A h3 {
	margin: 0 0 32px;
	font: 700 40px var(--fontA);
	color: var(--colorC);
}
.home-A p:not(.A-more) {
	margin: 0;
	font: 400 24px var(--fontA);
	color: var(--colorA);
}
.home-A p strong { color: #2A2A2F; }
.home-A .Col2 .Apic {
	position: relative;
	margin-left: -20vw;
	transition: 2s all;
}
.home-A .Col4 .Apic {
	position: relative;
	margin-right: -20vw;
	transition: 2s all;
}
.home-A .Col1 .circle {
	position: absolute;
	right: -5vw;
	bottom: 3vw;
	width: 10.5vw;
	height: 10.5vw;
	background: var(--colorA);
	border-radius: 500px;
}
.home-A .Col5 .circle {
	position: absolute;
	left: -7vw;
	top: 2.5vw;
	width: 14.5vw;
	height: 14.5vw;
	background: var(--colorB);
	border-radius: 500px;
}


.revealed-mid.home-A .Col1,
.revealed-mid.home-A .Col5 { flex: 0 0 13vw; }
.revealed-mid.home-A .Col2,
.revealed-mid.home-A .Col4 { flex: 0 0 15%; }
.revealed-mid.home-A .Col2 .Apic { margin:  0 0 0 -6vw; }
.revealed-mid.home-A .Col4 .Apic { margin: 0 -6vw 0 0; }
.revealed-mid.home-A .Col3 { margin: 0vw; }

.revealed-mid {}




h2.gonimotita { margin: 12vw 0 3vw; margin-left: calc(85% - 440px); }

.home-B { position: relative; width: 95%; margin: 0 0 96px; }
.home-B .Acolumn {
	flex: 0 0 28vw;
	position: relative;
	margin-left: 8px;
	text-align: center;
    perspective: 800px;
}
.home-B .Col1 { flex: 1; padding-top: 6vw; padding-right: 1vw; }
.home-B .Col2 .Apic,
.home-B .Col3 .Apic {
	width: 28vw;
	height: 28vw;
	margin: 0 auto;
	transition: 0.6s all;
	cursor: pointer;
}
.home-B .Col2 img,
.home-B .Col3 img {
	border-radius: 700px;
}
.home-B h3 {
	font: 700 33px var(--fontA);
	color: var(--colorD);
}
.home-B .gfx-4 {
	position: absolute;
	left: 10.6vw;
	top: -8.6vw;
	width: 16vw;
	height: 35vw;
	z-index: 9;
}
.home-B .gfx-4 img { object-fit: contain; }
.home-B .Col2 .Apic:hover {
	transform: rotateX(20deg) rotateY(15deg);
}
.home-B .Col3 .Apic:hover {
	transform: rotateX(20deg) rotateY(-15deg);
}

.home-B .Col2 { left: 15vw; opacity: 0; transition: 2s all; }
.home-B .Col3 { left: 30vw; opacity: 0; transition: 2s all; }
.revealed-mid.home-B .Col2 { left: 0; opacity: 1; }
.revealed-mid.home-B .Col3 { left: 0; opacity: 1; }


.home-blog { margin-bottom: 96px; }
.home-blog .title-A {
	padding: 0 16px;
	margin: 0 0 96px;
}
.home-blog .Aposts {
	margin: 0 -96px;
}



.doctor { margin: 0 -10vw; padding: 3vw 5vw 96px 10vw; }
.doctor .Acolumn {
	flex: 1;
	position: relative;
}
.doctor .Col1 { flex: 0 0 41.5vw; }
.doctor .Col2 {
	padding: 5vw 0% 0 5vw;
}
.doctor .Col2 p {
	position: relative;
	padding: 16px 0;
	margin: 0;
	font: 400 24px var(--fontA);
}
.doctor .Col2 p:before {
	content: "";
	position: absolute;
	top: 0;
	left: -3vw;
	width: 3px;
	height: 100%;
	background: var(--colorA);
}
.doctor .Col2 p:nth-child(3) { padding-top: 0; }
.doctor .Col2 p:last-child { padding-bottom: 0; }
.doctor h1 { margin: 0 0 48px; }
.doctor h2 {
	margin: 0 0 64px;
	font-size: 41px;
	color: var(--colorC);
}
.doctor .gfx6 {
	position: absolute;
	left: -10vw;
	bottom: -80px;
	width: auto;
	height: 220px;
}
.doctor .gfx5 {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 56px;
	height: 56px;
}



.A-page-cover {
	display: flex;
	position: relative;
}
.A-page-cover h1 {
	flex: 0 0 670px;
	position: relative;
	padding: 9vw 1vw 0 8vw;
	border-right: 3px solid var(--colorA);
	z-index: 9;
}
.A-page-cover figure {
	flex: 1;
	position: relative;
	height: 35.7vw;
	margin: 7vw 0 15vw;
}
.A-page-cover figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.A-page-cover .circle-1 {
	position: absolute;
	right: 20vw;
	top: calc(7vw - 28px);
	width: 28px;
	height: 28px;
}
.A-page-cover .circle-2,
.A-page-cover .circle-3 {
	position: absolute;
	right: 8vw;
	bottom: 5.5vw;
	width: 15vw;
	height: 15vw;
	background: #929C90;
	opacity: 0.5;
	border-radius: 500px;
	mix-blend-mode: multiply;
}
.A-page-cover .circle-3 {
	right: unset;
	left: calc(670px - 7.5vw);
	bottom: 35%;
	background: #C1AD9A;
	mix-blend-mode: normal;
}
.A-page-cover .gfx-1 img {
	width: 100%;
	height: 100%;
}
.A-page-cover .gfx-1 {
	position: absolute;
	left: calc(670px - 3vw);
	bottom: 7vw;
	width: 3vw;
	height: auto;
}


.A-page-content { padding: 0 10vw 96px; }
.A-page-content h2 { font-weight: 700; }
.A-page-content li { margin: 24px 0; }
.A-page-content li li { margin: 12px 0; }
.A-page-content li,
.A-page-content a,
.A-page-content p {
    font-size: 18px;
    line-height: 1.3;
}

.A-page-content strong { color: black; }

.gray {
	margin: 48px -10vw;
	padding: 48px 10vw;
	background: #F3EFEB;
}
.gray *:first-child { margin-top: 0; }


.A-page-content .contact-1 h2 {
	font-weight: 300;
}
.A-page-content .contact-1 h2 strong {
	color: var(--colorA);
}


.A-post-cover h1 {
	padding: 9vw 1vw 0 6vw;
	font-size: 48px;
}
.A-post-content { padding: 0 15vw 96px; }
.A-post-content .gray { margin: 48px -15vw; padding: 48px 15vw; }
.A-post-content .content-A .Col1 { flex: 0 0 20vw; }
.A-post-content .content-A .Col1 .Apic {
    left: -5vw;
    width: calc(100% + 5vw);
	margin-top: 1vw;
}



.content-A {
	margin-bottom: 64px;
}
.content-A .Col1 {
	flex: 0 0 24vw;
	position: relative;
	margin-right: 48px;
}
.content-A .Col1 .Apic {
	position: absolute;
	left: -10vw;
	width: calc(100% + 10vw);
    height: 130%;
	margin-top: 5vw;
	z-index: -1;
}
.content-A .Col1 .Apic img {
	object-fit: contain;
	object-position: top;
}

.content-B { position: relative; margin: 64px 0 96px; }
.content-B .Col1 .gfx6 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.content-B .Col1 .gfx6 {
	position: absolute;
	left: -10vw;
	bottom: -8vw;
	width: 7vw;
	height: 14vw;
}
.content-B .Col2 {
	flex: 0 0 36vw;
	position: relative;
	margin-left: 2vw;
	padding-top: 5vw;
}
.content-B .Col2 .Apic { width: 117%; }
.content-B .Col2 .Apic img { border-radius: 600px; }
.content-B .Col2 .circle-1 {
	position: absolute;
	right: 2.5vw;
	top: 7vw;
	width: 28px;
}
.content-B .Col2 .circle-2 {
	position: absolute;
	right: 1vw;
	bottom: 2vw;
	width: 15vw;
	height: 15vw;
	background: var(--colorA);
	opacity: 0.5;
	border-radius: 500px;
}


.title-A {
	display: flex;
	align-items: flex-end;
	margin: 64px 0 48px;
}
.title-A h2 {
	flex: 0 0 auto;
	margin: 0;
}
.title-A .line {
	flex: 1;
	width: 100%;
	height: 3px;
	margin: 0 24px 4px;
	background: var(--colorC);
}
.title-A p {
	flex: 0 0 auto;
	margin: 0;
	font: 300 22px var(--fontA);
}



.gallery { margin: 0 -64px 64px; }
.gallery .Apic {
	height: 300px;
}


.hero-A .Col1,
.contact .Col1 {
	flex: 0 0 50%;
	position: relative;
	padding-top: 3vw;
	border-right: 3px solid var(--colorA);
	background: white;
	z-index: 9;
}
.contact-2 .Col1 {
	margin-top: -15vw;
	background: transparent;
}
.hero-A .Col1 { flex: 0 0 auto; width: 55%; padding-right: 15%; }
.hero-A h2 {
	margin: 0 0 40px;
	font-size: 34px;
	font-weight: 400;
	color: var(--colorD);
}
.hero-A h1 {
	position: relative;
	font-size: 52px;
	z-index: 99;
}
.hero-A p { position: relative; }
.hero-A p:before {
	content: "i";
	position: absolute;
    left: -54px;
    top: 2px;
    padding: 1px;
    width: 30px;
    height: 30px;
	border-radius: 100px;
	border: 4px solid black;
    font-size: 26px;
    font-weight: 700;
    color: black;
	text-align: center;
}
.hero-A .Col1 h4,
.contact .Col1 p,
.contact .Col1 h4 {
	font-size: 24px;
	font-weight: 700;
	color: #C1AD9A;
}
.contact .Col1 h4 { margin-bottom: 96px; }
.contact .Col1 h3 a,
.contact .Col1 h3 {
	margin-bottom: 8vw;
	font-size: 46px;
	font-weight: 300;
	color: var(--colorA);
}
.contact .Col1 h3 a:hover { color: black; }

.hero-A .doctor-c,
.contact .doctor-c { position: relative; left: -3vw; }
.hero-A .Col2,
.contact .Col2 { position: relative; padding-top: 3vw; }
.contact .Col2 h2 {
	padding: 3vw 0 0 10vw;
	margin: 24px 0 24px;
	font-weight: 300;
}
.wp-block-contact-form-7-contact-form-selector {
	padding: 0 0 0 10vw;
}
.contact form { display: flex; flex-flow: row wrap; }
.contact label { font-size: 17px; }
.contact .form-field { width: 100%; margin-right: 16px; }
.contact .form-field p { margin: 0; }
.contact .form-submit {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.contact .form-submit p { display: inline-block; }
.contact .half { width: calc(50% - 16px); }
.contact textarea { border-radius: 48px; }
.contact .gfx-4 {
	position: relative;
    left: -1.5vw;
    width: 12vw;
    margin-bottom: -16vw;
	z-index: 9;
}
.contact .gfx-3 {
	position: relative;
	left: -10vw;
	width: 29vw;
}

.hero-A .gfx-1,
.contact .gfx-1 {
	position: absolute;
	right: -0.1vw;
	bottom: 28vw;
	width: 4vw;
	height: 7vw;
}
.hero-A .gfx-8 img,
.contact .gfx-8 img,
.hero-A .gfx-1 img,
.contact .gfx-1 img { object-fit: contain; }
.hero-A .gfx-8,
.contact .gfx-8 {
	position: absolute;
	right: -0.3vw;
	top: 2.5vw;
	width: 8vw;
	height: 16vw;
}
.hero-A .gfx-1 { bottom: 5%; }

.hero-A .doctor-c,
.hero-A .doctor-c img,
.contact .doctor-c,
.contact .doctor-c img {
	width: 38vw;
	height: 38vw;
	border-radius: 500px;
}
.hero-A .revealed-bottom.doctor-c .circle2,
.contact .revealed-bottom.doctor-c .circle2 { animation: 2s doc-c2c forwards 0.3s; }
@keyframes doc-c2c {
	0%   { transform: rotate(90deg) scale(0.6); opacity: 0; }
	60%  { transform: rotate(-85deg) scale(1); opacity: 1; }
	100% { transform: rotate(-75deg) scale(1); opacity: 1; }
}




.page-grid .Aitem .image { height: 260px; }
.page-grid .Aitem h3 { margin-top: 12px; }




.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; padding: 48px 10vw;  }
.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: 48px;
	padding-right: 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-archive .A-list > a img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}






/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ FOOTER */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
.A-footer {
	display: flex;
    padding: 64px 0;
    background: var(--colorA);
}
.A-footer-col {
    width: 25%;
    padding: 0 5vw;
    float: left;
}
.A-footer-col:nth-child(2),
.A-footer-col:nth-child(3) {
	border-right: 2px solid white;
}
.A-footer-col .A-logo {
	width: 100%;
	text-align: center;
}
.A-footer-col .A-logo img {
    width: 100%;
	max-width: 300px;
	max-height: 160px;
    height: auto;
    padding: 0 32px;
	object-fit: contain;
    object-position: left;
}
.A-footer-col h3 {
	margin: 0 0 24px;
	font: 700 19px 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 19px var(--fontA);
	color: white;
}
.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; }
.A-contact-row {
	display: flex;
	margin: 16px 0;
}
.A-contact-row svg {
	height: 24px;
	margin-right: 8px;
	fill: white;
	stroke: white;
}


footer a { text-decoration: none; }
footer .A-social {
	display: flex;
	text-align: center;
}
footer .A-social a {
	margin: 0 16px 0 0;
	cursor: pointer;
}
footer .A-social svg { 
	height: 24px;
	fill: white;
	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;
}


.A-footer .small { font-size: 16px; }



.A-app-top {
	padding: 96px 5%;
	text-align: center;
}
.A-app-top .A-switch p {
	opacity: 0;
	transition: 0.4s all;
	transform: translateY(100px);
}
.A-app-top.on .A-switch p { opacity: 1; transform: translateY(0px); }
.A-app-top .A-switch p:nth-child(1) { transition-delay: 0.1s; }
.A-app-top .A-switch p:nth-child(2) { transition-delay: 0.2s; }
.A-app-top .A-switch p:nth-child(3) { transition-delay: 0.3s; }



.A-switch {
	display: flex;
	place-content: center;
}
.A-switch p {
	margin: 0 8px 0 0;
	padding: 6px 24px;
	background: hsl(0, 0%, 65%);
	color: white;
	border-radius: 50px;
	cursor: pointer;
}
.A-switch p:hover,
.A-switch p.on {
	background: var(--colorA);
	color: white;
}


.A-app-fields {
	display: flex;
	flex-flow: row wrap;
	opacity: 0;
}
.A-app-fields.on {
	display: flex;
    place-content: center;
	opacity: 1;
}
.A-app-fields.on .field { opacity: 1; }
.A-app-fields .field:nth-child(1) { transition-delay: 0.2s; }
.A-app-fields .field:nth-child(2) { transition-delay: 0.4s; }
.A-app-fields .field:nth-child(3) { transition-delay: 0.6s; }
.A-app-fields .field:nth-child(4) { transition-delay: 0.8s; }


.A-app-fields .field {
	display: flex;
	flex-flow: column;
	flex: 0 0 auto;
	width: 33.333%;
	padding: 0 2%;
	text-align: center;
	border-right: 1px solid var(--colorA);
	opacity: 0;
	transition: 0.3s all;
}
.A-app-fields .field.last,
.A-app-fields .field:last-child { border: 0; }
.A-app-fields .field:last-child { border: 0; }
.A-app-fields .field p { margin: 0; font-size: 22px; }
.A-app-fields .field .label {
	display: flex;
	align-items: center;
	place-content: center;
	min-height: 56px;
	margin-bottom: 24px;
	font-size: 22px;
}
.A-app-fields .field .label em {
	font-style: normal;
	font-size: 16px;
}
.A-app-fields .field .control {
	display: flex;
	align-items: center;
	place-content: center;
	position: relative;
    width: fit-content;
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.A-app-fields .field input:focus {
	border: 0;
	outline: 0;
	box-shadow: unset;
}
.A-app-fields .field .labels label {
    display: inline-block;
	width: 96px;
	text-align: center;
}
.A-app-fields .field .note {
	margin-top: 24px;
	text-align: left;
	font-size: 22px;
}
.note {
	font-size: 22px;
}

.A-app-fields .field button,
.A-app-fields .field .control div,
.A-app-fields .field input {
	position: relative;
    max-width: 100%;
	padding: 8px 32px;
	background: var(--colorA);
	color: white;
	border: 0;
	font-size: 22px;
	text-align: center;
	border-radius: 48px;
	cursor: pointer;
}
.A-app-fields .field input {
	width: 96px;
	height: 96px;
	cursor: text;
}
.A-app-fields .field-number input { padding: 0 10px 0 22px; }
.A-app-fields .field-date input {
	width: auto;
	cursor: pointer;
}

.A-app-fields .field button {
	padding: 16px 48px;
	color: var(--colorA);
	background: transparent;
	border: 2px solid var(--colorA);
}

.A-app-fields .field-submit {
	flex: 0 0 100%;
	margin: 96px 0;
}
.A-app-fields .field-submit .control {
	width: 100%;
}
.A-app-fields .field-submit .control:after,
.A-app-fields .field-submit .control:before {
	content: "";
	width: 40%;
	height: 2px;
	margin: 0 2%;
	background: var(--colorC);
}

.A-app-fields .field .control[data-value="ΕΠΙΛΕΞΤΕ"]:after {
	content: "ΕΠΙΛΕΞΤΕ";
	position: absolute;
	left: 24px;
	top: calc(50% - 14px);
	width: calc(100% - 48px);
	font-size: 22px;
	background: var(--colorA);
	color: white;
	pointer-events: none;
}
.A-app-fields .field-error .control[data-value="ΕΠΙΛΕΞΤΕ"]:after,
.A-app-fields .field-error .control input,
.A-app-fields .field-error .control div {
	background: darkred;
}
.A-app-fields .error {
	margin-bottom: 24px;
	font-size: 22px;
	color: darkred;
}

.A-app-fields .field .control[data-value="ΕΠΙΛΕΞΤΕ"]:hover:after,
.A-app-fields .field-error .control:hover input,
.A-app-fields .field .control:hover input,
.A-app-fields .field button:focus,
.A-app-fields .field button:hover {
	background: #333;
	color: white;
}
.A-app .loader {
    width: 100%;
    height: 96px;
    fill: var(--colorA);
}


#A-app-result {
	display: flex;
	flex-flow: column;
	align-items: center;
}
#A-app-result .gfx-1 {
	position: absolute;
    width: 25vw;
    height: 25vw;
    object-fit: contain;
    left: -10vw;
    top: 74%;
    opacity: 0.35;
}
#A-app-result .gfx-2 {
	position: absolute;
    width: 24vw;
    height: 24vw;
    object-fit: contain;
    right: -10vw;
    top: 40%;
    opacity: 0.35;
	transform: rotateY(180deg);
}


.result-box:nth-child(1) { transition-delay: 0.2s; }
.result-box:nth-child(2) { transition-delay: 0.4s; }
.result-box:nth-child(3) { transition-delay: 0.6s; }
.result-box:nth-child(4) { transition-delay: 0.8s; }
.result-box:nth-child(5) { transition-delay: 1s; }

.box-1 > div { margin-top: 72px; }
.result-box.box-2 { min-height: 359px; }
.box-2 .loader { margin-top: 48px; }
.result-box {
	display: flex;
	flex-flow: column;
	align-items: center;
	width: 70%;
	min-height: 302px;
	margin-bottom: 48px;
	padding: 48px;
	border: 1px solid hsla(0, 0%, 0%, 0.2);
	border-radius: 32px;
	transition: 0.4s all;
	transform: scale(0);
}
.result-box.wide { width: 90%; }
.result-box.on { transform: scale(1); }
.result-box label {
	position: absolute;
	margin: -74px 0 0;
	padding: 12px 32px;
	background: white;
	box-shadow: 0 6px 16px hsla(0, 0%, 0%, 0.2);
	border-radius: 50px;
	font-size: 22px;
}
.result-box > div {
	margin: 48px 0;
	font-size: 48px;
	font-weight: 300;
    text-align: center;
}
#A-ovulation .result-box > div {
	font-size: 40px;
	text-align: left;
}
.result-box > div label {
	position: relative;
    margin: 16px 0 0;
    box-shadow: unset;
    padding: 0;
}


.result-node,
.result-box .weeks,
.result-box .days {
	margin: 0 64px;
	font-size: 24px;
	text-align: center;
}
.result-node span,
.result-box .weeks span,
.result-box .days span {
    display: flex;
    align-items: center;
    place-content: center;
    width: 128px;
    height: 128px;
    margin: 0 0 8px;
    font-weight: 300;
    font-size: 64px;
    background: var(--colorA);
    color: white;
    border-radius: 50%;
}
.result-box section .loader { margin: 48px 0; }



.result-flex {
	display: flex;
	align-items: center;
}

.result-node {
	margin: 0;
	padding: 0 3%;
	transition: 0.4s all;
	opacity: 0;
}
.result-node:nth-child(1) { transition-delay: 0.2s; }
.result-node:nth-child(2) { transition-delay: 0.4s; }
.result-node:nth-child(3) { transition-delay: 0.6s; }

.result-nodes.on .result-node { opacity: 1; }


.result-node em {
    display: block;
    margin-bottom: 12px;
	font-size: 18px;
	font-style: normal;
}
.result-node span {
	margin: 0 auto;
	font-size: 40px;
}
.result-node .chart { margin: 16px 0 32px; }
X.result-node .chart svg,
X.result-node .chart path { fill: var(--colorA) !important; }


#A-live-birth {}

.c3-chart-arc path { fill: var(--colorA) !important; }
.c3-chart-arcs .c3-chart-arcs-background {
	fill: hwb(108 27% 65% / 0.3) !important;
}

.Atabs-title {
	margin-right: 8px;
	color: var(--colorA);
	font: 400 22px var(--fontA);
	padding: 8px 16px;
	background: white;
	border: 2px solid var(--colorA);
	border-radius: 50px;
}

.Atabs-title:hover,
.Atabs-title.active {
	background: var(--colorA);
}









.nomos { display: block; }
.nomos:hover { background: #EEE; }
.nomos .Acolumns {
	align-items: center;
}
.nomos .Col1 { flex: 0 0 200px; }
.nomos img {
	height: 64px;
	object-fit: contain;
}
.wp-block-buttons { margin: 32px 0; }
.wp-block-button { margin: 4px 0 !important; cursor: pointer; }
.wp-block-button a { display: block; background: var(--colorA); text-align: center; }
.wp-block-button:hover a { background: black; }







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




form .form-field { margin-bottom: 16px; }
form .form-submit { position: relative; text-align: center; }
form label { padding-left: 12px; color: var(--colorA); }
form input,
form textarea {
	width: 100%;
	padding: 8px 16px;
	font: 400 22px var(--fontA);
	background: var(--colorC);
	border-radius: 24px;
	border: 0;
	outline: 0;
}
form textarea { font-size: 18px; }
form .wpcf7-acceptance:hover label { color: var(--colorB); }
form .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
form .wpcf7-acceptance label { display: flex; }
form input[type="checkbox"] {
	position: relative;
	flex: 0 0 auto;
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
	padding: 0;
	margin-right: 8px;
	background: transparent;
    border: 6px solid var(--colorB);
	border-radius: 0;
	cursor: pointer;
}
form input[type="checkbox"]::before {
    content: "";
	position: absolute;
    width: 16px;
    height: 16px;
    margin: 2px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 20px 20px var(--colorB);
}
form input[type="checkbox"]:checked::before { transform: scale(1); }
form input[type="submit"] { text-align: center; }

form input[type="submit"] {
	position: relative;
	background: var(--colorA);
	color: white;
	cursor: pointer;
}
form input[type="submit"]:hover { background: var(--colorB); }
form input[type="submit"][disabled] {
	background: var(--colorC);
	cursor: not-allowed;
}





/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ RESPONSIVE */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */


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

	.home-cover { padding: 5vw 0 0 5%; }
	.home-cover .Col2 { left: -4vw; }
	.home-cover .gfx-1 { bottom: 1.5vw; }
	.home-doc .Col2 { padding: 15vw 15% 0 8%;	}
	.home-icons { padding: 64px 4vw 48px; }
	.home-icons .Acolumn h3 { font-size: 28px; }


	.A-app { margin: 0 -8vw; }


}




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

	.home-cover h1 { width: 660px; font-size: 48px; }
	.home-cover h2 { width: 400px; font-size: 36px; }
	.home-cover .Col2 { left: -10vw; padding: 64px 0 96px; }
	.home-cover .gfx-1 { bottom: -3.5vw; }
	.home-doc .Col2 { padding: 15vw 10% 0 8%;	}
	
	.home-icons { flex-flow: row wrap; padding: 5vw 10vw 0; }
	.home-icons .Acolumn {
		flex: 0 0 50%;
		padding: 0 0% 5vw 10%;
	}
	.home-icons .Acolumn h3 { font-size: 28px; }

	.home-A { margin: 96px -5vw; }
	.home-B h3 { padding: 0 40px; }

	.A-app { margin: 0 -10vw; }
	.A-app-fields .field { padding: 0 16px; }


	.result-node { padding: 0 2%; }

	.contact .Col1 { margin-left: -5vw; margin-right: 5vw; flex: 0 0 55%; }
	.contact-2 .Col1 { margin-top: -5vw; }
	.contact-2 .Col2 { margin-right: -5vw; }
	.contact .Col1 h3 a, .contact .Col1 h3 { font-size: 36px; }
	.wp-block-contact-form-7-contact-form-selector { padding: 0; }
	.contact .Col2 h2 { padding: 3vw 0 0 0vw; font-size: 36px; }

	.A-page-cover h1 { flex: 0 0 auto; width: 45%; }
	.A-page-cover .gfx-1 { left: calc(45% - 3vw); }
	.A-page-cover .circle-3 { left: calc(45% - 7.5vw); }


}






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

	.home-cover { flex-flow: column; padding: 5vw 5vw 0; }
	.home-cover h1 { font-size: 48px; }
	.home-cover .Acolumn { flex: 1; }
	.home-cover .Col2 {
		left: 0;
		margin-left: 55%;
		margin-top: -30vw;
	}
    .home-cover h2 { width: 50%; }
	.home-cover .gfx-1 { bottom: -1.5vw; }
	.home-doc { padding: 0 5% 96px 5%; }
	.home-doc .Col2 { padding: 15vw 5% 0 6%; }

	.home-A h3 { font-size: 34px; }
	.home-A p:not(.A-more) { font-size: 20px; }

	.hero-A { flex-flow: column-reverse; }
	.hero-A .Col1 { width: 100%; background: transparent; }
	.hero-A .Col2 {
		display: flex;
		flex-flow: column;
		align-items: center;
	}
	.hero-A h1 { font-size: 44px; }
	.A-page-content h2 { font-size: 36px; }
	.A-page-content li, .A-page-content a, .A-page-content p { font-size: 19px; }


	.hero-A .doctor-c,
	.hero-A .doctor-c img,
	.contact .doctor-c,
	.contact .doctor-c img {
		width: 50vw;
		height: 50vw;
	}


	.contact .doctor-c { left: -11vw; }
	.contact .Col1 h3 a,
	.contact .Col1 h3,
	.contact .Col2 h2 { font-size: 32px; }


	.doctor {
		flex-flow: column;
		padding: 64px 10vw;
	}
	.doctor .Col1 {
		flex: 1;
		width: 41.5vw;
	}
	.doctor .gfx5 {
		left: -5vw;
		bottom: -120%;
		width: 40px;
		height: 40px;
	}
	.doctor .gfx6 {
		bottom: -300%;
		height: 120px;
	}


	.A-footer { flex-flow: row wrap; padding-top: 48px; }
	.A-footer-col { width: 30.333%; }
	.A-footer-col:nth-child(2) { margin-left: 9%; }
	.A-footer-col:first-child { width: 100%; margin-bottom: 48px; }
	.A-footer-col .A-logo img { max-width: 200px; }


	.A-app-fields {
		flex-flow: column;
	}
	.A-app-fields .field {
		width: 100%;
		padding: 8px 0 40px;
		border-right: 0;
		border-bottom: 1px solid var(--colorC);

	}
	#A-app-result .gfx-1 {
		width: 30vw;
		height: 30vw;
		top: 84%;
	}
	#A-app-result .gfx-2 {
		width: 27vw;
		height: 27vw;
		top: 60%;
	}

	#A-egg-freezing .result-flex { flex-flow: column; }

	#A-egg-freezing .result-node { margin-bottom: 32px; }
	#A-egg-freezing .result-node .chart { margin: 0 0 24px; }

}





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

	h2 { font-size: 40px; }

	header nav {
		margin-top: 32px;
		padding: 0 10vw;
		text-align: center;
	}
	header nav .menu-toggle { display: inline-block; }
	header nav ul { display: none; text-align: left; }
	header nav ul.sub-menu {
		display: block;
		position: relative;
		box-shadow: unset;
	}
	header nav ul li {
		display: block;
		margin: 6px 0px 12px 0;
	}
	.A-phone { left: 24px; right: unset; }
	

	.Aposts[data-navi="sides"] .Acontainer { margin: 0 48px; }
	.home-blog .Aposts { margin: 0 -48px; }


	.nomos .Col1 {
		flex: 0 0 80px;
	}


	.circle-0, .circle-1 { width: 20px; height: 20px; }
	
	.home-cover h1 { width: 90%; font-size: 40px; }
	.home-cover h2 { width: 45%; font-size: 36px; }
	.home-cover .Col2 { margin-top: -40vw; }
	.home-cover .gfx-1 { bottom: 3.5vw; }
	.home-doc {
		flex-flow: column;
		align-items: flex-start;
		padding: 0 20vw 96px;
	}
	.home-doc .Col2 { flex: 1; padding: 5vw 0; }


	.home-icons .Acolumn h3 { font-size: 24px; }
	.home-icons img {
		width: 80px;
		height: 80px;
	}

	.home-A { margin: 64px -2vw 96px -8vw; }
	.home-A h2 { margin-bottom: 8px; }
	.home-A h3 { width: 160%; margin-left: -30%; margin-bottom: 48px; }
	.home-A p:not(.A-more) { font-size: 20px; }

	.home-gfx-2 {
		position: relative;
		left: 70vw;
		width: 12vw;
	}

	.home-B { flex-flow: row wrap; }
	.home-B .Acolumn { flex: 0 0 40%; margin: 0; }
	.home-B .Col2 { margin-left: 20%; }
	.home-B .Col1 {
		flex: 0 0 60%;
		margin-bottom: -15vw;
		margin-left: -5vw;
	}
	.home-B .gfx-4 {
		left: 15.6vw;
		width: 21vw;
		height: 45vw;
	}
	h2.gonimotita { margin-left: calc(85% - 360px); margin-bottom: 0; }
	.home-B h3 { font-size: 28px; margin-top: 16px; }



	
	.doctor .gfx5 {
        left: -6vw;
        bottom: -150%;
        width: 30px;
        height: 30px;
    }
	.doctor .gfx6 {
		bottom: -400%;
		height: 90px;
	}



	.contact-1 { flex-flow: column-reverse; }
	.contact-2 { flex-flow: column; }
    .contact .doctor-c {
        left: unset;
        margin: 0 auto;
    }
	.contact .Col1 {
		margin: 0;
		border: 0;
		text-align: center;
	}
	.contact-2 .Col2 {
        margin: 0;
        padding: 0;
    }
	.contact .gfx-1,
	.contact .gfx-8 { display: none; }
	.contact .Col1 h4 { margin-bottom: 24px; }
	.contact .Col1 h3 { margin-bottom: -14vw; }
	
	.contact .Col1 h3 a, .contact .Col1 h3 { font-size: 28px; }




	.A-page-cover { flex-flow: column-reverse; }
	.A-page-cover h1 {
		width: 100%;
		margin: 40px 0;
		padding: 0 10%;
		font-size: 48px;
		border: 0;
	}
	.A-page-cover figure img { padding: 32px 0 80px; }
	.A-page-cover figure {
		flex: auto;
		height: 60vw;
		margin-bottom: 0;
        margin-left: 15%;
		border-left: 3px solid var(--colorA);
	}
	.A-page-cover .gfx-1 {
        left: calc(15.1% - 3vw);
        top: 59vw;
        bottom: unset;
    }
	.A-page-cover .circle-1 {
		right: 30vw;
		top: calc(7vw + 4px);
	}
	.A-page-cover .circle-2 {
		position: absolute;
		right: 10vw;
		top: 50vw;
	}
	.A-page-cover .circle-3 {
		left: calc(15% - 7.5vw);
        top: 30vw;
        bottom: unset;
	}






	.A-footer-col { width: 32.333%; }
	.A-footer-col:nth-child(2) { margin-left: 3%; }
	.A-footer-col:first-child { margin-bottom: 32px; }
	.A-footer-col .A-logo img { max-width: 160px; }


	.A-app-top { padding: 48px 10vw; }
	.A-app-top .A-switch { flex-flow: column; }
	.A-app-top .A-switch p {
		margin: 8px 0;
		padding: 16px 24px;
	}
	.result-box > div { font-size: 38px; }
	.result-box .weeks,
	.result-box .days { margin: 0 40px; }
	.result-box .weeks span,
	.result-box .days span {
		width: 112px;
		height: 112px;
		font-size: 56px;
	}



}





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

	h1 { font-size: 48px; }
	.doctor h2,
	h2 { font-size: 36px; }

	header { padding: 80px 24px 48px; }
	header nav { padding: 0; }
	header nav ul.sub-menu { width: auto; }

	.doctor .Col2 p { font-size: 20px; }

	ol, ul { padding-left: 20px; }

	.hero-A h1 { font-size: 40px; }
	.A-page-content h2 { font-size: 32px; }
	.home-cover h2 { font-size: 32px; line-height: 1.1; }

	.doctor .Col2 p,
	.A-page-content li,
	.A-page-content a,
	.A-page-content p { font-size: 18px; }
	
	.search-result-list li { margin-bottom: 32px; }
	.search-result-list li .img-placeholder,
	.search-result-list li img { display: none; }

	.circle-0, .circle-1 { width: 16px; height: 16px; }

	.home-cover h1 { width: 100%; font-size: 40px; }
	.home-cover .Col2 { margin-top: -50vw; }
	.home-cover .gfx-1 { display: none; }
	.home-doc { padding: 0 15vw; margin-top: 5vw; }
	.doctor .Col1 { width: 60vw; }
	.home-doc .Col1 { flex: 0 0 60vw; }
	.doctor-c img { width: 60vw; height: 60vw; }
	.hero-A p:before {
		left: -40px;
		width: 24px;
		height: 24px;
		font-size: 22px;
		opacity: 0.5;
	}
	.hero-A .Col1 { padding-right: 10%; }

	
	.home-icons { flex-flow: row wrap; padding: 8vw 5vw 0; }

	
	.home-A { margin: 96px 0 96px -4vw; }
	.home-A .Col1,
	.home-A .Col5 { display: none; }
	.home-B { width: 100%; }
	.home-B .Acolumn {
		flex: 0 0 auto;
		width: 40%;
		margin: 0;
	}
	.home-B .Col2 { margin-left: 15%; }
	.home-B .Col2 .Apic,
	.home-B .Col3 .Apic {
	}
	.home-B .Col1 {
		flex: 0 0 70%;
		margin-bottom: -15vw;
		margin-left: -10vw;
	}
	.home-B h3 {
        font-size: 24px;
        padding: 0 16px;
    }
	.home-B .gfx-4 {
        left: 19.6vw;
        width: 24vw;
        height: 53vw;
	}
	h2.gonimotita {
        margin-left: calc(85% - 280px);
        margin-bottom: 0;
		font-size: 36px;
    }

	.doctor .gfx5 {
        left: -8vw;
        bottom: -141%;
        width: 30px;
        height: 30px;
    }
	.doctor .gfx6 {
		bottom: -400%;
		height: 90px;
	}


	.title-A { flex-flow: column; align-items: unset; }
	.Acarousel[data-navi="sides"] .Anavi {
		left: 4%;
		width: 91%;
	}
	.Acarousel .Anavi svg {
		width: 28px;
		height: 28px;
	}


	.contact-1 { margin-top: 10vw; }
	.contact .Col1 h3 a, .contact .Col1 h3 { font-size: 26px; }
	.contact .Col2 h2 { font-size: 30px; }
	.contact .Col1 h3 { margin-bottom: -6vw; }
	.contact .half { width: 100%; }

	.A-footer {
		flex-flow: column;
        align-items: center;
	}
	.A-footer-col { width: auto; padding: 0; text-align: center; }
	.A-footer-col:nth-child(2) { margin-left: 0%; }
	.A-footer-col:nth-child(2),
	.A-footer-col:nth-child(3) {
		border-right: 0;
		border-bottom: 2px solid white;
		padding-bottom: 32px;
		margin-bottom: 32px;
	}
	footer .A-social,
	.A-contact-row { place-content: center; }
	

	.A-app { padding: 0 5vw; }
	.A-app-fields .field input { height: 64px; }
	.A-app-fields .field .label { margin-bottom: 12px; }
	.A-app-fields .field-number input {
		width: 80px;
		height: 80px;
		padding: 0 0px 0 12px;
	}
	.A-app-fields .field-submit { margin: 64px 0; }
	.result-box { width: 100%; }
	.result-box label { max-width: 90%; }
	#A-app-result .gfx-1,
	#A-app-result .gfx-2 {
		object-fit: cover;
		object-position: right;
	}

	.A-page-cover figure { height: 70vw; }
	.A-page-cover figure img {
        padding: 12px 0 32px;
    }
	.A-page-cover .gfx-1 { top: 69vw; }
	.A-page-cover .circle-1 {
		top: calc(5vw + 3px);
		width: 20px;
		height: 20px;
		background: #3B3836;
	}
	.A-page-cover .circle-2 { top: 64vw; }
	.A-page-cover .circle-3 { top: 40vw; }

	.A-page-cover h1 { font-size: 40px; }
}



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

	h1 { font-size: 36px; }
	.doctor h2,
	h2 { font-size: 32px; }

	header .A-logo img { max-height: 90px; }

	.A-search {
        place-content: center;
		top: unset;
		right: unset;
        left: 0;
		bottom: 0;
        width: 100%;
		margin-left: -8px;
	}
	.A-phone {
        left: unset;
        right: 24px;
        top: 24px;
    }
	
	.doctor .Col2 p,
	.A-page-content li,
	.A-page-content a,
	.A-page-content p { font-size: 18px; }

	.hero-A p:before { display: none; }


	.hero-A .doctor-c { margin-top: 10vw; }
	.hero-A .doctor-c,
	.hero-A .doctor-c img,
	.contact .doctor-c,
	.contact .doctor-c img {
		width: 70vw;
		height: 70vw;
	}



	.home-cover h1 { width: 100%; font-size: 30px; }
	.home-cover h2 { width: 100%; font-size: 28px; margin-top: 95%; }
	.home-cover .Col2 {
		margin-top: -100vw;
        margin-left: 50%;
		transform: scale(1.4);
	}
	.home-cover .line-1,
	.home-cover .line-2 { opacity: 0.3; }
	.circle-0, .circle-1 { width: 10px; height: 10px; background: hsla(0, 0%, 0%, 0.4); }


	.hero-A h1 { font-size: 36px; }
	.A-page-content h2 { font-size: 30px; }


	.home-cover .photo-1 {
		top: 3vw;
		left: -17vw;
		width: 45vw;
		height: 45vw;
        margin-bottom: 15vw;
	}
	.home-cover .photo-2 { top: 12.5vw; }
	.home-cover .photo-3 {
		top: 30vw;
		left: 12vw;
		width: 25vw;
		height: 25vw;
	}

	
	.home-doc { margin-top: 30vw; }
	
	.home-icons { flex-flow: row wrap; padding: 15vw 15vw 0; }
	.home-icons .Acolumn { flex: 0 0 100%; padding: 0 0 10vw 0; }

	.Aitem .image { height: 260px; }
	.Aposts[data-navi="sides"] .Anavi { top: 120px; }
	
	.home-A {
		flex-flow: row wrap;
		margin: 96px 0 96px -4vw;
	}
	.home-A .Acolumn {
		flex: 0 0 50%;
		display: block;
		height: 50vw;
	}
	.home-A .Col3 {
		flex: 0 0 100%;
		padding: 0 10vw;
		height: auto;
	}
	.revealed-mid.home-A .Col4,
	.home-A .Col4 {
		flex: 0 0 20%;
		margin: 0 -15% 0 40%;
	}
	.revealed-bottom.home-A .Col4 {
		flex: 0 0 50%;
		margin: 0 
		-15% 0 50%;
	}
	.revealed-mid.home-A .Col5,
	.home-A .Col5 {
		flex: 0 0 40vw;
	}
	.revealed-bottom.home-A .Col5 {
		flex: 0 0 13vw;
	}
    .home-A h2 { font-size: 40px; margin-top: 24px; }
    .home-A h3 {
        width: 100%;
        margin-left: 0%;
        font-size: 34px;
    }
	.home-A .Apic,
	.home-A .Col2 .Apic {
		top: 3vw;
		width: 44vw;
		height: 44vw;
	}

	.home-B .Acolumn {
		flex: 0 0 auto;
		width: 45%;
		margin: 0;
	}
	.home-B .Col2 { margin-left: 5%; }
	.home-B .Col2 .Apic,
	.home-B .Col3 .Apic {
		width: 35vw;
		height: 35vw;
	}
	.home-B .Col1 {
		flex: 0 0 70%;
		margin-bottom: -15vw;
		margin-left: -10vw;
	}
    h2.gonimotita {
        font-size: 32px;
        text-align: right;
        margin: 0 5vw;
	}


	.doctor h1 { margin: 0 0 32px; }
	.doctor .gfx5 {
        left: -8vw;
        bottom: -175%;
        width: 28px;
        height: 27px;
    }
	.doctor .gfx6 {
		bottom: -600%;
		height: 70px;
	}
	.Acarousel[data-navi="sides"] .Anavi {
		left: 7%;
		width: 86%;
	}
	.Acarousel .Anavi svg {
		width: 24px;
		height: 24px;
	}

	.result-box { min-height: 260px; padding: 40px 24px 32px; }
	.result-box label { font-size: 18px; }
	.result-box div { margin: 24px 0; }
	.result-flex { flex-flow: column; }
	.result-box .weeks, .result-box .days {
		display: flex;
		align-items: center;
        place-content: flex-start;
        width: 224px;
	}
	.result-box .weeks span, .result-box .days span {
        width: 72px;
        height: 72px;
        margin-right: 12px;
        font-size: 44px;
    }
	.result-box label { margin: -64px 0 0; }
	.A-app-fields .field-number input { padding: 0; }

	#A-egg-freezing .result-flex { margin: 0; }
	#A-egg-freezing .result-node { margin: 16px 0; }


	.contact .Col1 h3 a, .contact .Col1 h3 { font-size: 22px; }
	.contact .Col2 h2 { font-size: 24px; }
	.contact .Col1 h3 { margin-bottom: -6vw; }

	.A-page-content a { word-wrap: break-word; }


	.A-page-cover figure { height: 80vw; }
	.A-page-cover .gfx-1 { top: 79vw; }
	.A-page-cover .circle-1 { top: calc(4vw + 3px); }
	.A-page-cover .circle-2 { top: 70vw; }
	.A-page-cover .circle-3 { top: 40vw; }


}



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


}




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 2000px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
	
	h1,	.hero-A h1 { font-size: 2.85vw; }
	h2 { font-size: 2.5vw; }
	.doctor h2 { font-size: 2.1vw; }
	.hero-A h2 { font-size: 2.1vw; }

	.hero-A .Col1 h4, .contact .Col1 p, .contact .Col1 h4 { font-size: 1.4vw; }

	.Aitem .text { font-size: 1.05vw; }
	.A-phone a,
	.A-page-content li,
	.A-page-content a,
	.A-page-content p { font-size: 1.15vw; }

	form input, form textarea { font-size: 1.15vw; }

	.contact .Col1 h3 a, .contact .Col1 h3 { font-size: 2.4vw; }
	.contact label { font-size: 1vw; }

	.doctor .Col2 p { font-size: 1.25vw; }
	.home-icons .Acolumn h3 a { font-size: 1.6vw; }

	.page-grid .Aitem h3 { margin-top: 0.8vw; }
	.Aitem h3 { font-size: 1.4vw; }
	.page-grid .Aitem .image { height: 16vw; }


	.A-page-cover h1 { flex: 0 0 35vw; }
	.A-post-cover h1 { font-size: 2.5vw; }
	.A-page-cover .circle-3 { left: 27.5vw; }
	.A-page-cover .gfx-1 { left: 33.3vw; }


	header nav ul.sub-menu { width: 24.5vw; }
	header nav ul.sub-menu li { padding: 0.2vw 0 0.2vw 1vw; }
	header nav ul.sub-menu ul.sub-menu { padding: 0 0.45vw 0.5vw 0.6vw; }

	header nav ul li a { font-size: 1.15vw; }
	header nav ul.sub-menu li a { font-size: 1.05vw; }
	header nav ul.sub-menu ul.sub-menu li a { font-size: 0.95vw; }

	.gallery .Apic { height: 16vw; }

	.Aitem .more, .A-more {
		width: 1.5vw;
		font-size: 1vw;
	}


	.A-phone {
		top: 1.6vw;
		right: calc(5% + 13vw);
	}
	.A-phone img {
		top: -0.3vw;
		height: 1.5vw; 
		margin-right: 0.6vw;
	}
	.A-search input[type="search"] {
		width: 12vw;
		padding: 0.3vw 1.8vw 0.3vw 0.5vw;
		font-size: 1.0vw;
		border-radius: 200px;
	}
	.A-search svg {
		top: 0.1vw;
		height: 1vw;
	}
	.A-search .search-submit {
		margin-left: -1.8vw;
		font-size: 1.1vw;
	}

	header nav { margin-top: 0.9vw; }
	header .A-logo img {
		width: auto;
		max-height: 7vw;
	}


	.A-footer-col .A-logo img { max-width: unset; max-height: 9vw; }
	.A-footer-col label,
	.A-footer-col p,
	.A-footer-col li,
	.A-footer-col a { font-size: 1.15vw; margin: 0.3vw 0; }
	.A-footer-col h3 { font-size: 1.15vw; margin: 0 0 1.3vw; }
	.A-footer .small { font-size: 0.85vw; }

	footer .A-social a { margin: 0 1vw 0 0; }
	footer .A-social svg { height: 1.5vw; }



	.A-app-fields .field .label {
		margin-bottom: 1.5vw;
		font-size: 1.25vw;
        min-height: 2.5vw;
	}
	.A-app-fields .field .note {
		font-size: 1.25vw;
	}
	.A-app-fields .field p {
		font-size: 1.2vw;
	}
	.A-app-fields .field input {
		width: 4.5vw;
		height: 4.5vw;
		padding: 0.6vw 1.25vw;
		font-size: 1.2vw;
		border-radius: 600px;
	}
	.A-app-fields .field .control[data-value="ΕΠΙΛΕΞΤΕ"]:after {
		left: 1vw;
		top: calc(50% - 0.6vw);
		width: calc(100% - 2vw);
		font-size: 1.2vw;
	}
	.A-app-fields .field-number input {
		padding: 0 0.5vw 0 1vw;
	}
	.A-app-fields .field-date input { width: auto; }
	.A-app-fields .field button {
		padding: 1vw 2.5vw;
		font-size: 1.25vw;
		border-radius: 50px;
	}

	.note,
	.result-box label { font-size: 1.25vw; }
	.result-box > div,
	#A-ovulation .result-box > div { font-size: 2vw; }
	.result-node em,
	.result-node, .result-box .weeks, .result-box .days {
		font-size: 1.25vw;
	}

	.result-node span, .result-box .weeks span, .result-box .days span {
		width: 7vw;
		height: 7vw;
		font-size: 3vw;
	}
	 
}
	
	








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