/*--------------------------------------------------------------
>>> 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');
*/
 

/* -------------------- Asty PRO */
/* ----------------------------- */
@font-face {
    font-family: 'Asty';
    src: url(fonts/CFAstyPro-Book.otf);
    font-weight: 400;
	font-display: swap;
}
@font-face {
    font-family: 'Asty';
    src: url(fonts/CFAstyPro-Bold.otf);
    font-weight: 700;
	font-display: swap;
}



/* -------------------- ZONA PRO */
/* ----------------------------- */
@font-face {
    font-family: 'ZonaPro';
    src: url(fonts/ZonaPro-Thin.otf);
    font-weight: 300;
	font-display: swap;
}
@font-face {
    font-family: 'ZonaPro';
    src: url(fonts/ZonaPro-Bold.otf);
    font-weight: 400;
	font-display: swap;
}


/* ---------------------- ENCORE */
/* ----------------------------- */
@font-face {
    font-family: 'Encore';
    src: url(fonts/Encore/PFEncoreSansPro-Thin.otf);
    font-weight: 100;
	font-display: swap;
}
@font-face {
    font-family: 'Encore';
    src: url(fonts/Encore/PFEncoreSansPro-Light.otf);
    font-weight: 300;
	font-display: swap;
}
@font-face {
    font-family: 'Encore';
    src: url(fonts/Encore/PFEncoreSansPro-Reg.otf);
    font-weight: 400;
	font-display: swap;
}
@font-face {
    font-family: 'Encore';
    src: url(fonts/Encore/PFEncoreSansPro-Bold.otf);
    font-weight: 700;
	font-display: swap;
}
@font-face {
    font-family: 'Encore';
    src: url(fonts/Encore/PFEncoreSansPro-Black.otf);
    font-weight: 800;
	font-display: swap;
}
@font-face {
    font-family: 'Encore';
    src: url(fonts/Encore/PFEncoreSansPro-UBlack.otf);
    font-weight: 900;
	font-display: swap;
}


/* ------------------- COMFORTAA */
/* ----------------------------- */
@font-face {
    font-family: 'Comfortaa';
    src: url(fonts/Comfortaa-Light.ttf);
    font-weight: 300;
	font-display: swap;
}
@font-face {
    font-family: 'Comfortaa';
    src: url(fonts/Comfortaa-Regular.ttf);
    font-weight: 400;
	font-display: swap;
}
@font-face {
    font-family: 'Comfortaa';
    src: url(fonts/Comfortaa-Bold.ttf);
    font-weight: 700;
	font-display: swap;
}





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

    --fontA: 'Asty', sans-serif;
    --fontB: 'Roboto', sans-serif;

	--colorA: #7e4939;
	--colorB: #505f58;
	--colorC: #b38972;
	--colorD: #21221c;


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

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

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



}



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


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

h1 { font: 700 64px var(--fontA); color: var(--colorA); }
li, a, p { font: 400 18px var(--fontA); }

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

ul, ol { padding-left: 16px; }
ul li,
ol li { margin: 8px 0; }

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

/* 	--------------
	HEADER
 	-------------- */
header {
	position: relative;
	width: 100%;
    text-align: center;
	padding: 64px 24px 16px 64px;
	z-index: 99;
}
header .A-flex {
	flex-flow: column;
}
header .A-logo {
	display: inline-block;
    width: auto;
	padding: 0px;
	margin: 0 0 32px 0;
	transition: 1s all;
	background: white;
}
header .A-logo img {
    width: 312px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}
header .A-logo.closed { transform: scale(0); }

/* Navigation */
header nav .menu-toggle {
	display: none;
	background: transparent;
	border: 0;
	outline: 0;
}
header nav .menu-toggle svg {
	height: 32px;
    fill: black;
    stroke: black;
    stroke-width: 12px;
}
header nav {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    text-align: right;
    z-index: 9;
}
header nav {
	display: block;
    width: auto;
	margin: 0;
	transition: 1s all;
}
header nav.closed { left: -300px; }
header nav ul {
	display: flex;
	flex-flow: column;
    place-items: flex-start;
	width: auto;
    padding: 0;
    margin: 0;
    list-style: none;
	text-align: left;
}
header nav ul li {
    display: inline-block;
    position: relative;
    width: auto;
    padding: 0px;
    margin: 4px 0;
    cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
header nav ul li a {
    position: relative;
    font: 400 18px var(--fontA);
	text-decoration: none;
	color: black;
    z-index: 99;
}
header nav ul li:hover > a,
header nav ul li.current_page_item > a {
	font-weight: 900;
    color: var(--colorA);
    opacity: 1;
}
header nav ul.sub-menu {
	display: none;
	position: absolute;
	min-width: 240px;
    margin-left: 100%;
    margin-top: -24px;
	padding: 12px;
	text-align: left;
	background: white;
	box-shadow: 4px 4px 12px hsla(0, 0%, 0%, 0.58);
	z-index: 9999;
}
header nav ul.sub-menu li {
	display: block;
	margin: 0;
	padding: 4px 0 4px 16px;
}
header nav ul li:hover > ul.sub-menu { display: block; }
header nav ul.sub-menu .sub-menu {
    top: 0;
    min-width: 260px;
    margin: 0 0 0 50%;
}

nav.A-breadcrumb {}

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


.A-find-doctor {
	display: flex;
	display: none;
	margin-top: 24px;
}
.A-find-doctor img { width: auto; height: 48px; }
.A-find-doctor a {
	color: var(--colorB);
	font: 900 24px var(--fontA);
}

.A-languages {
	display: flex;
	display: none;
	min-width: 200px;
	min-height: 48px;
	float: right;
}
.A-header-right {
	display: flex;
	align-items: center;
    place-content: flex-end;
	width: calc(100% - 450px);
	padding: 32px 64px;
	font-size: 20px;
	text-align: right;
	float: right;
}
.A-header-right .A-phone {
	display: flex;
    align-items: center;
	margin-right: 8px;
}
.A-header-right .A-phone a {
	margin-left: 12px;
	font: 700 32px var(--fontA);

}
.A-header-right .A-phone img {
	width: 40px;
	height: 40px;
	padding: 2px 0 3px;
	object-fit: contain;
	margin-right: 8px;
}


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

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

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




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




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



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



form .form-field { margin-bottom: 16px; }
form .form-submit { position: relative; text-align: center; }
form label { padding-left: 12px; color: var(--colorA); }
form select,
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; align-items: center; }
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 .form-submit:after {
	content: " ";
	position: absolute;
	top: 43px;
	left: 20%;
	width: 80%;
	height: 48px;
	background: url(img/shadow-2.jpg) no-repeat;
	background-size: 100% 100%;
}
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;
}

form select:not([disabled]):hover { background-color: var(--colorB); color: white; }
form select[disabled] { cursor: not-allowed; }
form select option { background: var(--colorC); color: black; }



.A-more a {
	position: relative;
	color: white;
	font: 700 14px var(--fontA);
	z-index: 1;
}
.Aitem .more {
    margin-bottom: 12px;
	padding: 0;
	background: unset;
}
.Aitem .more,
.A-more {
	display: inline-block;
	position: relative;
	margin-top: 24px;
	padding: 8px 16px;
	font: 700 14px var(--fontA);
	color: white;
	cursor: pointer;
	overflow: hidden;
	border-radius: 50px;
	z-index: 1;
}
.Aitem .more:before,
.Aitem .more:after,
.A-more:before,
.A-more:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--colorA);
	border-radius: 50px;
	z-index: 0;
}
.Aitem .more:after,
.A-more:after {
	width: 0%;
	transition: 0.3s all;
	background: var(--colorB);
}
.Aitem .more:hover,
.A-more:hover {  }
.Aitem .more:hover:after,
.A-more:hover:after { width: 100%; }
.Aitem .more:before { z-index: -1; }
.Aitem .more:after { z-index: -1; }

.wp-block-separator {
	margin: 64px 0;
	border: 0;
	border-top: 4px solid var(--colorA);
}

.wp-block-buttons { margin: 80px 0; }
.wp-block-button__link {
	position: relative;
	padding: 16px 48px;
	background: var(--colorA);
	color: white;
	font: 700 22px var(--fontA);
	border-radius: 50px;
	cursor: pointer;
}
.wp-block-button__link:hover { background: var(--colorB); color: white; }
.wp-block-button__link:before {
	content: "";
	position: absolute;
	top: 100%;
	right: 0;
	width: 90%;
	height: 64px;
	background: url(img/shadow-2.png) no-repeat;
	background-size: 100% 100%;
	pointer-events: none;
}



.A-content .has-text-align-center,
.has-text-align-center { text-align: center; }


/* **************************************************************** */
/* **************************************************************** */
/* **************************************************************** */
.A-cover {
	position: relative;
	width: calc(100% - 450px);
	float: right;
}
.A-cover figure {
	position: relative;
	height: 650px;
}

.A-cover .flexslider { height: 650px; }
.A-cover .metaslider .slides { height: 100%; }
.A-cover .metaslider .flexslider { margin: 0; }
.A-cover .metaslider .flexslider .slides li  { position: relative; height: 100%; }
.A-cover .metaslider .slides img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.A-content p { margin: 16px 0; text-align: justify; }
.A-content h2 {
	margin: 32px 0 18px;
	font: 900 34px var(--fontA);
	color: var(--colorA);
}
.A-content h3 {
	margin: 24px 0 12px;
	font: 900 28px var(--fontA);
	color: var(--colorB);
}
.A-content h3 a {
	font: 900 28px var(--fontA);
	color: var(--colorB);
}


.A-nocover-title,
.A-post-title,
.A-page-title {
	position: relative;
	margin: 0;
	padding: 64px 15vw 64px 314px;
	color: black;
	background: var(--colorC);
	font-size: 48px;
	line-height: 1.1;
}
.A-nocover-title:after,
.A-page-title:after {
	position: relative;
	display: block;
	content: "";
	width: 72px;
	height: 8px;
    margin-top: 8px;
	background: var(--colorA);
}
.A-post-title { padding: 96px 15vw 64px 296px; }
.A-post-title:before {
	content: "ΔΙΑΒΑΣΤΕ ΤΟ ΑΡΘΡΟ";
	position: absolute;
	left: 296px;
	top: 48px;
	font: 700 28px var(--fontA);
	color: var(--colorA);
}
.A-post-title:after {
	position: absolute;
	content: "";
	left: 240px;
	top: 96px;
	width: 40px;
	height: 40px;
	background: url(img/icon-08.png) no-repeat;
	background-size: contain;
}
.A-nocover-title {
  margin-top: 64px;
  padding: 32px 64px;
  font-size: 40px;
}
.A-nocover-title span { color: var(--colorA); }


.home h2 { font: 700 64px var(--fontA); }

#A-page-top h1,
#A-home-top h1 { margin: 0 0 32px; }
#A-page-top .Col1,
#A-home-top .Col1 { width: 450px; }
#A-page-top .Col1 figure,
#A-home-top .Col1 figure { width: 100%; height: 100%; line-height: 0; }
#A-page-top .Col1 img,
#A-home-top .Col1 img { width: 100%; height: 100%; object-fit: cover; }
#A-page-top .Col2,
#A-home-top .Col2 {
	width: calc(100% - 450px);
	padding: 96px 20vw 48px 64px;
	background: var(--colorC);
}


#A-home-exeid {
	background: var(--colorC);
}
#A-home-exeid h2 {
	position: relative;
	margin: 0;
	padding: 32px 0 32px 64px;
	color: var(--colorA);
	background: white;
	border-left: 450px solid var(--colorC);
}
#A-home-exeid h2:after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 354px;
	background: #cecece;
}
#A-home-exeid .Aitem h3 { font-size: 28px; padding-top: 34px; }
#A-home-exeid .Aitem .text-box { margin-top: 24px; }
#A-home-exeid .Aitem .image { height: 250px; }
#A-home-exeid .Aitem .image:before {
	content: "";
	position: absolute;
	top: 100%;
	right: 0;
	width: 90%;
	height: 64px;
	background: url(img/shadow-2.png) no-repeat;
	background-size: 100% 100%;
	pointer-events: none;
}


#A-home-diagn {
	min-height: 300px;
	background: var(--colorD);
}
#A-news .P-crosses,
#A-home-diagn .P-crosses {
	position: absolute;
	left: 0;
	top: 0;
	width: 30%;
	height: 100%;
    padding: 0;
    z-index: 9999;
	pointer-events: none;
}
#A-news .P-crosses { top: 40%; width: 60%; height: 50%; }
#A-news .ACB-pagination { position: relative; }
#A-news .ACB-pagination:before {
  content: "";
  position: absolute;
  left: calc(50% - 100px);
  top: -24px;
  width: 200px;
  height: 6px;
  background: var(--colorA);
}
#A-news .ACB-pagination span,
#A-news .ACB-pagination a {
  margin: 0 6px;
  font-size: 22px;
  font-weight: 700;
}


#A-home-diagn h2 {
	position: relative;
	margin: 0;
	color: white;
}
#A-home-diagn .A-circles {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
}
#A-home-diagn .A-circles:after,
#A-home-diagn .A-circles:before {
	content: "";
	position: absolute;
	left: -25vw;
	bottom: -25vw;
	width: 50vw;
	height: 50vw;
	background: #abc0cc;
	mix-blend-mode: multiply;
	border-radius: 500px;
}
#A-home-diagn .A-circles:after{
	left: unset;
	width: 30vw;
	height: 30vw;
	right: -15vw;
	bottom: -15vw;
}
#A-home-diagn .Acolumn { text-align: center; }
#A-home-diagn .Acolumn img {
	width: auto;
	height: 140px;
	filter: drop-shadow(16px 16px 22px hsla(0, 0%, 0%, 0.72));
	transition: 0.4s all;
	cursor: pointer;
}
#A-home-diagn .Acolumn img:hover {
	transform: scale(0.85);
	filter: drop-shadow(2px 2px 6px hsla(0, 0%, 0%, 0.52));
}
#A-home-diagn .stethoscope {
	position: absolute;
	right: 0;
	top: -8vw;
	width: 18vw;
	mix-blend-mode: multiply;
}
#A-home-diagn .stethoscope img {
	width: 100%;
	height: auto;
	object-fit: contain;
}


#A-home-covid h2 {
	margin: 0;
	color: black;
	white-space: nowrap;
	font-size: 48px;
}
#A-home-covid h2:after {
	display: block;
	content: "";
	width: 88px;
	height: 12px;
	margin-top: 12px;
	background: var(--colorA);
}
#A-home-covid > .Col1 { width: 450px; }
#A-home-covid > .Col2 {
	position: relative;
	width: 450px;
	width: calc(100% - 450px);
	padding: 128px 20vw 48px 64px;
	background: radial-gradient(closest-side, white, white, hsl(0, 0%, 63%) 140%);
}
#A-home-covid > .Col1 figure { line-height: 0; }
#A-home-covid > .Col1 img { width: auto; height: 100%; object-fit: cover; }
#A-home-covid > .Col2 .Col1 { padding-right: 48px; }
#A-home-covid > .Col2 p { margin: 0; }
#A-home-covid > .Col2 .A-more { margin-top: 32px; }

#A-home-covid .P-dots {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	pointer-events: none;
}

#A-home-covid .covid-5 img {
	position: absolute;
	right: -80px;
	top: 90px;
	width: 260px;
	height: auto;
}
#A-home-covid .covid-4 img {
	position: absolute;
	right: -80px;
	bottom: 20px;
	width: 320px;
	height: auto;
	filter: blur(10px);
	opacity: 0.5;
}
#A-home-covid .covid-3 img {
	position: absolute;
	right: 22vw;
	bottom: -40px;
	width: 120px;
	height: auto;
}
#A-home-covid .covid-2 img {
	position: absolute;
	left: -80px;
	bottom: 70px;
	width: 140px;
	height: auto;
	filter: blur(3px);
}
#A-home-covid .covid-1 img {
	position: absolute;
	left: 20vw;
	top: -45px;
	width: 110px;
	height: auto;
}


#A-testimonials {}
#A-testimonials h2 { font-size: 30px; font-weight: 400; }
#A-testimonials .wp-block-quote { margin: 0; text-align: center; }
#A-testimonials p { text-align: center; font-size: 22px; }
#A-testimonials .wp-block-quote cite {
	display: block;
	margin-top: 32px;
	margin-bottom: 16px;
	font: 700 24px var(--fontA);
	color: var(--colorA);
}
#A-testimonials .wp-block-quote cite em {
	font-size: 16px;
	font-weight: 400;
	color: black;
}


#A-home-news h2 { margin: 0 0 8px; }
#A-home-news > h3 { margin: 0 0 40px; }
#A-home-news .Aitem h3 { font-size: 24px; margin-bottom: 0; }



#A-post-top,
#A-tmima-top {
	background: var(--colorC);
	border-left: 250px solid var(--colorD);
}
#A-tmima-top > *:first-child { margin-top: 0; }
#A-tmima-top > *:not(figure) { padding: 0 10% 0 64px; }
#A-tmima-top figure { position: relative; margin-top: 48px; line-height: 0; }
#A-tmima-top figure:before {
	content: "";
	position: absolute;
	top: 100%;
	right: 0;
	width: 70%;
	height: 80px;
	background: url(img/shadow-2.png) no-repeat;
	background-size: 100% 100%;
	pointer-events: none;
}

#A-post-main { padding: 64px 15vw 64px 296px; }

#A-tmima-low {
	background: var(--colorC);
}
#A-tmima-low h3 { font-size: 20px; }

#A-tmima-carousel {
	margin-bottom: 48px;
	background: var(--colorC);
}
#A-tmima-carousel img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}
#A-tmima-carousel .Aitems .Acolumn { padding: 0 2px; cursor: zoom-in; }

#A-page-dark {
	background: var(--colorD);
	color: white;
	border-left: 450px solid var(--colorC);
}
#A-page-dark h2 { color: white; }
#A-page-dark a { color: white; }
.A-blank .crosses,
#A-post-top .crosses,
#A-tmima-top .crosses,
#A-career-top .crosses,
#A-page-dark .crosses {
	position: absolute;
	left: -450px;
	top: 0;
	width: 450px;
	height: 200%;
	padding: 0;
	z-index: 9;
}
.A-blank .crosses { height: 50%; }
#A-page-dark h1 { margin-top: 0; color: black; font-size: 48px; }

#A-page-white { border-left: 450px solid white; }
#A-page-white:before {
	content: "";
	position: absolute;
	left: -450px;
	top: 0;
	width: 450px;
	height: 40%;
	background: var(--colorC);
}
#A-page-white h1 { margin-top: 0; }


#A-career-top {
	background: var(--colorC);
	border-left: 450px solid var(--colorD);
}
#A-career-top h1 { margin-top: 0; margin-bottom: 32px; }
#A-career-mid {
	border-left: 450px solid var(--colorD);
}
.A-career-form { padding: 0 0%; }
.A-career-form .form-acc { margin: 24px 0; }
.A-career-form .form-submit {
	width: 60%;
	margin: 48px 20% 64px;
}
form[data-status="sent"] > *:not(.wpcf7-response-output) { display: none; }
body .wpcf7 form .wpcf7-response-output {
	background: var(--colorB);
    color: white;
    border: 0;
    text-align: center;
    padding: 16px;
    border-radius: 50px;
    font: 400 24px var(--fontA);
}
.A-career-low .A-career-form { margin-top: 64px; padding: 0 ; }
.A-career-low .A-career-form select {
	pointer-events: none;
	cursor: not-allowed;
	opacity: 0.3;
}
#A-career-carousel { padding-top: 64px; }
#A-career-carousel .Aitem h3 { color: var(--colorA); }
#A-career-carousel .Aitem .more { position: absolute; }
#A-career-carousel .Aitem .text-box {
	padding-left: 24px;
	border-left: 6px solid var(--colorA);
}

#A-list .Aitem {
	position: relative;
	margin: 24px 0;
	padding-left: 40px;
}
#A-list .Aitem:before {
	content: "";
	position: absolute;
	left: 0px;
	top: 2px;
	width: 24px;
	height: 24px;
	border-radius: 50px;
	background: var(--colorA);
}
#A-list .Aitem h3 { margin: 0; }
#A-list .Aitem:hover h3 { color: var(--colorA); }

table { border-collapse: collapse; }
table td { padding: 12px 16px; border: 1px solid black; }

#A-page-white.A-blank:before,
#A-page-white.A-faq:before { background: var(--colorD); }

.A-faq h2 {
	position: relative;
	padding-left: 48px;
	margin-top: 48px;
	margin-bottom: 12px;
	font-size: 24px;
	color: var(--colorB);
	cursor: pointer;
}
.A-faq h2:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 32px;
	height: 32px;
	background: url(img/cross2.png) no-repeat;
	background-size: contain;
}
.A-faq h2:hover { color: var(--colorA); }
.A-faq .Asection {
	display: none;
	padding: 0 0 0 48px;
}
.A-faq .Asection:before {
	content: "";
	position: absolute;
	left: 48px;
	top: 0;
	width: calc(100% - 48px);
	height: 4px;
	background: var(--colorA);
}
.A-faq .Asection > :first-child {
	margin-top: 0;
	padding-top: 24px;
}


#A-post-top { padding: 0 15vw 64px 48px; }
#A-post-top > :first-child { margin-top: 0; }
#A-post-main:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 250px;
	height: 40%;
	background: var(--colorD);
}

.A-blank h2 { font-size: 32px; }
.A-blank.A-faq h2 { font-size: 24px; }
.A-blank .Atabs-titles { flex-flow: row; }
.A-blank .Atabs-title {
	display: flex;
	align-items: center;
	place-content: center;
	flex: 1;
	text-align: center;
	background: var(--colorD);
	color: white;
	border: 0;
}
.A-blank .Atabs-title.active { background: var(--colorA); }



#A-news {
	position: relative;
	padding: 48px 64px 96px 0;
}
#A-news h1 {
	position: relative;
	font-size: 32px;
	text-align: right;
}
#A-news h1:before {
	position: absolute;
	content: "";
	right: -24px;
	top: -48px;
	width: 40px;
	height: 40px;
	background: url(img/icon-08.png) no-repeat;
	background-size: contain;
}
#A-news .Col1 {
	position: relative;
	flex: 0 0 auto;
	width: 450px;
	padding-top: 80px;
	padding-right: 200px;
}
#A-news .Col2 { flex: 1; }
#A-news:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 590px;
	background: var(--colorC);
}
#A-news .Col1:after {
	content: "";
	position: absolute;
	left: 0;
	top: 200px;
	width: 250px;
	height: 40%;
	background: var(--colorD);
}
#A-news .Aitem { padding: 0 32px 0 0; }
#A-news .Aitem h3 { font-size: 24px; line-height: 1.1; padding-right: 0; }


.page-template-page-no-cover header { position: relative; }
.page-template-page-no-cover header:after {
  content: "";
  position: absolute;
  left: 0;
  top: 110%;
  width: 450px;
  height: 600px;
  background: var(--colorD);
}
.page-template-page-no-cover .P-crosses {
  position: absolute;
  left: 0;
  top: 600px;
  width: 450px;
  height: 600px;
}
.A-nocover-content,
.A-SEARCH-RESULTS {
  width: calc(100% - 450px);
  padding: 0 0 0 64px;
  float: right;
}
.search-result-list {
  list-style: none;
  padding: 0 15vw 0 0;
}
.search-result-list li { margin-bottom: 24px; }
.search-result-list li a {
  display: flex;
}
.search-result-list li .text-box { margin-left: 12px; }
.search-result-list li h3 { margin: 0 0 16px; }
.search-result-list li img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.A-diagnostika ul {
	display: flex;
	flex-flow: row wrap;
	list-style: none;
	padding: 0;
	margin-bottom: 80px;
}
.A-diagnostika ul li {
	flex: 0 0 auto;
	position: relative;
	width: calc(33.333% - 16px);
	margin: 12px 16px 12px 0;
	padding-left: 36px;
}
.A-diagnostika ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border-radius: 50px;
	background: var(--colorA);
}
.A-diagnostika h2 { position: relative; padding-left: 49px; color: black; }
.A-diagnostika h2:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 32px;
	height: 32px;
	background: url(img/cross2.png) no-repeat;
	background-size: contain;
}






#A-contact-top {
	background: var(--colorC);
}
#A-contact-top .Acolumn {
	position: relative;
	flex: 0 0 auto;
	width: calc(50% - 225px);
}
#A-contact-top .Col1 {
	width: 450px;
	padding: 96px 96px 32px;
}
#A-contact-top .Col3 {
	padding: 96px 96px 32px;
}
#A-contact-top img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
#A-contact-top h1 {
	color: black;
	font-size: 32px;
	line-height: 1.1;
}
#A-contact-top h2 {
	font-size: 24px;
	line-height: 1.1;
}
#A-contact-top h2 strong {
	font-size: 28px;
	color: black;
}
.A-contact-line { position: relative; }
.A-contact-line strong { color: var(--colorA); font-size: 20px; }
.A-contact-line a { color: black; }
.A-contact-line a:hover { color: var(--colorA); }
.A-contact-line-4 { margin-top: 32px !important; }


#A-contact-low {
	border-left: 450px solid var(--colorD);
}

.A-top-title {
	position: relative;
	padding: 32px 48px;
	background: var(--colorC);
	border-left: 100px solid var(--colorA);
}
.A-top-title h1 {
	margin: 0;
	color: black;
	font: 700 40px var(--fontA);
}



.A-product {
	display: flex;
	align-items: center;
	background: #7390a3;
}

.A-product .woocommerce-product-gallery__wrapper {
	padding: 48px 48px 48px 10vw;
}
.A-product figure a { pointer-events: none; }
.A-product .woocommerce-product-gallery__image {
	padding: 64px;
	background: var(--colorD);
	border-radius: 300px;
}
.A-product .woocommerce-product-gallery__image img {
	width: auto;
	height: 180px;
}
.A-product .product_title {
	margin: 0;
	color: white;
}
.A-product .price {
	margin: 0 0 24px;
	font: 700 48px var(--fontA);
	color: hsla(0, 0%, 100%, 0.6);
}
.A-product .summary { padding: 48px 0; }
.A-product .wccpf-fields-group h4 { display: none; }
.A-product .wccpf-fields-group .wccpf_label { display: none; }
.A-product .wccpf-fields-group .wccpf_value { padding: 4px 0; }
.A-product .posted_in { display: none; }
.A-product table td { border: 0; }
.A-product .quantity { display: inline-block; margin-top: 16px; }
.A-product .wccpf-validation-message { color: #ffeb00; margin-top: 4px; }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce button.button.alt,
.woocommerce .A-product button.button.alt {
	background: var(--colorA);
	border-radius: 50px;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce button.button.alt:hover,
.woocommerce .A-product button.button.alt:hover {
	background: hsl(194, 100%, 37%);
}


form.checkout:after {
	content: "";
	display: table;
	clear: both;
}
#customer_details .col-1,
#customer_details .col-2 {
	width: 100%;
	float: none;
}
#customer_details {
	width: 50%;
	float: left;
}
#order_review_heading,
#order_review {
	width: 50%;
	padding-left: 64px;
	float: right;
}
#order_review .wccpf-cart-data-editor h5,
#order_review .cart-subtotal,
#order_review thead { display: none; }
#order_review .wccpf-cart-data-editor {
    display: inline-block;
    width: calc(100% - 50px);
}
#order_review .product-quantity {
	position: relative;
	top: -12px;
}


.A-woo-content { padding: 32px 10%; }
.A-woo-content .woocommerce-message { display: none; }


.A-cart-button {
	margin: -44px 0 8px;
	padding: 6px 12px;
	background: var(--colorA);
	color: white;
    border-radius: 16px;
	font-size: 18px;
	cursor: pointer;
	float: right;
}
.A-cart-button:hover {
	background: hsl(194, 100%, 37%);
}

.woocommerce-thankyou-order-details,
.woocommerce-table--order-details tfoot tr:not(:last-child),
.wccpf-cart-data-editor fieldset h5,
.cart-collaterals .cart-subtotal,
.cart-collaterals .cart_totals h2 { display: none; }
.product-remove a { text-align: center !important; }
.woocommerce-table--order-details th,
.woocommerce-cart-form__contents th {
	background: var(--colorD);
	color: white;
}





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


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




/* 	--------------
	FOOTER
 	-------------- */
.A-footer {
	display: flex;
    padding: 64px 64px 48px;
    background: #f8f8f8;
	background: var(--colorC);
}
.A-footer-col {
	position: relative;
    width: 25%;
    padding: 0 16px;
    float: left;
}
.A-footer-col .A-logo {
	width: 100%;
}
.A-footer-col .A-logo img {
    width: 100%;
	max-width: 300px;
	max-height: 120px;
    height: auto;
    padding: 0 32px 0 0;
	object-fit: contain;
    object-position: left;
}
.A-footer-col h3 {
	margin: 0;
	font: 700 18px var(--fontA);
	color: var(--colorA);
}
.A-footer-col .A-contact { margin-bottom: 24px; }
.A-footer-col label,
.A-footer-col p,
.A-footer-col li,
.A-footer-col a {
    display: block;
	margin: 2px 0;
	font: 400 16px var(--fontA);
	color: black;
}
.A-footer-col label { display: inline-block; margin-right: 8px; }
.A-footer-col a:hover { color: var(--colorB);  font-weight: 700; }
.A-footer-col ul { padding: 0; margin: 0; list-style: none; }

.A-footer-col:nth-child(2) h3 { padding-left: 32px; margin-bottom: 24px; }
.A-footer-col:nth-child(2) .A-flex { flex-flow: column; }
.A-footer-col:nth-child(2) .A-flex,
.A-footer-col:nth-child(2) p {
	position: relative;
	margin-bottom: 16px;
	padding-left: 32px;
}
.A-contact-line:before,
.A-footer-col:nth-child(2) .A-flex:before,
.A-footer-col:nth-child(2) p:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	background-image: url(img/icon-05.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.A-contact-line:before { left: -32px; }
.A-contact-line-1:before,
.A-footer-col:nth-child(2) .A-flex:before {
	background-image: url(img/icon-06.png);
}
.A-contact-line-2:before,
.A-footer-col:nth-child(2) .A-flex:last-child:before {
	background-image: url(img/icon-07.png);
}
.A-contact-line-4:before {
	background-image: url(img/icon-09.png);
}
.A-footer-col:nth-child(3),
.A-footer-col:nth-child(4) { padding-left: 32px; }

X.A-footer-col:nth-child(3):before,
X.A-footer-col:nth-child(4):before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 200px;
	background: var(--colorB);
}


.A-footer-2 { display: flex; }
.A-footer-2 .Column { position: relative; }
.A-footer-2 .Column:first-child { width: 500px; line-height: 0; }
.A-footer-2 .Column:last-child { flex: 1; }
.A-footer-2 iframe {
	position: relative;
	width: 100%;
	height: 100%;
}

footer .elitour { margin: 32px 0; }
footer .A-footer-col h2 {
	margin: 0 0 12px;
	color: black;
	font-size: 24px;
}


footer a { text-decoration: none; }
.A-social {
	display: flex;
	margin: 32px 0 0;
	text-align: left;
}
.A-social a {
	position: relative;
	margin: 0 16px 0 0;
	cursor: pointer;
}
.A-social svg {
	position: relative;
	width: 24px;
	height: 24px;
	fill: white;
	fill: var(--colorA);
	transition: 0.3s all;
}
.A-social a:beforeX {
	content: "";
	position: absolute;
	left: -8px;
	top: -7px;
	width: 24px;
	height: 24px;
	background: var(--colorA);
	border: 6px solid var(--colorA);
	border-radius: 50px;
	transition: 0.3s all;
	box-shadow: 4px 4px 10px var(--colorA);
}
.A-social a:hover:beforeX {
	background: var(--colorB);
	border: 6px solid var(--colorB);
	transform: scale(0.85);
	box-shadow: 1px 1px 7px var(--colorA);
}
.A-social a:hover svg {
	transform: scale(0.85);
}


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






/* 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 (max-width: 1500px) {
/* **************************************************************** */

	.A-header-right { flex-flow: row wrap; padding: 32px 32px 16px 0; }
	.A-header-right .A-phone { font-size: 16px; }
	.A-header-right .A-phone a { font-size: 28px; }

	#A-career-top,
	#A-page-white,
	#A-page-dark,
	#A-page-top .Col2,
	#A-home-top .Col2 { padding-right: 12vw; }
	
	#A-home-exeid .Aitem h3 { font-size: 24px; padding-top: 39px; }

	#A-home-covid h2 { font-size: 40px; }
	#A-home-covid > .Col2 { padding: 128px 15vw 48px 64px; }
	
	#A-news .Col1 { width: 400px; padding-right: 150px; }
	
}
 



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


	.A-cover figure,
	.A-cover .flexslider { height: 550px; }

	header,
	#A-home-covid > .Col1,
	#A-page-top .Col1,
	#A-home-top .Col1 { width: 400px; }
	.A-cover,
	.A-header-right,
	#A-home-covid > .Col2,
	#A-page-top .Col2,
	#A-home-top .Col2 { width: calc(100% - 400px); }
	
	
	#A-career-mid,
	#A-career-top,
	#A-page-white,
	#A-page-dark,
	#A-page-top .Col2,
	#A-home-top .Col2 { padding-right: 64px; }
	
	#A-home-diagn { padding: 64px 5%; }
	
	#A-home-covid .Acolumns { flex-flow: column; }
	#A-home-covid > .Col2 .Col1 { margin-bottom: 24px; }
	#A-home-covid > .Col2 p { text-align: left; }
	#A-home-covid > .Col2 { padding: 128px 12vw 48px 48px; }
	#A-home-covid .covid-5 img { top: 250px; width: 200px; }
	#A-home-covid .covid-2 img { left: -106px; }
	#A-home-covid > .Col1 figure { height: 100%; }

	#A-career-mid,
	#A-career-top { border-left: 400px solid var(--colorD); }
	#A-page-dark { border-left: 400px solid var(--colorC); }
	#A-page-white { border-left: 400px solid white; }
	
	.page-template-page-no-cover header:after,
	.page-template-page-no-cover .P-crosses { width: 400px; }
	.A-nocover-content,
	.A-SEARCH-RESULTS { width: calc(100% - 400px); padding-left: 0; }
	.search-result-list { padding-right: 10vw; }
	
	.A-item-list { padding-right: 10vw; }
	
	.A-post-title,
	.A-page-title { padding-right: 10vw; }
	
	#A-tmima-low,
	#A-tmima-mid { padding: 48px 10vw 48px 250px; }
	
	.A-diagnostika ul li { width: calc(50% - 16px); }
	
	
	#A-news .Col1 { width: 296px; padding-right: 96px; }
	#A-news .Col1:after { width: 200px; }
	
	#A-post-top { padding: 0 10vw 64px 48px; }
	#A-post-main { padding: 48px 10vw 48px 296px; }
	
	#A-contact-top .Acolumn { width: calc(50% - 200px); }
	#A-contact-top .Col1 { width: 400px; padding: 48px 64px 32px; }
	#A-contact-top .Col3 { padding: 48px 64px 32px; }
	
	#A-contact-low { border-left: 400px solid var(--colorD); }
	
	.A-footer { flex-flow: row wrap; }
	.A-footer-col:first-child {
		width: 100%;
		padding: 0;
		margin-bottom: 32px;
		text-align: center;
	}
	.A-footer-col { width: 33.333%; }
	.A-footer-col .A-logo img { padding: 0; }
	

}






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

	#A-career-top h1,
	#A-home-news h2,
	#A-home-diagn h2,
	#A-home-exeid h2,
	h1 { font-size: 56px; line-height: 1.1; }
	
	.A-cover,
	.A-header-right,
	header { width: 100%; float: none; }
	header { padding: 48px 48px 24px; }
	header .A-flex { align-items: center; }
	header nav .menu-toggle { display: block; margin: 0 auto; cursor: pointer; }
	header nav ul { display: none; text-align: left; }
	header nav ul li { display: block; margin: 24px 0; padding: 0; }
	header nav ul.sub-menu li { margin: 8px 0; padding: 0; }
	header nav ul li.menu-item-has-children > a {
		display: block;
	}
	header nav ul.sub-menu {
		display: block;
		position: relative;
		margin: 0 0 24px;
		padding: 0;
		text-align: right;
		box-shadow: 0 0 0;
		border-top: 4px solid var(--colorA);
	}
	.A-header-right {
    	place-content: center;
		padding: 0 0 16px;
	}
	
	.A-cover figure,
	.A-cover .flexslider { height: 500px; }
	
	#A-home-covid > .Col1,
	#A-page-top .Col1,
	#A-home-top .Col1 { width: 300px; }
	#A-home-covid > .Col2,
	#A-page-top .Col2,
	#A-home-top .Col2 { width: calc(100% - 300px); padding: 64px 48px 48px; }
	
	#A-home-exeid h2 {
		padding: 32px 0 32px 48px;
		font-size: 56px;
		border-left: 350px solid var(--colorC);
	}
	
	
	#A-home-diagn .Acolumns { padding: 32px 15%; }
	#A-home-diagn .A-circles:after { top: -15vw; bottom: unset; }
	#A-home-diagn .stethoscope { top: -19vw; width: 26vw; }
	
	#A-home-covid > .Col2 { padding: 128px 10vw 48px 48px; }
	#A-home-covid .covid-5 img { right: -100px; }
	
	#A-home-news { padding: 64px 2% 96px; }
	
	#A-career-mid,
	#A-career-top { border-left: 300px solid var(--colorD); }
	#A-page-dark { border-left: 300px solid var(--colorC); }
	#A-page-white { border-left: 300px solid white; }
	
	
	
	.page-template-page-no-cover header:after { top: 116%; }
	.page-template-page-no-cover header:after,
	.page-template-page-no-cover .P-crosses { width: 200px; }
	.A-nocover-content,
	.A-SEARCH-RESULTS { width: calc(100% - 200px); padding-left: 48px; }
	.A-nocover-title { margin-top: 0; }
	
	
	.A-SEARCH-RESULTS { width: calc(100% - 0px); padding-left: 0; float: none; }
	.search-result-list { padding-left: 64px; }
	
	#A-post-top,
	#A-tmima-top { border-left: 150px solid var(--colorD); }
	.A-post-title { padding: 48px 10vw 48px 196px; line-height: 1; }
	.A-page-title { padding: 48px 10vw 48px 214px; }
	#A-tmima-low,
	#A-tmima-mid { padding: 48px 10vw 48px 150px; }
	
	.A-faq table { position: relative; left: -72px; }
	.A-faq table td { padding: 4px 6px; font-size: 13px; }
	
	#A-news h1 { display: none; }
	#A-news .Col1 { width: 196px; padding-right: 96px; }
	#A-news .Col1:after { width: 100px; }
	
	.A-post-title:before { left: 196px; top: 8px; }
	.A-post-title:after { left: 140px; top: 48px; }
	
	.A-post-title:before { content: unset; }
	#A-post-main { padding: 48px 10vw 48px 196px; }
	#A-post-main:before { width: 150px; }
	
	
	#A-contact-top p { text-align: left; }
	#A-contact-top .Col1 { width: calc(55% - 100px); padding-right: 32px; }
	#A-contact-top .Col3 { width: calc(45% - 100px); padding-right: 32px; }
	#A-contact-top .Col2 { width: 200px; }
	
	#A-contact-low {
		padding: 48px 64px;
		border-left: 200px solid var(--colorD);
	}
	
	
	.A-footer-col { width: 50%; }
	.A-footer-col:first-child { width: 100%; }
	.A-footer-col:last-child {
		width: 100%;
		padding: 0;
		margin-top: 32px;
		border: 0;
		text-align: center;
	}
	.A-footer-col:last-child:before { content: unset; }
	.A-footer-col:nth-child(2) {
		padding-right: 32px;
		text-align: right;
	}
	.A-footer-col:nth-child(2) .A-flex,
	.A-footer-col:nth-child(2) p { display: inline-flex; }
	.A-footer-2 .Column:first-child { width: 400px; }

}





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

	.A-cover figure,
	.A-cover .flexslider { height: 450px; }
	
	
	#A-home-covid,
	#A-page-top,
	#A-home-top { flex-flow: column; }
	#A-home-covid > .Col2,
	#A-page-top .Col1,
	#A-home-top .Col1,
	#A-page-top .Col2,
	#A-home-top .Col2 { width: 100%; padding: 64px 10vw 48px; }
	#A-page-top .Col1 { height: 400px; }
	#A-home-covid > .Col1,
	#A-page-top .Col1,
	#A-home-top .Col1 { display: none; }
	#A-home-exeid h2 { border-left: 150px solid var(--colorC); }
	
	#A-home-diagn .stethoscope { display: none; }
	#A-home-covid > .Col2 { padding: 128px 15vw 48px 64px; }
	
	#A-testimonials { padding: 48px 15vw; }

	#A-home-news { padding: 48px 0; }
	
	#A-career-mid,
	#A-career-top { border-left: 100px solid var(--colorD); }
	#A-page-dark { border-left: 100px solid var(--colorC); }
	#A-page-white { border-left: 100px solid white; }
	
	#A-career-form { padding: 64px 10vw; }
	
	.page-template-page-no-cover header:after { top: 124%; }
	.page-template-page-no-cover header:after,
	.page-template-page-no-cover .P-crosses { width: 100px; }
	.A-nocover-content { width: calc(100% - 100px); padding-left: 24px; }
	#A-list .Aitem h3 { font-size: 22px; }
	
	
	#A-post-top,
	#A-tmima-top { border-left: 100px solid var(--colorD); }
	.A-post-title:after { left: 100px; }
	.A-post-title { padding: 48px 10vw 48px 144px; font-size: 40px; }
	.A-page-title { padding: 48px 10vw 48px 164px; }
	#A-tmima-low,
	#A-tmima-mid { padding: 48px 10vw 48px 100px; }
	
	#A-news { padding-right: 16px; }
	#A-news .Col1 { width: 98px; padding-right: 48px; }
	#A-news .Col1:after { width: 50px; }
	
	#A-post-main { padding: 32px 10vw 48px 148px; }
	#A-post-main:before { width: 100px; }
	
	
	#A-contact-top { flex-flow: column; }
	#A-contact-top p { margin: 8px 0; }
	#A-contact-top .Acolumn {
		display: flex;
		flex-flow: column;
		align-items: center;
		width: 100%;
		text-align: center;
		padding: 48px;
	}
	#A-contact-top .Col2 { padding: 0; }
	#A-contact-top figure { width: 100%; }
	#A-contact-top img {
		position: relative;
		left: 0;
		height: 150px;
	}
	
	#A-contact-low {
		border-left: 100px solid var(--colorD);
	}
	
	
	.A-footer-col:nth-child(3),
	.A-footer-col:nth-child(2),
	.A-footer-col { width: 100%; text-align: center; padding: 0; }
	.A-footer-col:nth-child(2) { padding: 0 20%; }
	.A-footer-col:before { content: unset !important; }
	.A-footer-col:nth-child(2) h3 { padding-left: 0; }
	.A-footer-col:nth-child(3) .A-flex { place-content: center; }
	.A-footer-2 .Column { height: 400px; }
	.A-footer-2 .Column:first-child { display: none; }
	
}





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

	#A-career-top h1,
	#A-home-news h2,
	#A-home-diagn h2,
	#A-home-exeid h2,
	h1 { font-size: 52px; line-height: 1.1; }
	.A-content p { text-align: left; }
	.A-content h3 { font-size: 26px; }
	
	.single-post .A-content h2 { font-size: 32px; }
	
	.wp-block-button__link { display: inline-block; text-align: center; }

	.A-header-right .A-phone { flex-flow: row wrap; place-content: center; }
	.A-cover figure,
	.A-cover .flexslider { height: 400px; }
	#A-home-exeid h2 {
		padding: 32px 0 32px 24px;
		border-left: 80px solid var(--colorC);
	}
	
	#A-home-diagn .Acolumns { padding: 32px 5%; }
	#A-home-diagn .Acolumn img { width: 140px; height: 140px; }
	#A-home-covid .covid-5 { display: none; }
	#A-home-covid > .Col2 { padding: 96px 10vw 48px; }
	#A-home-covid .covid-3 img { right: 8vw; }

	#A-testimonials { padding: 48px 10vw; }
	
	#A-career-top,
	#A-career-mid,
	#A-page-dark,
	#A-page-white { padding: 32px 48px; }
	#A-page-white > .Acolumns { flex-flow: column; }
	
	
	.A-post-title:after { left: 30px; }
	#A-post-main:before { width: 48px; }
	#A-post-top { padding: 0 32px 32px; }
	#A-post-main { padding: 32px 32px 48px 80px; }
	#A-post-top,
	#A-tmima-top { border-left: 48px solid var(--colorD); }
	.A-post-title,
	.A-page-title { padding: 48px 48px 48px 80px; }
	#A-tmima-low,
	#A-tmima-mid { padding: 48px 10vw 48px 48px; }
	#A-tmima-top > *:not(figure) { padding: 0 32px; }
	
	.A-diagnostika ul li { width: calc(100% - 16px); }

	#A-news { padding-right: 0; }
	#A-news .Col1 { width: 82px; padding-right: 32px; }
	#A-news .Col1:after { width: 50px; }
	
	
	#A-contact-low {
		padding: 16px 32px 32px;
		border-left: 64px solid var(--colorD);
	}
	
	.A-SEARCH-RESULTS .A-nocover-title {
		width: 100%;
		padding: 24px;
		font-size: 32px;
	}
	.search-result-list { padding: 12px 24px; }
	.search-result-list li img { width: 60px; height: 60px; }
	
	.A-footer-col:nth-child(2) { padding: 0 10%; }
}



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

	#A-career-top h1,
	#A-home-news h2,
	#A-home-diagn h2,
	#A-home-exeid h2,
	h1 { font-size: 44px; line-height: 1.1; }
	.A-content h3 { font-size: 24px; }
	.A-post-title { font-size: 36px; }
	.A-page-title { font-size: 40px; }

	.A-cover figure,
	.A-cover .flexslider { height: 300px; }
	
	#A-home-exeid h2 {
		border-left: 24px solid var(--colorC);
	}
	#A-home-exeid .Aitem .image { height: 220px; }
	#A-home-exeid .Aitem h3 { padding-right: 10%; }
	#A-home-exeid .Aposts[data-navi="sides"] .Acontainer { margin: 0 32px; }
	#A-home-exeid .Aposts[data-navi="sides"] .Anavi svg {
		right: 0px;
		width: 40px;
		height: 40px;
	}
	#A-home-exeid .Aposts[data-navi="sides"] .Anavi svg:nth-child(1) { left: 0; right: unset; }
	
	#A-career-carousel .Acontainer,
	#A-home-news .Aposts[data-navi="sides"] .Acontainer { margin: 0 32px; }
	#A-career-carousel .Anavi svg,
	#A-home-news .Aposts[data-navi="sides"] .Anavi svg {
		right: -8px;
		width: 40px;
		height: 40px;
	}
	#A-career-carousel .Anavi svg:nth-child(1),
	#A-home-news .Aposts[data-navi="sides"] .Anavi svg:nth-child(1) { left: -8px; right: unset; }
	#A-home-news .Aposts[data-navi="sides"] .Anavi { top: calc(50% - 61px); }
	
	
	
	#A-home-diagn { padding: 64px 5% 24px; }
	#A-home-diagn .Acolumns {
		flex-flow: column;
		align-items: center;
	}
	#A-home-diagn .Acolumn { width: 100%; }
	#A-home-diagn .Col1 { margin-bottom: 24px; }
	#A-home-diagn .Acolumn img { width: 120px; height: 120px; }
	#A-testimonials { padding: 48px 5vw; }

	
	#A-career-top,
	#A-career-mid,
	#A-page-dark,
	#A-page-white { padding: 24px 32px; }
	#A-career-mid,
	#A-career-top { border-left: 64px solid var(--colorD); }
	#A-page-dark { border-left: 64px solid var(--colorC); }
	#A-page-white { border-left: 0; }
	
	.page-template-page-no-cover header:after,
	.page-template-page-no-cover .P-crosses { width: 64px; }
	.A-nocover-content { width: calc(100% - 64px); padding-left: 16px; }
	
	
	#A-tmima-low,
	#A-tmima-mid { padding: 24px 32px; }
	
	#A-contact-low {
		padding: 16px 24px 32px;
		border-left: 32px solid var(--colorD);
	}
	
	.A-footer-col:nth-child(2) { padding: 0 5%; }
	.A-footer-col:nth-child(2) { text-align: left; }
	.A-footer-col:nth-child(2) h3 { text-align: center; margin-bottom: 8px; }
	.A-footer-col:nth-child(3) .A-flex { display: block; }
	footer .elitour {
		width: 100%;
		height: auto;
	}
	.A-footer-2 .Column { height: 340px; }
}



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


}












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