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

/* ------------------- CFAstyPro */
/* ----------------------------- */
@font-face {
    font-family: 'CFAstyPro';
    src: url(fonts/CFAstyPro-Light.otf);
    font-weight: 300;
	font-display: swap;
}
@font-face {
    font-family: 'CFAstyPro';
    src: url(fonts/CFAstyPro-Book.otf);
    font-weight: 400;
	font-display: swap;
}
@font-face {
    font-family: 'CFAstyPro';
    src: url(fonts/CFAstyPro-Medium.otf);
    font-weight: 600;
	font-display: swap;
}

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





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

    --fontA: 'CFAstyPro', sans-serif;
    --fontB: 'CFAstyPro', 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, p { color: black; }
a  { color: var(--colorB); }






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


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

/* 	--------------
	HEADER
 	-------------- */
header {
	position: relative;
    text-align: center;
	padding: 64px 64px 16px;
	z-index: 999;
}
header .A-flex {
	display: block;
}
header .A-logo {
	display: inline-block;
    width: auto;
	margin: 0 0 48px 0;
	transition: 1s all;
}
header .A-logo img {
    width: 300px;
    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 16px 6px;
    cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
header nav ul li a {
    position: relative;
    font: 400 22px var(--fontA);
	text-decoration: none;
	color: var(--colorA);
    z-index: 99;
}
header nav ul li:hover > a,
header nav ul li.current_page_item > a {
    color: var(--colorB);
}
header nav ul.sub-menu { 
	display: none;
	position: absolute;
	min-width: 190px;
	padding: 4px 0;
	text-align: left;
	background: white;
	z-index: 9999;
}
header nav ul.sub-menu li {
	margin: 0;
	padding: 4px 0 4px 16px;
}
header nav ul.sub-menu li a { font-size: 16px; }
header nav ul li:hover ul.sub-menu { display: block; }

.test {}

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%;
	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: 260px;
    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 {
    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;
}


.Aitem .more,
.A-more {
	display: inline-block;
	position: relative;
	margin-top: 24px;
	padding: 7px 16px 5px;
	font: 700 14px var(--fontA);
	line-height: 1;
	background: black;
	color: white;
	border-radius: 40px;
	cursor: pointer;
}
.A-more a { color: white; }
.Aitem .more:hover,
.A-more:hover { background: var(--colorA); }

picture { line-height: 0; }

h2 {
	font: 700 38px var(--fontA);
	color: var(--colorA);
}
h2 strong { color: black; }
/* **************************************************************** */
/* **************************************************************** */
/* **************************************************************** */
.A-phone {
	display: flex;
	position: absolute;
	right: 64px;
	top: 40px;
}
.A-phone .A-tel { margin-right: 32px; }
.A-phone .A-tel a { font-size: 22px; }
.A-phone .A-tel img {
	position: relative;
	top: 4px;
	height: 24px;
	width: auto;
}



/* COVERS */
/* -----------------------------*/
.A-cover {
	position: relative;
	height: 600px;
	background: var(--colorD);
}
.A-cover img {
	height: 100%;
	object-fit: cover;
}
.A-cover-B {
	position: relative;
	height: 600px;
} 
.A-cover-B .A-flex {
	height: 100%;
}
.A-cover-B .Acolumns { height: 100%; }
.A-cover-B .Acolumn { position: relative; width: 50% }
.A-cover-B .Col1 {
	display: flex;
	flex-flow: column;
	place-content: center;
	width: 45%;
	padding-left: 15%;
}
.A-cover-B .A-main-moto {
	margin: 0;
	font: 700 56px var(--fontA);
}

.cover-icons { pointer-events: none; }
.cover-icons:not(.home-cover-icons) {
	position: absolute;
	left: 0;
	width: 100%;
	height: 600px;
	z-index: 9;
}
.cover-icons .icon {
	position: absolute;
}
.cover-icons .icon-01 {
	top: 13%;
	left: 20%;
	width: 56px;
	height: 56px;
}
.cover-icons .icon-02 {
	top: 10%;
	right: 25%;
	width: 48px;
	height: 48px;
}
.cover-icons .icon-03 {
	bottom: 16%;
	right: 18%;
	width: 88px;
	height: 88px;
}
.A-cover-B .A-main-moto div:nth-child(1) {
	font-size: 42px;
	color: var(--colorA);
}
.A-cover-B .A-main-moto div:nth-child(2) {
	color: black;
}
.A-cover-B .A-main-moto div:nth-child(3) {
	color: var(--colorB);
}
.A-cover-B picture {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.A-cover-B picture img { height: 100%; object-fit: contain; }
.A-cover-B .A-gfx {
	position: absolute;
	top: 32px;
	left: 27%;
	width: 40%;
	height: calc(100% - 48px);
} 
.A-cover-B .A-gfx img {
	max-height: 100%;
	object-fit: contain;
}
#tsparticles2,
#tsparticles {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.A-home-cover #tsparticles {
	left: 35%;
	top: -10%;
	width: 30%;
	height: 120%;
	transform: rotate(-45deg);
}
#tsparticles.mask-01 {
	left: 37%;
	top: 0%;
	width: 20%;
	height: 100%;
	transform: rotate(-45deg);
}
#tsparticles.mask-02 {
    top: 32px;
    left: 32%;
    width: 30%;
    height: calc(100% - 48px);
	border-radius: 1000px;
}
#tsparticles.mask-03 {
    top: 5%;
    left: 32%;
    width: 30%;
    height: 80%;
	border-radius: 1000px;
}
#tsparticles.mask-04 {
	left: 48%;
	top: 5%;
	width: 10%;
	height: 100%;
	transform: rotate(42deg);
}
#tsparticles2.mask-05 {
	left: 45%;
	top: 5%;
	width: 20%;
	height: 40%;
	transform: rotate(42deg);
}
#tsparticles.mask-06 {
    top: 32px;
    left: 32%;
    width: 30%;
    height: calc(100% - 48px);
}


/* HOME */
/* -----------------------------*/
.A-home-top .Acolumn {
	flex: 0 0 auto;
	position: relative;
	width: 45%; 
}
.A-home-top .Col1 .Apic:nth-child(1) {
	width: 75%;
	height: auto;
	margin-left: 15%;
	transition: 1s all;
	margin-top: 18%;
}
.A-home-top .Col1 .Apic:nth-child(2) {
	width: 85%;
	height: auto;
	margin-left: 15%;
	margin-top: -44%;
	transition: 1s all;
}
.A-home-top .Col2 {
	width: 55%;
	padding: 96px 10% 48px 64px;
}
.A-home-top h2 { margin: 0 0 80px; }
.A-home-top p { padding-right: 20%; }

.A-home-top.revealed-bottom .Col1 .Apic:nth-child(1) {
	margin-left: 0;
	margin-top: 0%;
}
.A-home-top.revealed-bottom .Col1 .Apic:nth-child(2) {
	margin-top: -10%;
}

.A-home-services {
	background: var(--colorC);
}
.A-home-services h2 {
	position: relative;
	font: 600 32px var(--fontA);
	letter-spacing: 8px;
	text-align: center;
	color: black;
}
.A-home-services h2:before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	width: 15%;
	height: 8px;
	background: black;
}
.A-home-services .Acolumns { padding: 0 20%; }
.A-home-services picture {
	text-align: center;
	font: 700 28px var(--fontA);
	color: black;
}
.A-home-services img {
	width: 260px;
	height: 260px;
	margin-bottom: 12px;
	box-shadow: 24px 24px 60px hsla(0, 0%, 0%, 0.3);
	border-radius: 1000px;
	transition: 0.3s all;
}
.A-home-services picture:hover img {
	transform: scale(0.9);
	box-shadow: 8px 8px 22px hsla(0, 0%, 0%, 0.3);
	
}
.A-home-services .A-white-box {
	position: absolute;
	top: 0;
	left: 30%;
	width: 15%;
	height: 80px;
	background: white;
	opacity: 0.5;
}
.A-home-services .A-glow {
	position: absolute;
	top: -150px;
	left: 20%;
	width: 300px;
	height: 300px;
	background: radial-gradient(closest-side, #f7931e, #77470e 30%, black);
	mix-blend-mode: screen;
}


.A-home-checkup {}
.A-home-checkup:before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 80%;
	height: 5px;
	background: linear-gradient(to right, #b57647, #ffc299);
	border-radius: 20px;
}
.A-home-checkup img {
	height: 500px;
	width: 100%;
	object-fit: cover;
}
.A-home-checkup .A-text {
	position: absolute;
    right: 25%;
    bottom: 200px;
    width: 75%;
    height: 500px;
	transition: 1s all;
}
.A-home-checkup .A-text:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, #b57647, #ffc299);
	mix-blend-mode: multiply;
}
.A-home-checkup .A-text h2 {
	position: relative;
	margin: 0;
	font: 700 68px var(--fontA);
	line-height: 1;
	color: white;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.A-home-checkup .A-text h3 {
	position: relative;
	margin: 0 0 40px;
	font: 700 32px var(--fontA);
	color: white;
}
.A-home-checkup .A-text p:not(.A-more) {
	position: relative;
	margin: 0;
	padding-right: 10%;
	font: 700 20px var(--fontA);
	color: white;
}
.A-home-checkup .A-more {
	width: auto;
    padding: 6px 32px;
    background: black;
    color: white;
    font-size: 16px;
}


.A-home-checkup.revealed-bottom .A-text {
	right: 20%;
	bottom: 120px;
	width: 35%;
    height: 310px;
}


.A-home-news {
	margin-top: 112px;
	padding-left: 10%;
}
.A-home-news .Col2 {
	flex: 0 0 auto;
	width: 30%;
}
.A-home-news .Col2 a {
	color: var(--colorA);
}
.A-home-news h2 {
	margin: 0;
	font: 700 240px var(--fontA);
	line-height: 0.77;
	color: #b57647;
}
.A-home-news .Aitem a { display: flex; }
.A-home-news .Aitem .image {
	flex: 0 0 auto;
	width: 55%;
	height: 180px;
	margin-right: 24px;
}
.A-home-news .Aitem h3 {
	margin: 0 0 16px;
	color: var(--colorA);
}
.A-home-news .Aitem:hover h3 { color: var(--colorB); }

.A-carousel-A {
	margin: 0 -64px;
}


.A-moto {
	position: absolute;
	right: 0;
	top: 0;
    margin: 0;
	font: 300 82px var(--fontA);
	color: var(--colorA);
	transform: rotate(-90deg);
    transform-origin: bottom right;
    line-height: 0.6;
}



/* PAGE B */
/* -----------------------------*/
.A-pageB-top {
	padding: 64px 10%;
}
.A-pageB-top p { margin: 0; padding-right: 40px; text-align: right; }
.A-pageB-top h2 { margin: 0; padding-left: 40px; }



/* Η MICROGEN */
/* -----------------------------*/
.A-team {
	background: var(--colorC);
}
.A-team:before {
	content: "";
	position: absolute;
	left: 0;
	top: 10%;
	width: 12%;
	height: 8px;
	background: black;
}
.A-team .A-doc-large {
	padding-bottom: 48px;
	text-align: center;
	border-bottom: 8px solid white;
}
.A-team h3 {
	margin: 16px 0 8px;
	font: 700 28px var(--fontA);
	color: black;
}
.A-team h4 {
	margin: 0;
	font: 400 22px var(--fontA);
	color: white;
}
.A-team .A-doc-large .Apic { margin: 0 auto; }
.A-team .A-doc-large img {
	width: 400px;
	height: 400px;
	border-radius: 200px;
	object-fit: cover;
}
.A-team .Acarousel { margin: 64px -5% 0; }
.A-team .Acarousel .Aitems { flex-flow: row wrap; }
.A-team .Acarousel .Acolumn {
	flex: 0 0 auto;
	width: 33.333%;
	margin-bottom: 64px;
	padding: 0 32px;
	text-align: center;
}
.A-team .Acarousel .Apic { margin: 0 auto; }
.A-team .Acarousel img {
	width: 16vw;
	height: 16vw;
	object-fit: cover;
	border-radius: 200px;
}
.A-team .Acarousel[data-navi="sides"] { padding: 0; }
.A-team .A-moto { top: 20%; }



/* CHECKUP */
/* -----------------------------*/
.A-checkup {}
.A-checkup h2 {
	margin: 48px 0;
	text-align: center;
}
.A-checkup .A-offers { counter-reset: offers; }
.A-checkup .A-offers h3 {
	position: relative;
	padding: 24px 80px 20px;
	margin: 0 0 48px;
	font: 700 24px var(--fontA);
	line-height: 1;
	color: #15597c;
	background: white;
	border-radius: 100px;
	box-shadow: 3px 3px 6px hsla(0, 0%, 0%, 0.3);
	cursor: pointer;
	transition: 0.5s all;
}
.A-checkup .A-offers h3:hover { letter-spacing: 6px; }
.A-checkup .A-offers h3:before {
	content: "";
	position: absolute;
	left: -16px;
	top: -16px;
	width: calc(100% + 32px);
	height: calc(100% + 32px);
	background: linear-gradient(to right, #b57647, #ffc299);
	border-radius: 100px;
	z-index: -1;
	box-shadow: 0 0 12px inset hsla(0, 0%, 0%, 0.6);
}
.A-checkup .A-offers h3:after {
	counter-increment: offers;
	content: counter(offers);
	position: absolute;
	left: 8px;
	top: calc(50% - 26px);
	width: 52px;
	height: 52px;
	background: var(--colorC);
	background: linear-gradient(to right, #b57647, #ffc299);
	border-radius: 100px;
    text-align: center;
    line-height: 2.4;
	letter-spacing: 0;
	z-index: 9;
}


.A-offers .wp-block-group {
	display: none;
	position: relative;
	margin: -24px 0 64px;
	padding: 16px 32px 32px;
	border: 2px solid black;
	background: var(--colorD);
	border-radius: 24px;
}
.A-offers .wp-block-group li,
.A-offers .wp-block-group p,
.A-offers .wp-block-group a { font-size: 18px; }
.A-offers .wp-block-group ul { column-count: 2; }
.A-offers .wp-block-group ul.col-3 { column-count: 3; }
.A-offers .wp-block-group li { margin: 12px 0; }
.A-offers .wp-block-group h5 {
	position: absolute;
	right: 7%;
	bottom: 8px;
	margin: 0;
	font: 400 32px var(--fontA);
	padding: 10px 32px;
	color: var(--colorB);
	background: white;
	border-radius: 50px;
	box-shadow: 3px 3px 6px hsla(0, 0%, 0%, 0.3);
	transition: 0.4s all 0.3s;
	
}
.A-offers .wp-block-group.active h5 { bottom: -28px; }

.wp-block-group__inner-container {}





/* PAGE */
/* -----------------------------*/
.A-page-title {
	position: relative;
	margin: 24px 0 0;
	padding: 24px 20%;
	font: 700 40px var(--fontA);
	background: var(--colorC);
	color: white;
}
.A-page-title:before {
	content: "";
	position: absolute;
	left: 0;
	top: 44px;
	width: 0;
	height: 8px;
	border-radius: 50px;
	background: var(--colorB);
	transition: 0.6s all;
}
.A-page-title.revealed-bottom:before { width: 13%; }


.A-page-content {
	position: relative;
	padding: 32px 20% 64px;
}
.A-page-content h2 strong,
.A-page-content h2 {
	margin: 40px 0 16px;
	font: 700 32px var(--fontA);
	color: var(--colorB);
}
.A-page-content ul li { margin: 12px 0; }
.A-page-content figure { margin: 32px 0; }
.A-page-content img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}
.A-page-content figure.with-sphere { position: relative; }
.A-page-content figure.with-sphere:after {
	content: "";
	position: absolute;
	left: -10vw;
	top: 0;
	width: 12vw;
	height: 12vw;
	background: linear-gradient(to right, #b57647, #ffc299);
	border-radius: 300px;
}
.A-page-content .A-sphere-1 {
	position: absolute;
	top: 50%;
	left: 12%;
	width: 24px;
	height: 24px;
	background: var(--colorB);
	border-radius: 100px;
}
.A-page-content .A-sphere-2 {
	position: absolute;
	top: calc(50% + 40px);
	left: 13%;
	width: 40px;
	height: 40px;
	background: linear-gradient(to right, #b57647, #ffc299);
	border-radius: 100px;
}
.A-page-content .A-sphere-3 {
	position: absolute;
	top: calc(50% + 120px);
	left: 5%;
	width: 24px;
	height: 24px;
	background: var(--colorB);
	border-radius: 100px;
}
.A-page-content .A-sphere-4 {
	position: absolute;
	top: 120px;
	right: 10%;
	width: 40px;
	height: 40px;
	background: linear-gradient(to right, #b57647, #ffc299);
	border-radius: 100px;
}
.A-page-content .A-sphere-5 {
	position: absolute;
	top: 80px;
	right: 6%;
	width: 24px;
	height: 24px;
	background: var(--colorB);
	border-radius: 100px;
}
.A-page-content .A-sphere-6 {
	position: absolute;
	top: 280px;
	right: 11%;
	width: 24px;
	height: 24px;
	background: var(--colorB);
	border-radius: 100px;
}
.A-page-content .A-moto { top: 20%; }

.A-post-title {
	margin-bottom: 0;
	background: transparent;
	color: var(--colorA);
}
.A-post-content { min-height: 800px; }
.A-post-content .A-moto { top: 10%; }

.A-pageC-content { padding: 0; }
.A-pageC-content h2 {
	margin-bottom: 32px;
	color: var(--colorA);
	font-size: 36px;
}
.A-pageC-content .Aitems { margin: 0 -16px; }
.A-pageC-content .Aitem h3 { color: var(--colorA); }
.A-pageC-content .Aitem img {
	height: 100%;
	object-fit: cover;
}
.A-home-top p.A-more { padding: 4px 8px 5px; }
.A-more,
.Aitem .more {
	width: 28px;
	height: 28px;
	padding: 4px;
	font-size: 20px;
	text-align: center;
	background: linear-gradient(to right, #b57647, #ffc299);
	color: black;
}
.A-more:hover,
.Aitem:hover .more {
	background: var(--colorB);
	color: white;
}


.A-services-list .Aitems { display: block; padding-right: 10%; }
.A-services-list .Aitems .Aitem {
	position: relative;
	width: 100%;
	margin-bottom: 24px;
	padding-left: 64px;
}
.A-services-list .Aitems .Aitem:before {
	content: "";
	position: absolute;
	left: 0;
	top: 22px;
	width: 48px;
	height: 8px;
	background: var(--colorA);
	border-radius: 100px;
}
.A-services-list .Aitem h3 {
	font: 300 32px var(--fontA);
	color: var(--colorB);
}


.A-contact { position: relative; margin: 64px 0; }
.A-contact iframe {	width: 100%; }
.A-contact p:not(.A-moto),
.A-contact a { font-size: 22px; line-height: 1.5; }
.A-contact h2 { margin-top: 0; }
.A-contact h3 {
	margin-top: 48px;
	margin-bottom: 0;
	font-size: 32px;
	color: var(--colorB);
}
.A-contact .Col2 {
	padding-left: 48px;
	padding-right: 10%;
}
.A-contact .A-note {
	font-size: 16px !important;
	opacity: 0.5;
	margin-top: 0;
	margin-bottom: 24px;
}










.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 32px 24px 48px;
    background: var(--colorB);
}
.A-footer-col .address a,
.A-footer-col .address {
	color: white;
}
.A-footer-col .address a { display: inline-block; }
.A-footer-col {
    width: 15%;
    padding: 16px;
    float: left;
}
.A-footer-col:nth-child(1) { width: 25%; }
.A-footer-col .icon {
	width: 56px;
	height: 56px;
	margin-bottom: 12px;
	object-fit: contain;
}
.A-footer-col .A-logo {
	width: 100%;
	text-align: left;
}
.A-footer-col .A-logo img {
    width: 100%;
	max-width: 300px;
	max-height: 120px;
    height: auto;
	margin-bottom: 24px;
	object-fit: contain;
    object-position: left;
}
.A-footer-col h3 {
	margin: 0;
	font: 700 18px var(--fontA);
	color: var(--colorB);
}
.A-footer-col label,
.A-footer-col p,
.A-footer-col li,
.A-footer-col a {
    display: block;
	margin: 2px 0;
	font: 400 16px var(--fontA);
    color: var(--colorA);
}
.A-footer-col .white { color: white; margin-top: 24px; }
.A-footer-col .amea { position: relative; margin-top: 32px; }
.A-footer-col .amea:before {
	content: "";
	position: absolute;
	right: 105%;
	top: 0;
	width: 64px;
	height: 64px;
	background: url(img/icon-25.png) no-repeat;
	background-size: contain;
}
.A-footer-col .note { color: hsla(0, 0%, 100%, 0.46); }
.A-footer-col label { display: inline-block; margin-right: 8px; }
.A-footer-col a:hover { color: white;  font-weight: 700; }
.A-footer-col ul { padding: 0; margin: 0; list-style: none; }

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



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




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%;
	margin-bottom: 12px;
	padding: 8px 16px;
	font: 400 22px var(--fontA);
	background: var(--colorD);
	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: 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(--colorB);
	color: white;
	cursor: pointer;
}
form input[type="submit"]:hover { background: var(--colorA); }
form input[type="submit"][disabled] {
	background: var(--colorC);
	cursor: not-allowed;
}






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

	.A-home-top .Col1 { width: 50%; }
	.A-home-top .Col2 {
		width: 50%;
		padding: 64px 5% 40px 64px;
	}

}





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

	header nav ul li a { font-size: 18px; }
	.A-cover-B .Col1 {
		width: 50%;
		padding-left: 10%;
	}
	
	.A-home-top.revealed-bottom .Col1 .Apic:nth-child(2) {
    margin-top: -5%; }
	.A-home-top h2 { margin: 0 0 64px; }
	.A-home-top .Col2 {
		padding: 64px 2% 40px 48px;
	}
	.A-home-checkup.revealed-bottom .A-text { width: 40%; }
	
	.A-pageB-top { padding: 64px 0% 64px 10%; }
	
	
}




/* **************************************************************** */
@media (max-width: 1280px) {
/* **************************************************************** */
	
	.A-phone {
		width: calc(100% - 128px);
		place-content: space-between;
	}
	
	.A-cover-B picture img { left: 10%; }
	.A-cover-B .A-gfx { left: 34%; }

	#tsparticles.mask-01 { left: 47%; }
	#tsparticles.mask-02 { left: 35%; }
	#tsparticles.mask-03 { left: 41%; }
	#tsparticles.mask-04 { left: 60%; }
	#tsparticles2.mask-05 { left: 53%; }
	
	.A-home-top p { padding-right: 10%; }
	.A-home-services .A-glow { display: none; }
	.A-home-services .Acolumns { padding: 0 10%; }
	.A-home-checkup.revealed-bottom .A-text { width: 50%; }
	.A-home-news { padding-left: 5%; }
	
	.A-home-news .Col1 { width: 75%; }
	.A-home-news .Col2 { width: 25%; }
	.A-home-news .Col2 h2 {
		font: 700 200px var(--fontA);
		line-height: 0.8;
	}
	
	.A-contact {
		flex-flow: column-reverse;
		margin-bottom: 0;
	}
	.A-contact .Acolumn { width: 100%; }
	.A-contact .Col2 { padding: 24px 20% 48px; }
	
	
	.A-footer { flex-flow: row wrap; padding-top: 32px; }
	.A-footer-col { width: 20%; text-align: center; }
	.A-footer-col:nth-child(1) { width: 100%; }
	.A-footer-col .A-logo { text-align: center; }
	
}






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

	header { padding-top: 72px; }
	.A-phone { top: 24px; }
	
	.A-cover,
	.A-cover-B { height: 500px; }
	.A-cover-B .Col1 { padding-left: 6%; }
	
	.A-cover-B .A-main-moto {
		margin-top: 32px;
		font-size: 44px;
	}
	.A-cover-B .A-main-moto div:nth-child(1) {
		font-size: 32px;
	}
	
	.A-home-services img {
		width: 200px;
		height: 200px;
	}
	.A-home-services h2:before { top: -50px; }
	.A-home-checkup.revealed-bottom .A-text {
		right: 15%;
		width: 60%;
	}
	.A-home-news .Col1 { width: 65%; }
	.A-home-news .Col2 { width: 35%; }
	.A-home-news .Aitem:nth-child(3),
	.A-home-news .Aitem:nth-child(4) { display: none; }
	
	
	.A-pageB-plain { padding: 48px 10%; }
	.A-pageB-top {
		flex-flow: column-reverse;
		padding: 64px 15%;
	}
	.A-pageB-top .Acolumn { width: 100%; }
	.A-pageB-top h2 { padding: 0; margin-bottom: 24px; }
	.A-pageB-top p { text-align: left; padding: 0; }
	.A-team .A-doc-large img {
		width: 320px;
		height: 320px;
	}
	.A-team .Acarousel .Acolumn { width: 50%; }
	.A-team .Acarousel img {
		width: 22vw;
		height: 22vw;
	}
	
	.A-page-title { padding: 24px 10% 24px 15%; }
	.A-page-content { padding: 32px 15% 64px; }
	.A-pageC-content { padding: 0; }
	.A-page-content .A-sphere-1 { left: 7%; }
	.A-page-content .A-sphere-2 { left: 8%; }
	.A-page-content .A-sphere-3 { left: 1%; }
	.A-page-content .A-moto { display: none; }
	
	.A-checkup { padding: 48px 15%; }
	.A-news { padding: 48px 15%; }
	
	.A-footer-col { width: 33.333%; }
	.A-footer-col:last-child { margin-left: 33.333%; }
	
	
}





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

	header { padding: 88px 5% 16px; }
	.A-phone { width: 90%; right: 5%; }
	header .A-flex { place-items: flex-start; }
	header .A-logo { margin-bottom: 32px; }
	header nav {
		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 {
    	position: relative;
		display: block;
    	text-align: center;
	}
	header nav .menu-item-has-children > a {
		border-bottom: 1px solid var(--colorA);
	}
	
	.A-cover,
	.A-cover-B { height: 450px; }
	.A-cover-B .Col1 { place-content: flex-end; }
	.A-cover-B .A-main-moto {
		width: 200%;
		margin: 0 0 24px;
		font-size: 40px;
	}
	.A-cover-B .A-main-moto div:nth-child(1) {
		font-size: 28px;
	}
	.A-cover-B .A-main-moto div:nth-child(2),
	.A-cover-B .A-main-moto div:nth-child(3) {
		display: inline-block;
	}
	
	.A-cover-B .A-gfx {
		left: 8%;
		top: -24px;
	}
	.A-cover-B.A-home-cover .A-gfx {
		left: 12%;
		top: -24px;
	}
	
	.A-home-cover #tsparticles {
		left: 30%;
		top: 3%;
		width: 35%;
		height: 90%;
	}
	#tsparticles.mask-01 {
		left: 25%;
		top: 0%;
		width: 15%;
		height: 80%;
	}
	#tsparticles.mask-02 {
		top: 32px;
		left: 13%;
		width: 40%;
		height: 70%;
	}
	#tsparticles.mask-03 {
		top: 0%;
		left: 13%;
		width: 42%;
		height: 69%;
	}
	#tsparticles.mask-04 {
		left: 35%;
		top: 9%;
		width: 11%;
		height: 70%;
	}
	#tsparticles2.mask-05 {
		left: 23%;
		top: -2%;
	}
	#tsparticles.mask-06 {
		top: 0;
		left: 11%;
		width: 44%;
		height: 75%;
	}
	.cover-icons .icon-01 {
		display: none;
		top: 5%;
		left: 9%;
	}
	.cover-icons .icon-02 { right: 17%; }
	.cover-icons .icon-03 {
		bottom: 20%;
		right: 7%;
	}
	
	
	.A-home-top { flex-flow: column; }
	.A-home-top .Acolumn { width: 100%; }
	.A-home-top .Col2 { padding: 48px 15%; }
	.A-home-top p { padding-right: 0%; }
	.A-home-top .Col1 .Apic:nth-child(1) {
		margin-left: 0;
		margin-top: 0%;
	}
	.A-home-top .Col1 .Apic:nth-child(2) {
		margin-top: -10%;
	}
	.A-home-services { padding: 96px 5% 48px; }
	.A-home-services .Acolumns { flex-flow: column; }
	.A-home-services .Acolumn { margin-bottom: 48px; }
	.A-home-services h2 { letter-spacing: 4px; }
	.A-home-checkup { padding: 64px 20% 128px 0%; }
	.A-home-checkup .A-text {
		right: 20%;
		bottom: 128px;
		width: 80%;
		height: 400px;
		padding: 48px 32px 24px;
	}
	.A-home-checkup.revealed-bottom .A-text {
		width: 65%;
		bottom: 80px;
	}
	.A-home-checkup img { height: 400px; }
	.A-home-checkup .A-moto { display: none; }
	.A-home-news {
		flex-flow: column-reverse;
		margin: 0;
		padding: 64px 5% 64px 10%;
	}
	.A-home-news .Acolumn { width: 100%; }
	.A-home-news .Col2 h2 {
		margin: 0 0 40px;
		font-size: 128px;
	}
	.A-home-news .Col2 h2 br { display: none; }
	
	.A-team { padding: 48px 6% 48px; }
	.A-team .A-moto { display: none; }
	.A-team .Acarousel img {
		width: 30vw;
		height: 30vw;
	}
	
	.A-page-title { font-size: 36px; }
	.A-page-content .A-sphere-1 { left: 3%; }
	.A-page-content .A-sphere-2 { left: 4%; }
	.A-page-content .A-sphere-4 { right: 6%; }
	.A-page-content .A-sphere-5 { right: 2%; }
	.A-page-content .A-sphere-6 { right: 7%; }
	
	.A-offers .wp-block-group ul.col-3 { column-count: 2; }
	.A-checkup .A-offers h3 { font-size: 22px; }
	
	.A-contact .Col2 { padding: 24px 15% 48px; }
	.A-contact .A-moto { display: none; }
	
}





/* **************************************************************** */
@media (max-width: 640px) {
/* **************************************************************** */
	
	.A-cover { height: 360px; }
	.cover-icons:not(.home-cover-icons) { height: 450px; }
	
	.A-home-top h2 { margin: 0 0 48px; }
	.A-home-services h2 { letter-spacing: 0; }
	.A-home-checkup.revealed-bottom .A-text {
		right: 10%;
		width: 80%;
	}
	
	.A-team .A-doc-large img {
		width: 240px;
		height: 240px;
	}
	.A-team .Acarousel .Acolumn { width: 100%; }
	.A-team .Acarousel img {
		width: 37vw;
		height: 37vw;
	}
	
	
	.A-checkup { padding: 48px 10%; }
	.A-offers .wp-block-group { padding: 16px 12px 32px; }
	.A-checkup .A-offers h3 { font-size: 20px; }
	
	.A-contact .Col2 { padding: 24px 10% 48px; }
	
	
	.A-footer { padding: 32px 24px 24px; }
	.A-footer-col { width: 50%; }
	.A-footer-col:last-child { margin-left: 25%; }
}



/* **************************************************************** */
@media (max-width: 480px) {
/* **************************************************************** */
	
	h2 { font-size: 34px; }
	
	header { padding: 96px 5% 16px; }
	.A-phone .A-tel a { font-size: 18px; }
	header .A-logo img { width: 260px; }
	
	.A-cover { height: 240px; }
	.A-cover-B {
		display: flex;
		flex-flow: column-reverse;
		height: auto;
	}
	.A-cover-B .Col1 {
    	width: 100%;
		padding: 0 6%;
	}
	.A-cover-B .Col2 { display: none; }
	.A-cover-B .A-main-moto { width: 100%; }
	
	
	.A-cover-B .A-main-moto {
		margin: 0 0 12px;
		font-size: 34px;
	}
	.A-cover-B .A-main-moto div:nth-child(1) {
		font-size: 24px;
	}
	.cover-icons .icon-02 { display: none; }
	.cover-icons .icon-03 {
		bottom: 34%;
		width: 56px;
		height: 56px;
	}
		
	.A-cover-B picture img { left: 0; }
	.A-cover-B.A-home-cover .A-gfx {
		top: 0;
		left: 10%;
    	width: 80%;
	}
	.A-cover-B .A-gfx {
		position: relative;
		left: 15%;
		top: 0;
    	width: 70%;
	}
	.A-cover-B .A-gfx img {
		position: relative;
		height: auto;
		max-height: unset;
	}
	#tsparticles.mask-06,
	#tsparticles.mask-03,
	#tsparticles.mask-02 {
		top: 0%;
		left: 10%;
		width: 80%;
		height: 74%;
	}
	#tsparticles.mask-03 { top: -9%; }
	#tsparticles.mask-04 {
		left: 58%;
		top: 7%;
	}
	#tsparticles2.mask-05 {
		left: 50%;
		top: -2%;
	}
 
	.A-home-top .Col2 { padding: 48px 10%; }
	.A-home-checkup { padding: 64px 10% 128px 0%; }
	.A-home-checkup .A-text { padding: 32px 24px 24px; }
	.A-home-checkup .A-text {
		right: 10%;
		width: 90%;
	}
	.A-home-checkup.revealed-bottom .A-text {
		right: 5%;
		width: 90%;
	}
	.A-home-checkup .A-text h2 { font-size: 48px;}
	.A-home-checkup .A-text h3 { font-size: 26px;
		margin-bottom: 24px;
	}
	.A-home-news .Col2 h2 { font-size: 80px; }
	.A-home-news .Aitem a { flex-flow: column; }
	.A-home-news .Aitem .image {
		width: 100%;
		margin-bottom: 12px;
	}
	
	.A-pageB-top { padding: 64px 10%; }
	.A-team .Acarousel img {
		width: 50vw;
		height: 50vw;
	}
	
	.A-page-title { padding: 24px 10%; font-size: 32px; }
	.A-page-title:before { top: 0; }
	.A-page-content { padding-left: 10%; }
	.A-pageC-content { padding: 0; }
	.A-page-content .A-sphere-1,
	.A-page-content .A-sphere-2,
	.A-page-content .A-sphere-3 { display: none; }
	.A-pageC-content h2 { font-size: 30px; }
	
	.A-offers .wp-block-group ul.col-3,
	.A-offers .wp-block-group ul { column-count: 1; }
	.A-checkup .A-offers h3 {
		min-height: 60px;
		padding: 12px 80px 8px;
	}
	
	
	.A-contact .Col2 { padding: 0 10% 48px; }
	
}



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


}












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