/*--------------------------------------------------------------
>>> 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=Sofia+Sans+Condensed:300,400,500,700,900,1000&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');
 



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

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


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

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

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



}


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


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



.A-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; }
.A-content .Aitem img { height: 100%; }
.Aitem:hover h3 { color: var(--colorA); }
[data-show="1"] { cursor: zoom-in; }



/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ HEADER */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
header {
	position: relative;
    text-align: center;
	padding: 32px 10%;
}
header .A-flex {
	place-items: center;
	place-content: space-between;
}
header .A-logo {
	display: inline-block;
    width: auto;
	margin: 0 0 32px 0;
	transition: 1s all;
}
header .A-logo img {
    width: 260px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}
header .A-logo.closed { transform: scale(0); }


/* Navigation */
header nav .menu-toggle {
	display: none;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	cursor: pointer;
}
header nav .menu-toggle svg {
	height: 32px;
    fill: black;
    stroke: black;
    stroke-width: 12px;
}
header nav {
    position: relative;
	display: block;
    width: auto;
	margin: 0;
    text-align: right;
	transition: 1s all;
    z-index: 9;
}
header nav.closed { left: -300px; }
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: 0px 0px 0px 32px;
    cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
header nav ul li a {
    position: relative;
    font: 700 20px var(--fontA);
	text-decoration: none;
	color: black;
    z-index: 99;
}
header nav ul li:hover > a,
header nav ul li.current_page_item > a {
    color: var(--colorA);
    opacity: 1;
}
header nav ul.sub-menu { 
	display: none;
	position: absolute;
	min-width: 240px;
	padding: 12px 0;
	text-align: left;
	background: white;
}
header nav ul.sub-menu li {
	margin: 0;
	padding: 4px 16px;
}
header nav ul.sub-menu li a { font-size: 18px; font-weight: 400; }
header nav ul li:hover ul.sub-menu { display: block; }


nav.A-breadcrumb {}

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


/* SEARCH */
.A-search {
	display: flex;
	position: absolute;
    top: 32px;
    right: 5%;
}
.A-search:hover {opacity: 1;}
.A-search form { display: flex; }
.A-search label span { display: none; }
.A-search input[type="search"] {
    width: 100%;
    min-width: 260px;
    padding: 6px 32px 6px 8px;
    font: 400 14px var(--fontA);
    background: hsla(0, 0%, 0%, 0.1);
    border: 0;
    outline: 0;
    border-radius: 100px;
}
.A-search .search-submit {
    top: 2px;
    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;
}


.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;
	margin-top: 24px;
	padding: 12px 24px;
	font: 700 14px var(--fontA);
	line-height: 1;
	background: var(--colorA);
	color: white;
	cursor: pointer;
}
.A-more a { color: white; font-size: 16px; }
.Aitem .more:hover,
.A-more:hover { background: black; }





/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ MAIN */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */

h1 { font-size: 56px; color: var(--colorD); font-weight: 900; }
h2 { font-size: 48px; color: var(--colorD); }
h3 { font-size: 32px; color: var(--colorD); }
p, li { font-size: 18px; color: var(--colorC); }
a { font-size: 18px; color: var(--colorA); }
h3 a { font-size: 24px; color: var(--colorA); font-family: var(--fontB); }

h1, h2, h3, h4 { font-family: var(--fontB); }


.A-cover {
	position: relative;
	height: 700px;
}
.A-home-cover { height: 750px; }
.ASKL-home-slider { height: 750px; }
.A-page-content {
	padding: 48px 20% 96px;
}




#home-A {
	padding: 96px 25%;
	text-align: center;
}
#home-A h1 { margin: 0; }


#home-icons {
	margin-bottom: 64px;
	padding: 64px 15%;
	text-align: center;
	line-height: 1;
	background: var(--colorB);
}
#home-icons .Acolumn {
	position: relative;
	padding: 0 7%;
	border-right: 4px solid var(--colorA);
}
#home-icons .Acolumn:last-child { border: 0; }
#home-icons h3 {
	margin: 16px 0 0;
	transition: 0.3s;
	line-height: 0.7;
}
#home-icons h3 a { font-size: 20px; font-weight: 400; }
#home-icons img {
	width: auto;
	height: 100px;
}

#home-icons .Apic { transition: 0.3s; }
#home-icons .Acolumn:hover .Apic { transform: scale(0.85); }
#home-icons .Acolumn:hover h3 { transform: scale(1.15); }



.section-B,
.section-A {
	padding: 48px 10%;
}
.section-A { background: var(--colorB); }

.section-B h2,
.section-A h2 { margin-top: 0; }
.section-B img,
.section-A img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section-A .Col1 { position: relative; flex: 0 0 50%; }
.section-A .Col2 {
	flex: 0 0 50%;
	padding: 48px 0% 48px 10%;
}
.section-B .Col2 { position: relative; flex: 0 0 50%; }
.section-B .Col1 {
	flex: 0 0 50%;
	padding: 48px 10% 48px 0%;
	text-align: right;
}

.section-A picture,
.section-B picture { height: 100%; }



















.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: 24px 0 0;
    background: var(--colorB);
}
.A-footer-col {
    width: 30%;
    padding: 16px;
    float: left;
}
.A-footer-col:nth-child(2) {
	width: 50%;
	text-align: center;
}
.A-footer-col:nth-child(3) { width: 20%;}
.A-footer-col .A-logo {
	width: 100%;
	text-align: center;
}
.A-footer-col .A-logo img {
    width: 100%;
	max-width: 300px;
	max-height: 120px;
    height: auto;
    padding: 0 32px;
	object-fit: contain;
    object-position: left;
}
.A-footer-col h3 {
	margin: 0;
	font: 700 18px var(--fontA);
	color: var(--colorA);
}
.A-footer-col label,
.A-footer-col p,
.A-footer-col li,
.A-footer-col a {
	margin: 2px 0;
	font: 400 16px var(--fontA);
	color: black;
}
.A-footer-col p { margin: 8px 0; }
.A-footer-col label { display: inline-block; margin-right: 8px; }

.A-footer-col a { color: var(--colorA); font-weight: 700; }
.A-footer-col a:hover { color: var(--colorC);   }
.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;
    padding: 32px;
	text-align: center;
}
footer .A-social a {
	margin: 0 16px 0 0;
	cursor: pointer;
}
footer .A-social svg { 
	height: 24px;
	fill: var(--colorA);
	transition: 0.3s all;
}
footer .A-social a:hover svg { fill: var(--colorB); transform: scale(1.2); }



.A-footer-created {
	position: relative;
    width: 100%;
    text-align: center;
    padding: 8px;
	font-size: 14px;
    background: var(--colorC);
    color: var(--colorB);
	z-index: 9;
}
.A-footer-created a {
	font-size: 14px;
    font-weight: 700;
    color: var(--colorB);
}
.A-footer-created a:hover { color: white; }
.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;
}




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(--colorB);
	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 .form-submit:after {
	content: " ";
	position: absolute;
	top: 46px;
	left: 20%;
	width: 80%;
	height: 48px;
	background: url(img/shadow-2.png) 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;
}



.contact-B {
	padding: 48px 20%;
}







/* 	--------------
HOME SLIDER
-------------- */
.ASKL-home-slider {
	position: relative;
	width: 100%;
	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: 750px;
	height: 100%;
	padding: 0 7vw 64px 0;
	background: var(--gradA);
	text-align: right;
}
.ASKL-home-slider .moto h2:first-child { text-transform: uppercase; }
.ASKL-home-slider .moto h2 {
	width: 100%;
	margin: 0;
	font: 700 38px var(--fontB);
	line-height: 1;
	color: white;
	text-shadow: var(--txWH);
}
.ASKL-home-slider .moto h2 span {
	margin-top: 4px;
	font-size: 31px;
	color: var(--colorA);
	text-shadow: var(--txA);
	float: right;
}
.ASKL-home-slider .slides .AB-slide { overflow: hidden; }


	



















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


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




}




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

	
	.ASKL-home-slider { height: 650px; }
	.A-cover { height: 550px; }

	#home-A { padding: 96px 20%; }
	#home-icons { padding: 64px 10%; }

	.section-B, .section-A { padding: 48px 5%; }
	.section-B .Col1 { padding: 24px 10% 24px 0%; }
	.section-A .Col2 { padding: 24px 0% 24px 10%; }

	.contact-B { padding: 48px 10%; }


}





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

	header { padding: 32px 5%; }
	header .A-logo img { width: 240px; }
	header nav ul li a { font-size: 18px; }
	header nav ul.sub-menu li a { font-size: 16px; }
	
	.ASKL-home-slider { height: 550px; }
	.A-cover { height: 500px; }

	#home-A { padding: 96px 15%; }
	#home-icons { padding: 64px 5%; }

	.section-B .Col1 { padding: 0 5% 0 0%; }
	.section-A .Col2 { padding: 0 0% 0 5%; }


	.A-page-content {
		padding: 48px 15% 96px;
	}



}





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

	h1 { font-size: 52px; }
	h2 { font-size: 40px; margin-bottom: 16px; }

	header .A-flex {
		flex-flow: column;
		place-items: center;
	}
	header nav { margin-top: 8px; text-align: center; }
	header nav .menu-toggle { display: inline-block; }
	header nav ul { display: none; }
	header nav ul li {
		display: block;
		margin: 6px 0px 12px 0;
	}
	header nav ul.sub-menu {
		display: block;
		position: relative;
		text-align: center;
		padding: 6px 0 12px;
	}


	.ASKL-home-slider,
	.A-cover { height: 500px; }

	#home-icons {
		flex-flow: column;
		padding: 64px 25%;
	}
	#home-icons .Acolumn {
		padding: 32px 0;
		border-right: 0;
		border-bottom: 4px solid var(--colorA);
	}
	#home-icons .Acolumn:last-child { border: 0; }
	#home-icons h3 { margin-top: 0; }


	.section-A { flex-flow: column; padding: 48px 10%; }
	.section-B { flex-flow: column-reverse; padding: 48px 10%; }

	.section-B .Col1,
	.section-A .Col2 { width: 100%; text-align: center; }
	.section-A picture, .section-B picture { height: 360px; margin-bottom: 24px; }


	.contact-B { padding: 48px 0%; }



	.A-footer {
		display: flex;
		flex-flow: column;
		padding: 24px 0 48px;
		text-align: center;
	}
	.A-footer-col {
		width: 100% !important;
		padding: 16px;
	}
	.A-footer-col:empty { display: none; }
	footer .A-social { padding: 0; }



}





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

	h1 { font-size: 48px; }
	h2 { font-size: 38px; line-height: 1.1; }
	
	.search-result-list li { margin-bottom: 32px; }
	.search-result-list li .img-placeholder,
	.search-result-list li img { display: none; }

	.ASKL-home-slider,
	.A-cover { height: 400px; }

	#home-A { padding: 72px 12%; }
	.ASKL-home-slider .moto h2 { font-size: 32px; }


	#home-icons { padding: 64px 20%; }

	.section-A picture, .section-B picture { height: 320px; }


	#home-icons { margin-bottom: 48px; }
	
}



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

	h1 { font-size: 42px; }
	h2 { font-size: 36px; }
	p, li { font-size: 16px; }

	.ASKL-home-slider,
	.A-cover { height: 340px; }
	.ASKL-home-slider .moto { width: 80%; padding: 0 7vw 32px; }
	.ASKL-home-slider .moto h2 { font-size: 26px; }

	#home-A { padding: 64px 10%; }

	#home-icons img { height: 80px; }


	#home-icons { margin-bottom: 24px; }
	.section-A picture, .section-B picture { height: 240px; }

	
	.A-page-content {
		padding: 48px 10% 96px;
	}


}



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


}












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