/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Fonts
# Root
# Global
    ## Tools
# Typography
# actusblank
# Menu
# Footer
# Layout


--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700,800&subset=greek');

@font-face {
    font-family: 'HandBook';
    src: url(fonts/PFHandbookPro-Regular.ttf);
    font-weight: 400;
}
@font-face {
    font-family: 'HandBook';
    src: url(fonts/PFHandbookPro-Bold.ttf);
    font-weight: 700;
}
@font-face {
    font-family: 'HandBook';
    src: url(fonts/PFHandbookPro-Black.ttf);
    font-weight: 900;
}

/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/
:root {
    
    --fontA: 'Open Sans', sans-serif;
    --fontB: 'HandBook', sans-serif;
    
	
    --txA: 0 0 1px hsla(176, 99%, 33%, 0.4);
    --txB: 0 0 1px hsla(217, 51%, 20%, 0.4);
    --txC: 0 0 1px hsla(215, 26%, 37%, 0.4);
    --txD: 0 0 1px hsla(0, 0%, 90%, 0.4);
    
    --txA3: 0 0 1px hsla(210, 74%, 48%, 0.4);
    
    --txWH: 0 0 1px hsla(0, 0%, 100%, 0.4);
    --txBL: 0 0 1px hsla(0, 0%, 0%, 0.4);
	
	
	
	
	
}




/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
body { 
    margin: 0;
    font: 400 14px var(--fontA); 
    line-height: 1.3; 
}
*, *::before, *::after { box-sizing: border-box; }    
#content, footer {
    display: block !important;
}
 

/*--------------------------------------------------------------
## Tools
--------------------------------------------------------------*/
.hvcenter {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.vcenter {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.hidden { display: none; }
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.actus-abs {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}



/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
a,p,h1,h2,h3,h4,h5 {
    color: hsl(60, 0%, 10%);
    text-shadow: 0 0 1px hsla(60, 41%, 10%, 0.35);
}

a {
    margin: 0 0 8px 0;
    font: 900 16px var(--fontA);
    text-decoration: none;
    color: var(--colorA);
    text-shadow: var(--txA);
}
p, li {
    margin: 0 0 8px 0;
    font: 400 16px var(--fontA);
}
h1 {
    margin: 8px 0 16px 0;
    font: 900 36px var(--fontA);
}
h2 {
    margin: 8px 0 8px 0;
    font: 400 28px var(--fontA);
    color: var(--colorA);
    text-shadow: var(--txA);
}
h3 {
    margin: 0 0 8px 0;
    font: 900 22px var(--fontA);
}
h4 {
    margin: 16px 0 0 0;
    font: 700 20px var(--fontA);
}
h5 {
    margin: 0 0 8px 0;
    font: 400 18px var(--fontA);
}

/* Heading Underline */
.uline { position: relative; display: inline-block; }
.uline::after {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -12px;
    content: "";
    border-bottom: 8px solid var(--colorA);
}
.uline-small::after { width: 64px; }

h1.uline { margin-bottom: 24px; }
h2.uline { 
    margin-bottom: 24px;
    color: var(--colorB);
    text-shadow: var(--txB);
    font-weight: 900;
}
h3.uline::after { 
    bottom: -8px; 
    border-bottom: 4px solid var(--colorA);
}
h4.uline::after,
h5.uline::after { bottom: -4px; border-bottom: 2px solid var(--colorA); }


.abs {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	object-fit: cover;
}


/* DARK BACK */
.dark-back h1 {
    color: white;
    text-shadow: var(--txWH);
}
.dark-back h3,
.dark-back h4,
.dark-back h5,
.dark-back p,
.dark-back a {
    color: var(--colorD);
    text-shadow: var(--txD);
}

.dark-back h2.uline {
    color: white;
    text-shadow: var(--txWH);
    font-weight: 900;
}
.dark-back h3.uline,
.dark-back h4.uline,
.dark-back h5.uline {
    margin-bottom: 16px;
    color: white;
    text-shadow: var(--txWH); 
}


.ASKL-button-round {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: var(--colorA);
    border-radius: 100px;
    cursor: pointer;
}
.ASKL-button-round .overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    overflow: hidden;
    background: black;
    transition: 0.2s all;
    border-radius: 16px;
}
.ASKL-button-round:hover .overlay { width: 100%; }
.ASKL-button-round p {
    position: relative;
    padding: 4px 16px;
    margin: 0;
    letter-spacing: 0.7px;
    font: 700 14px var(--fontA);
    color: white;
}


.ASKL-round {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: var(--colorA);
    border-radius: 100px;
}
.ASKL-round p {
    position: relative;
    padding: 4px 16px;
    margin: 0;
    letter-spacing: 0.7px; 
    font: 700 14px var(--fontA);
    color: white;
    text-shadow: var(--txWH);
}
.ASKL-round.green { background: #0f6f4e; }




/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.half  { width: 50%; }
.third { width: 33.333%; }
.two-thirds { width: 66.666%; }
.quarter  { width: 25%; }

.floL { float: left; }
.floR { float: right; }

.txtC { text-align: center; }
.txtL { text-align: left; }
.txtR { text-align: right; }


.space { width: 100%; height: 32px; clear: both; }
.space16 { height: 16px; }
.space64 { height: 64px; }
.space128 { height: 128px; }

.pad8  { padding: 8px; }
.pad16 { padding: 16px; }
.pad32 { padding: 32px; }
.pad64 { padding: 64px; }
.pad128 { padding: 128px; }

.ASKL-padding-A { padding: 0 10%; }
.ASKL-padding-B { padding: 0 15%; }
.ASKL-padding-C { padding: 0 20%; }
.ASKL-padding-A2 { padding: 5% 10%; }
.ASKL-padding-B2 { padding: 5% 15%; }
.ASKL-padding-C2 { padding: 5% 20%; }
.ASKL-padding-A3 { padding: 10% 10%; }
.ASKL-padding-B3 { padding: 10% 15%; }
.ASKL-padding-C3 { padding: 10% 20%; }
 


 
.ASKL-search {
	position: absolute;
    top: 32px;
    right: 5%;
	opacity: 0.35;
}
.ASKL-search:hover {opacity: 1;}
.ASKL-search label span { display: none; }
.ASKL-search input {
    min-width: 320px;
    padding: 4px 8px;
    font: 400 14px var(--fontA);
    background: hsla(0, 0%, 0%, 0.1);
    border: 0;
    outline: 0;
    border-radius: 100px;
}
.ASKL-search .search-submit {
    position: absolute;
    top: 2px;
    right: 4px;
    background: transparent;
    border: 0;
    color: black;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.7;
}
.ASKL-search .search-submit:hover { opacity: 1; }
.ASKL-search .search-submit img {
    width: auto;
    height: 20px;
    padding: 2px 0;
	object-fit: contain;
}








/* **************************************************************** */
/* **************************************************************** */
/* **************************************************************** */



/* 	--------------
	HEADER
 	-------------- */
.ASKL-header {
	position: relative; 
	padding: 64px 5% 32px; 
	z-index: 99;
}
.ASKL-header .ASKL-logo {
    position: relative;
    width: 300px;
    text-align: center;
    z-index: 9;
    float: left;
}
.ASKL-header .ASKL-logo img {
    max-width: 400px;
    max-height: 160px;
    height: auto; 
}
.ASKL-logo a { display: block; }

.ASKL-navigation .menu-toggle { display: none; }
.ASKL-navigation { 
    display: block;
    position: relative;
    width: calc(100% - 300px);
    text-align: right;
    z-index: 9;
    float: left;
}
.ASKL-navigation ul {
    display: inline-block;
    padding: 4px 0;
    list-style: none;
}
.ASKL-navigation ul li { 
    display: inline-block;
    position: relative;
    width: auto;
    padding: 8px 0 8px 32px;
    margin: 0;
    cursor: pointer;
}
.ASKL-navigation ul li a {
    position: relative;
    font: 700 16px var(--fontA);
    z-index: 9;
}
.ASKL-navigation ul li:hover > a,
.ASKL-navigation ul li.current_page_item > a {
    color: var(--colorB);
    opacity: 1;
}
.ASKL-navigation ul.sub-menu {
    position: absolute;
    left: 16px;
    top: 0;
    width: auto;
    min-width: 140px;
    padding: 36px 0 4px;
	transition: 0.3s all;
	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
	z-index: 98;
}
.ASKL-navigation ul.sub-menu > li {
    display: block;
    padding: 8px 16px;
    margin: 0;
    background: white;
    text-align: left;
	word-break: keep-all;
}
.ASKL-navigation ul.sub-menu.open {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}


.ASKL-header-B { padding: 32px 5% 0px; }
.ASKL-header-B .ASKL-logo {
    display: block;
    width: 100%;
    float: none;
}
.ASKL-header-B .ASKL-navigation {
	width: unset;
	text-align: center;
    float: none;
}




/* 	--------------
	CAROUSEL
 	-------------- */
.ASKL-carousel {
	position: relative;
    width: 100%;
    overflow: hidden;
}
.ASKL-carousel .ASKL-carousel-items {
    position: relative;
    left: 0;
    display: flex;
    flex-flow: row nowrap;
    width: auto;
    height: 100%;
    transition: 0.5s all;
}
.ASKL-carousel .ASKL-item {
    position: relative;
    width: 25%;
    min-width: 25%;
    height: 380px;
    padding: 0 16px;
    cursor: pointer;
    z-index: 999;
}
.ASKL-carousel .ASKL-item .date { display: none; }
.ASKL-carousel .ASKL-item img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}
.ASKL-carousel .ASKL-item h3 {
    line-height: 1.2;
    font-size: 18px;
}
.ASKL-carousel-navigation {
    position: absolute;
    right: calc(10% + 8px);
	top: 104px;
}
.ASKL-carousel-navigation img {
    display: inline-block;
    width: 32px;
    height: 28px;
    cursor: pointer;
    opacity: 0.25;
}
.ASKL-carousel-navigation img:hover { opacity: 1; }
.ASKL-carousel-navigation img.arrow-left { transform: rotate(180deg); }

.ASKL-recent-news {
	position: relative;
	padding: 64px 10%;
	margin-bottom: 32px;
}
.ASKL-recent-news h2 {
    position: relative;
    margin: 32px 0 64px -32px;
    font: 700 48px var(--fontB);
    line-height: 1;
    color: var(--colorB);
}
.ASKL-recent-news h2:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 48px;
    height: 4px;
    background: var(--colorB);
}



/* 	--------------
	HOME SLIDER
 	-------------- */
.ASKL-home-slider {
    position: relative;
    width: 100%;
    height: 600px;
    background: var(--colorB);
	overflow: hidden;
}
.ASKL-home-slider .slide,
.ASKL-home-slider .slides,
.ASKL-home-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ASKL-home-slider .moto {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-end;
    position: absolute;
    right: 0%;
    top: 0;
    width: 40%;
    height: 100%;
    padding: 0 7vw 64px;
    background: var(--gradA);
    text-align: right;
}
.ASKL-home-slider .moto h2 {
	width: 100%;
    margin: 0;
    font: 700 38px var(--fontB);
    line-height: 0.9;
    color: white;
    text-shadow: var(--txWH);
}
.ASKL-home-slider .moto h2 span {
    color: var(--colorA);
    text-shadow: var(--txA);
}
.ASKL-home-slider .slides .AB-slide { overflow: hidden; }



/* 	--------------
	HOME TEXT
 	-------------- */
.ASKL-home-text {
    position: relative;
    width: 100%;
    padding: 96px 20vw;
}
.ASKL-home-text h2 {
    display: block;
    position: relative;
    left: 33.333%;
    width: 30%;
    padding-bottom: 8px;
    margin-bottom: 8px;
    margin-top: 0;
    font: 900 32px var(--fontB);
    line-height: 0.9;
}
.ASKL-home-text h2:after {
    display: block;
    content: " ";
    width: 64px;
    margin-top: 8px;
    border-top: 4px solid var(--colorB);
}
.ASKL-home-text .quote {
    width: 33.333%;
    text-align: right;
    font-weight: 700;
    font-style: italic;
    font-size: 22px;
    float: left;
    padding-right: 16px;
}
.ASKL-home-text .content {
    width: 66.666%;
    column-count: 2;
    font-size: 16px;
    color: hsla(0, 0%, 0%, 0.6);
    float: left;
}

.ASKL-home-text-B h2 {
	left: 0;
    width: 100%;
	margin: 0;
    text-align: center;
}
.ASKL-home-text h2:after { margin: 8px auto 0; }
.ASKL-home-text-B .quote {
    width: 100%;
	margin-bottom: 32px;
    text-align: center;
	float: none;
}
.ASKL-home-text-B .content {
    width: 100%;
	float: none;
}



/* 	--------------
	HOME ICONS
 	-------------- */
.ASKL-home-icons {
	padding: 64px 10%;
	background: var(--colorB);
	text-align: center;
}
.ASKL-home-icons h2 {
	margin: 0 0 32px;
    font: 700 32px var(--fontB);
    color: var(--colorA);
    text-shadow: var(--txA);
}
.ASKL-home-icons .ASKL-container {
	display: flex;
}
.ASKL-home-icons .ASKL-home-icons-icon {
	width: 33.333%;
    border-right: 4px solid var(--colorA);
	cursor: pointer;
}
.ASKL-home-icons .ASKL-home-icons-icon:last-child { border: 0; }
.ASKL-home-icons .ASKL-home-icons-icon img {
	width: 100%;
	height: 80px;
	object-fit: contain;
	transition: 0.5s all;
    opacity: 0.75;
}
.ASKL-home-icons .ASKL-home-icons-icon:hover img {
	transform: scale(1.2);
	opacity: 1;
}
.ASKL-home-icons .ASKL-home-icons-icon h3 {
    margin: 16px 0;
    font: 700 24px var(--fontA);
	color: var(--colorA);
}

.ASKL-home-icons-B { background: var(--colorD); }
.ASKL-home-icons-B .ASKL-home-icons-icon img { filter: invert(1); }



/* 	--------------
	HOME QUOTE
 	-------------- */
.ASKL-home-quote {
    position: relative;
    width: 100%;
    padding: 64px 25vw;
    text-align: center;
}
.ASKL-home-quote h2 {
    display: block;
    position: relative;
    font: 300 40px var(--fontB);
}




/* 	--------------
	DOCTOR SLIDER
 	-------------- */
.ASKL-doctor-slider {
	position: relative;
    height: 360px;
}
.ASKL-doctor-slider .ASKL-left {
    position: relative;
	width: 40%;
    height: 100%;
	float: left;
}
.ASKL-doctor-slider .ASKL-right {
    position: relative;
	width: 60%;
    height: 100%;
    padding: 16px 30% 16px 64px;
    font: 400 20px var(--fontA);
    color: white;
    text-shadow: var(--txWH);
    background: var(--colorB);
	float: left;
}
.ASKL-doctor-slider .ASKL-left img {
	position: absolute;
    left: unset;
    top: unset;
    right: 0;
    bottom: 0;
    width: auto;
    height: 100%;
    object-fit: contain;
}
.ASKL-doctor-slider .ASKL-right h1 {
    position: relative;
    margin: 32px 0;
    font: 700 48px var(--fontB);
    line-height: 1;
    color: var(--colorA);
}
.ASKL-doctor-slider .ASKL-right h1:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 48px;
    height: 4px;
    background: var(--colorA);
}
.ASKL-doctor-slider .ASKL-right h2 {
	margin: 0;
	color: white;
	font: 900 24px var(--fontA); 
}
.ASKL-doctor-slider .ASKL-right h3 { 
	color: white;
	font: 300 24px var(--fontA);
}
.ASKL-doctor-slider .ASKL-right .short { 
    margin-top: 16px;
	color: hsla(0, 0%, 100%, 0.5);
    font: 300 16px var(--fontA);
}
.ASKL-doctor-slider .ASKL-right a {
	display: block;
	margin-top: 16px;
	font-size: 18px;
	opacity: 0.5;
}
.ASKL-doctor-slider .ASKL-right a:hover { opacity: 1; }
.page-template-doctor .ASKL-doctor-slider .ASKL-right a { display: none; }

.ASKL-doctor-slider-B { height: 320px; }
.ASKL-doctor-slider-B .ASKL-left {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 20%;
    height: 400px;
    float: none;
    z-index: 9;
}
.ASKL-doctor-slider-B .ASKL-right {
    position: relative;
    width: 100%;
    padding: 0 40% 0 10%;
}



/* 	--------------
	DOCTOR TEXT
 	-------------- */
.ASKL-doctor-text {}
.ASKL-doctor-text .ASKL-left {
    position: relative;
	width: 40%;
    height: 100%;
    padding: 32px 32px 32px 64px;
	text-align: right;
	float: left;
}
.ASKL-doctor-text .ASKL-right {
    position: relative;
	width: 60%;
    height: 100%;
    padding: 32px 64px 32px 32px;
    font: 400 16px var(--fontA);
	float: left;
}
.ASKL-doctor-text .ASKL-left h2 {
	margin: 0;
}
.ASKL-doctor-text .ASKL-left p,
.ASKL-doctor-text .ASKL-left a {
	display: block;
	margin: 0;
    font: 700 18px var(--fontA);
}
.ASKL-doctor-text .ASKL-left h3.title { margin-top: 64px; }


/* 	--------------
	PHOTO GALLERY
 	-------------- */
.ASKL-gallery {
	padding: 64px 10%;
}
.ASKL-gallery .ASKL-container {
	display: flex;
	flex-flow: row wrap;
}
.ASKL-gallery .ASKL-container img {
	flex: 1 1 auto;
	width: 240px;
	height: 200px;
	margin: 2px;
	object-fit: cover;
	border-radius: 7px;
}
.ASKL-gallery h2 {
    position: relative;
    margin: 32px 0 64px -32px;
    font: 700 48px var(--fontB);
    line-height: 1;
    color: var(--colorB);
}
.ASKL-gallery h2:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 48px;
    height: 4px;
    background: var(--colorB);
}

/* 	--------------
	CONTACT
 	-------------- */
.ASKL-contact {
	text-align: center;
}
.ASKL-contact .doctor-info { padding: 32px 0; }
.ASKL-contact-box {
	display: flex;
	margin-top: 64px;
}
.ASKL-contact-box a { display: block; }
.ASKL-contact-box > div { flex: 1 1 auto; width: 50%; height: 450px; }
.ASKL-contact-box > div iframe { width: 100%; height: 100%; }
.ASKL-contact-box-bottom { padding: 0 20%; }

/* Contact Form */
.ASKL-contact-form { 
	position: relative;
    height: 100%;
	padding: 32px 10%;
	background: var(--colorD);
	background: hsl(0, 0%, 85%);
}
.ASKL-form { position: relative; }
.ASKL-contact-form > h3 {
	margin-bottom: 32px;
	text-align: center;
	font-size: 18px;
	opacity: 0.5;
}
.theme-A .ASKL-contact-form-field {
	display: grid;
	grid-template-columns: 140px auto;
	position: relative;
	width: 100%;
	margin-bottom: 8px;
	background: aliceblue;
	border-radius: 100px;
	transition: 0.6s all;
	overflow: hidden;
}
.theme-A .ASKL-contact-form-field label {
	position: relative;
	width: 100%;
	padding: 8px;
	overflow: hidden;
	font-weight: 700;
	color: white;
	background: hsla(0, 0%, 0%, 0.25);
	border-radius: 100px;
	transition: 0.4s all;
}
.theme-A .ASKL-contact-form-field.required label::before {
	content: "*";
	position: absolute;
	left: 6px;
	top: 4px;
	font-weight: 900;
	font-size: 26px;
	color: white;
	opacity: 0.5;
}
.theme-A .ASKL-contact-form-field.error label {
	background: hsl(0, 100%, 85%);
}
.theme-A .ASKL-contact-form-field.closed { width: 0%; }
.theme-A .ASKL-contact-form-field.closed label { width: 0%; }
.theme-A .ASKL-contact-form-field textarea,
.theme-A .ASKL-contact-form-field input {
	position: relative;
	padding: 8px;
	font-weight: 700;
	background: transparent;
	border: 0;
	outline: 0;
	border-radius: 100px;
	transition: background 0.6s;
}
.theme-A .ASKL-contact-form-field textarea:focus,
.theme-A .ASKL-contact-form-field input:focus { background: var(--colorE); }
.theme-A .ASKL-contact-form-field.textarea { border-radius: 16px 32px 32px; }
.theme-A .ASKL-contact-form-field textarea {
	height: 160px; 
	font-weight: 400;
	border-radius: 16px 32px 32px;
	resize: none;
}
.theme-A .ASKL-contact-form-field.textarea label {
	height: 34px;
	border-radius: 16px;
}
.ASKL-contact-form-submit,
.theme-A .ASKL-contact-form-submit {
	position: relative;
	text-align: right;
	z-index: 9;
}
.theme-A .ASKL-contact-error {
	position: relative;
	top: -32px;
	padding-right: 140px;
	text-align: left;
	text-shadow: var(--txBL);
	color: hsl(0, 100%, 30%);
}
.theme-A .ASKL-contact-error ul { margin: 0; }
.theme-A .ASKL-contact-result {
	position: absolute;
	top: 64px;
	width: 0%;
	margin: 32px 0; 
	overflow: hidden;
	white-space: nowrap;
	transition: 0.6s all ease 0.6s;
}
.theme-A .ASKL-contact-result.open { width: 100%; }
.theme-A .ASKL-contact-result p { padding: 8px 24px; }
.theme-A.ASKL-contact-form .ASKL-button-round { background: aliceblue; }
.theme-A.ASKL-contact-form .ASKL-button-round p { color: black; }
.theme-A.ASKL-contact-form .ASKL-button-round:hover p { color: white; }
.theme-A.ASKL-contact-form .ASKL-button-round:hover .overlay { background: var(--colorA); }
	







/* 	--------------
	FOOTER
 	-------------- */
.ASKL-footer {
    padding: 64px 0 0;
    background: hsl(0, 0%, 95%);
}
.ASKL-footer-col {
    width: 30%;
    padding: 16px;
    float: left;
}
.ASKL-footer-col:first-child { width: 40%; }
.ASKL-footer-col .ASKL-logo img {
    max-width: 400px;
    height: auto;
    padding: 0 32px;
}
.ASKL-footer-col p { margin-bottom: 2px; font-size: 14px; }
.ASKL-footer-col a {
    display: block;
    margin: 0;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 700;
}
.ASKL-footer-col a:hover { font-weight: 700; color: var(--colorB); }
.ASKL-footer-col .info { margin-bottom: 32px; }
.ASKL-footer-col h3 { font-size: 22px; }
.ASKL-footer-col h4 {
    margin: 0;
    font-size: 18px;
    color: black;
    text-shadow: 0 0 1px hsla(0, 0%, 0%, 0.35);
}
.ASKL-footer-col .line {
    width: 48px;
    border-bottom: 4px solid black;
    margin-bottom: 8px;
}
.ASKL-footer-col ul {
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}
.ASKL-footer-col ul a {
	margin-bottom: 4px;
	font-size: 16px;
	cursor: pointer;
}
.ASKL-footer-created {
    width: 100%;
    text-align: center;
    padding: 8px;
    background: hsl(0, 0%, 40%);
}
.ASKL-footer-created a {
	font-size: 14px;
    font-weight: 700;
    color: white;
}
.ASKL-footer-created img {
    height: 40px;
    margin: 16px 0 8px 0;
}
.ASKL-footer-col .AB-logo img { max-width: 100%; height: auto; }

.ASKL-footer-social {
    padding: 32px 0;
    background: hsl(0, 0%, 95%);
	text-align: center;
}
.ASKL-footer-social .ASKL-icon {
	margin: 0 16px;
	cursor: pointer;
}
.ASKL-footer-social .ASKL-icon img { height: 32px; transition: 0.3s all; }
.ASKL-footer-social .ASKL-icon:hover img { transform: scale(1.2); }

.ASKL-footer-B { text-align: center; }
.ASKL-footer-B .ASKL-footer-col { width: 100%; }
.ASKL-footer-B .ASKL-footer-col:nth-child(2){ display: flex; padding: 0 20%; }
.ASKL-footer-B .ASKL-footer-col:nth-child(3){ display: none; }
.ASKL-footer-B .ASKL-footer-col .info { flex: 1 1 auto; }
.ASKL-footer-B .ASKL-footer-col .line { margin: 0 auto 8px; }







/* 	--------------
	LIST
 	-------------- */
.EMS-list {
	position: relative;
    left: 0;
    width: 100%;
    padding: 80px 20%;
    margin: 64px 0;
    background: var(--colorD);
}
.EMS-list-item { 
    margin-bottom: 48px;
    background: white;
    box-shadow: 8px 8px 16px hsla(0, 0%, 0%, 0.3);
}
.EMS-list-item a { display: flex; margin: 0; }
.EMS-list-item img {
	width: 30%;
	height: 160px;
	object-fit: cover;
}
.EMS-list-item a { display: flex; }
.EMS-list-item .text {
    display: flex;
    flex-flow: row wrap;
    align-content: center;
	width: 70%;
	padding: 0 32px;
}
.EMS-list-item .text h2 {
	margin: 0;
	font: 900 26px var(--fontB);
	line-height: 1.1;
    color: var(--colorB);
}

.actus-blog-navigation {
	margin: 64px 0;
	text-align: center;
}
.actus-blog-navigation li a,
.actus-blog-navigation li a:hover, 
.actus-blog-navigation li.active a,
.actus-blog-navigation li.disabled {
    color: #fff;
    text-decoration:none;
}
.actus-blog-navigation li {
    display: inline;
}
.actus-blog-navigation li a,
.actus-blog-navigation li a:hover,
.actus-blog-navigation li.active a,
.actus-blog-navigation li.disabled {
    background-color: var(--colorB);
    border-radius: 3px;
    cursor: pointer;
    padding: 12px;
    padding: 0.75rem;
}
.actus-blog-navigation li a:hover,
.actus-blog-navigation li.active a {
    background-color: var(--colorA);
}





/* 	--------------
	SINGLE POST
 	-------------- */
#main > h1,
.ASKL-single-post .post-title {
	position: relative;
    padding: 0 15% 16px;
	margin: 32px 0 48px;
	text-align: center;
	color: var(--colorB);
}
#main > h1:after,
.ASKL-single-post .post-title:after{
	content: " ";
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 64px;
	height: 6px;
	background: var(--colorA);
}
.ASKL-single-post .post-slide {
	position: relative;
	width: 100%;
	height: 600px; 
}
.ASKL-single-post .post-slide .post-image-back,
.ASKL-single-post .post-slide .post-image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.25;
}
.ASKL-single-post .post-slide .post-image-back { filter: blur(6px); }
.ASKL-single-post .post-slide .post-image {
	left: 10%;
	width: 80%;
	opacity: 1;
	box-shadow: 8px 8px 32px black;
}
.single-services .post-slide .post-image,
.single-pathiseis .post-slide .post-image {
    right: 0;
    left: unset;
    width: calc(100% - 300px);
}

.ASKL-single-post .post-content {
	position: relative;
	height: auto;
    min-width: 50%;
	padding: 128px 15%;
}
.ASKL-single-post .post-content p { margin-bottom: 16px; }
.single-post .ASKL-single-post .post-content { padding: 128px 20%; }

.post-main { display: flex; }
.post-main .post-sidebar {
    flex: 1 0 auto;
	width: 300px;
	height: auto;
	padding: 80px 32px;
	color: white;
	background: var(--colorB);
}
.post-main .post-sidebar a {
	display: block;
	margin: 0 0 16px;
	color: white;
	opacity: 0.6;
	cursor: pointer;
}
.post-main .post-sidebar a.active,
.post-main .post-sidebar a:hover { opacity: 1; }



/* 	--------------------
	CAROUSEL PARALLAX
 	-------------------- */
.ASKL-carousel-parallax {
    position: relative;
	min-height: 450px;
    padding: 64px 10% 80px;
}
.ASKL-carousel-container {
	position: relative;
	z-index: 9;
}
.ASKL-carousel-parallax h2 { 
	position: relative;
	margin-bottom: 16px;
	color: white;
    font: 700 48px var(--fontB);
	z-index: 9;
}
.ASKL-carousel-parallax h2:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 48px;
    height: 4px;
    background: white;
}
.ASKL-carousel-parallax .overlay {
	background: hsla(0, 0%, 0%, 0.75);
    z-index: 9;
}
.ASKL-carousel-parallax .ASKL-carousel-items { top: 16px; }
.ASKL-carousel-parallax .ASKL-item { 
	width: 33.333%; 
	min-width: 33.333%;
    height: 280px;
}
.ASKL-carousel-parallax .ASKL-item img { height: 200px; }
.ASKL-carousel-parallax .ASKL-item h3 {
	font: 400 24px var(--fontA);
	color: white;
}
.ASKL-carousel-parallax .ASKL-item .more,
.ASKL-carousel-parallax .ASKL-item p { display: none; }
.ASKL-carousel-parallax .ASKL-carousel-navigation { z-index: 99; }
.ASKL-carousel-parallax .ASKL-carousel-navigation img { filter: invert(1); }


/* PARALLAX */
.actus-parallax { overflow: hidden; }




/* 	--------------------
	HOME VIDEO
 	-------------------- */
.ASKL-home-video {
	display: flex;
	position: relative;
	padding: 160px 9%;
}
.S-left,
.S-right {
	flex: 1 1 auto; 
	padding: 0 2%;
}

.ASKL-home-video .text {
	position: relative;
	padding-right: 20%;
}
.ASKL-home-video .text h2 {
	font: 300 36px var(--fontA);
	line-height: 1;
	color: hsla(0, 0%, 0%, 0.5);
	text-shadow: 0 0 0 transparent;
}
.ASKL-home-video .text h2 b {
	font: 700 36px var(--fontA);
	color: hsla(0, 0%, 0%, 1);
}
.ASKL-home-video .text p {
	font: 400 14px var(--fontA);
	color: hsla(0, 0%, 0%, 0.5);
	text-shadow: 0 0 0 transparent;
}

.ASKL-home-video .AB-plus {
	display: inline-block;
	margin: 32px 0;
	background: black;
	border-radius: 60px;
	cursor: pointer;
}
.ASKL-home-video .AB-plus p {
    width: 30px;
    height: 30px;
	padding: 4px 7px 10px;
	margin: 0;
	font-size: 28px;
	font-weight: 900;
    line-height: 0.75;
    color: white;
}
.ASKL-home-video .AB-plus:hover { background: var(--colorA); }


.ASKL-home-video .webtv-box {
	position: relative;
    margin-left: 56px;
    text-align: center;
}
.ASKL-home-video .webtv-box img { width: 560px; height: auto; }
.ASKL-home-video .webtv-box iframe {
	position: absolute;
	left: 0;
	right: 0;
	top: 16px;
	margin: 0 auto;
	width: 410px;
	height: 276px;
}















/* **************************************************************** */
@media (min-width: 1600px) {
/* **************************************************************** */

	.ASKL-home-slider { height: 700px; }
	.ASKL-carousel-parallax { padding: 80px 20%; }
	.ASKL-home-icons { padding: 64px 20%; }
	.ASKL-doctor-slider-B { height: 420px; }
	.ASKL-doctor-slider-B .ASKL-left { height: 520px; }
	.ASKL-doctor-slider-B .ASKL-right { padding: 32px 40% 32px 10%; }
	.ASKL-recent-news .ASKL-carousel .ASKL-item { width: 20%; min-width: 20%; }
	
}




/* **************************************************************** */
@media (max-width: 1200px) {
/* **************************************************************** */

	.ASKL-recent-news .ASKL-carousel .ASKL-item { width: 33.333%; min-width: 33.333%; }
    
    
}






/* **************************************************************** */
@media (max-width: 1024px) {
/* **************************************************************** */

	.ASKL-home-text { padding: 96px 10vw; }
	.ASKL-home-video { flex-flow: row wrap; padding: 96px 12%; }
	.ASKL-home-video .S-right { text-align: center; }
	.ASKL-home-video .webtv-box { margin-left: 0; }
	.ASKL-home-video .text { padding: 32px 0 0; }
	
}





/* **************************************************************** */
@media (max-width: 800px) {
/* **************************************************************** */

	.ASKL-header { width: 100%; text-align: center; }
	.ASKL-header .ASKL-logo { float: none; }
	.ASKL-header .ASKL-navigation { width: 100%; float: none; }
	.ASKL-navigation ul { text-align: center; }
	.ASKL-search {
		top: unset;
		bottom: 16px;
		right: 0;
		left: 0;
	}
	.ASKL-search .search-submit { right: calc(50% - 156px); }
	
	.ASKL-home-slider { height: 450px; }
	.ASKL-home-slider .moto { width: 60%; }
	.ASKL-home-text .content { column-count: 1; }
	.ASKL-carousel-parallax { padding: 80px 5%; }
	.ASKL-home-quote { padding: 64px 5vw; }
	.ASKL-home-icons { padding: 64px 5%; }
	.ASKL-home-video { padding: 96px 6% 48px; }
	.ASKL-doctor-slider-B { height: 360px; }
	.ASKL-recent-news .ASKL-carousel .ASKL-item { width: 50%; min-width: 50%; }
	
	.ASKL-footer-col:first-child { width: 100%; }
	.ASKL-footer-col {
		width: 100%;
		float: none;
		text-align: center;
	}
	.ASKL-footer-col .line { margin: 0 auto 8px; }
	.ASKL-footer-col:nth-child(2) { display: flex; }
	.ASKL-footer-col .info {
		flex: 1 1 auto;
	}
	
}





/* **************************************************************** */
@media (max-width: 640px) {
/* **************************************************************** */

	.ASKL-carousel-parallax .ASKL-carousel .ASKL-item { width: 50%; min-width: 50%; }
	.ASKL-home-video .webtv-box img { width: 490px; }
	.ASKL-home-video .webtv-box iframe { top: 15px; width: 366px; height: 242px; }
	.ASKL-recent-news .ASKL-carousel .ASKL-item { width: 50%; min-width: 50%; }
	

}



/* **************************************************************** */
@media (max-width: 480px) {
/* **************************************************************** */
  
	.ASKL-home-slider .moto { width: 100%; }
	.ASKL-home-text { padding: 64px 10vw; }
	.ASKL-home-text h2,
	.ASKL-home-text .quote,
	.ASKL-home-text .content { left: 0; width: 100%; }
	.ASKL-home-text h2 { margin-bottom: 0; }
	.ASKL-home-text h2:after { margin: 8px 0; }
	.ASKL-home-text .quote { margin-bottom: 8px; text-align: left; }
	.ASKL-carousel-parallax .ASKL-carousel .ASKL-item { width: 100%; min-width: 100%; }
	.ASKL-home-icons { padding: 64px 15%; }
	.ASKL-home-icons .ASKL-container { display: block; }
	.ASKL-home-icons .ASKL-home-icons-icon {  */
    	display: block;
		width: 100%;
		padding: 20px 0;
		border-bottom: 4px solid var(--colorA);
		border-right: 0;
	}
	
	.ASKL-home-video .webtv-box img { width: 280px; }
	.ASKL-home-video .webtv-box iframe { top: 8px; width: 210px; height: 138px; }
	.ASKL-recent-news .ASKL-carousel .ASKL-item { width: 100%; min-width: 100%; }
	
	.ASKL-footer-col:nth-child(2) { display: block; }
	
    
}



/* **************************************************************** */
@media (max-width: 320px) {
/* **************************************************************** */

    
}













.fontA { font-family: var(--fontA) !important; }
.fontB { font-family: var(--fontB) !important; }


