/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Fonts
# Root
# Global
    ## Tools
# Typography
# actusblank
# Menu
# Footer
# Layout
--------------------------------------------------------------*/
 


/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Manrope:300,400,700,900&display=swap&subset=greek');
@import url('https://fonts.googleapis.com/css?family=Geologica:300,400,700,900&display=swap&subset=greek');
/*
@import url('https://fonts.googleapis.com/css?family=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');
*/
 

	


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

h1 {
	font-size: 40px;
	font-weight: 700;
	font-family: var(--fontB);
	line-height: 1.3;
}
h1 strong {
	color: var(--colorC)
}
h2 {
	font-size: 40px;
	font-weight: 700;
	font-family: var(--fontB);
	line-height: 1.3;
}
h2 strong {
	color: var(--colorC)
}
h3 {
	font-size: 32px;
	font-weight: 700;
	font-family: var(--fontB);
	line-height: 1.2;
}
h3 strong {
	color: var(--colorC)
}



p {
	font-size: 16px;
	line-height: 1.4;
	color: #444;
}

.A-round,
.A-button-round { background: var(--colorA); }


.A-button {
	display: inline-flex;
	align-items: center;
	position: relative;
	padding: 12px 24px;
	margin: 0 8px 8px 0;
	font: 700 16px var(--fontA);
	line-height: 1;
	background: var(--colorA);
	color: white;
	border-radius: 40px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.2s all;
}
.A-button p {
	margin: 0;
	font-size: 16px;
	color: white;
	white-space: nowrap;
}
.A-button p mark { color: white; }
.A-button figure { flex: 0 0 auto; }
.A-button img {
	display: inline-block;
	width: auto;
	height: 24px;
	margin: 0 10px 0 -10px;
}
.A-button-B {
	background: white;
	color: var(--colorA);
    border: 2px solid #e5e7eb;
}
.A-button-B p { color: var(--colorA); }
.A-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}







.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%; object-fit: contain; }
[data-show="1"] { cursor: zoom-in; }



/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ HEADER */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
header {
	position: relative;
    text-align: center;
	padding: 12px 10%;
}
header .A-flex {
	position: relative;
	place-items: center;
	place-content: space-between;
}
header .A-logo {
	display: inline-block;
    width: auto;
	margin: 0 16px 0 0;
    padding: 8px;
	line-height: 0;
	transition: 1s all;
}
header .A-logo img {
    width: auto;
    height: 92px;
    object-fit: contain;
}
header .A-logo.closed { transform: scale(0); }
header .A-logo-link {
	display: flex;
	align-items: center;
	font: 700 32px var(--fontB);
}


/* 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.current_page_item > a {
    color: black;
    opacity: 1;
}
header nav ul li:hover > a { color: var(--colorC); }
header nav ul.sub-menu { 
	display: none;
	position: absolute;
	min-width: 120px;
	padding: 4px 0;
	text-align: left;
}
header nav ul.sub-menu li {
	margin: 0;
	padding: 4px 0 4px 16px;
}
header nav ul li:hover ul.sub-menu { display: block; }

header .languages {
	position: absolute;
    top: calc(50% - 16px);
    right: -9%;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}
header .languages li {
	margin-left: 12px;
}
header .languages li img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

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

.A-dimmed { opacity: 0.5; }



#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: var(--colorA);
	color: white;
	border-radius: 40px;
	cursor: pointer;
}
.A-more a { color: white; }
.Aitem .more:hover,
.A-more:hover { background: black; }


.has-text-align-center {
	text-align: center;
}



.label-green {
	display: inline-block;
	padding: 8px 16px;
	color: #059669;
	background: #D1FAE5;
	border-radius: 8px;
}
.label-yellow {
	display: inline-block;
	padding: 8px 16px;
	color: #CA8A04;
	background: #FEF3C7;
	border-radius: 8px;
}


.A-card {
	text-align: left;
	padding: 32px;
	background: white;
    border: 2px solid #e5e7eb;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	border-radius: 16px;
}


/* 	MARK: CopySpell AI
≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣
≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */

#home-hero {
	padding: 64px 0;
    background: linear-gradient(135deg, rgb(248, 250, 252) 0%, rgb(226, 232, 240) 100%);
    background: linear-gradient(135deg, hsl(292, 46%, 10%) 0%, var(--colorA) 100%);
    background: linear-gradient(45deg, hsl(292, 46%, 10%) 0%, var(--colorA) 75%, var(--colorC) 150%);
}
#home-hero-columns {
	position: relative;
	width: 100%;
	padding: 0 5% 0 10%;
	z-index: 8;
}
#home-hero .Acolumn {
	flex: 0 0 auto;
	width: 37%;
}
#home-hero .Col1 h2 strong,
#home-hero .Col1 h2 {
	padding-right: 15%;
	font-size: 24px;
	color: white;
}
#home-hero .Col1 .A-supertitle {
	display: inline-block;
	margin: 0 0 12px;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--fontA);
	background: #f2ddf2;
	background: var(--colorB);
	color: var(--colorA);
	border-radius: 100px;
}
#home-hero h1 {
	margin: 0 0 24px;
	padding-right: 10%;
	color: #a277bb;
	font-size: 32px;
}
#home-hero h1 strong { color:white; font-size: 40px; }
[lang="el"] #home-hero h1 { font-size: 40px; font-weight: 900; }
[lang="el"] #home-hero h1 strong { font-size: 32px; font-weight: 400; }
#home-hero .Col2 .Acolumns {
    display: inline-flex;
    display: none;
	margin: 12px 0 40px;
	padding: 24px;
	background-color: white;
	border-radius: 16px;
	box-shadow: 0 4px 8px hsla(0, 0%, 0%, 0.1);
}
#home-hero .Col2 h3 {
	margin: 0;
	font-size: 32px;
	font-weight: 900;
	font-family: var(--fontB);
	color: var(--colorC);
}
#home-hero .Col2 .Acolumn:not(:last-child) {
	flex: 0 0 auto;
    width: auto;
	margin-right: 16px;
    padding-right: 16px;
	border-right: 1px solid var(--colorB);
}
#home-hero .Col2 .Acolumns p {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: #999;
}
#home-hero-columns > .Col1 {
	position: relative;
	z-index: 9;
}
#home-hero-columns > .Col2 {
	position: relative;
	width: 63%;
	padding-left: 64px;
	padding-top: 64px;
}
#home-hero .Col2 section { padding: 0; }
#home-hero .Col2 section:first-child {
	margin-right: -24px;
	padding-top: 10%;
}
#home-hero .Col2 section p {
	display: inline-block;
	position: relative;
	padding: 6px 12px;
	margin: 0 0 -16px 24px;
	font-size: 14px;
	background: var(--colorC);
	background: #999;
	color: white;
	border-radius: 100px;
	box-shadow: 0 4px 8px hsla(0, 0%, 0%, 0.1);
	z-index: 9;
}
#home-hero .Col2 img {
	height: auto;
	margin-top: -12px;
	box-shadow: 0 10px 20px hsla(0, 0%, 0%, 0.3);
	border-radius: 8px;
}

#home-hero .Col2 section figure { position: relative; }
#home-hero .Col2 section figure:before {
	content: "";
	position: absolute;
    left: 8px;
    top: 14px;
	padding: 6px 12px;
	background: var(--colorA);
	color: white;
	border-radius: 4px;
	z-index: 9;
	transform: rotate(-5deg);
	box-shadow: 0 3px 6px hsla(0, 0%, 0%, 0.1);
    line-height: 1;
}
#home-hero .Col2 section:first-child figure:before { content: "Before"; }
#home-hero .Col2 section:last-child figure:before { content: "After"; }
[lang="el"] #home-hero .Col2 section:first-child figure:before { content: "Πριν"; }
[lang="el"] #home-hero .Col2 section:last-child figure:before { content: "Μετά"; }






#home-hero .Col2 .A-note {
	margin-top: 24px;
	padding-left: 40%;
	padding-right: 24px;
	font-size: 14px;
	font-style: italic;
	text-align: right;
	color: #AAA;
}
#home-hero .A-buttons {
	display: flex;
    flex-flow: row wrap;
	align-items: flex-start;
    width: 150%;
	margin-top: 32px;
    padding: 0;
}
#home-hero .A-button:not(.A-button-B) {
	letter-spacing: 1.2px;
}
#home-hero .A-button {
    padding: 16px 32px;
	background: linear-gradient(135deg, var(--colorA) 0%, var(--colorC) 140%);
}
#home-hero .A-button p { color: white; }
#home-hero .A-button-B {
	background: white;
	border: 0;
}
#home-hero .A-button-B p { color: var(--colorA);}

#home-hero-B {
    position: relative;
    margin-top: -18%;
	padding: 0 60% 0 10%;
    z-index: 9;
}
#home-hero-B > p { margin-top: 0; font-size: 19px; color: #CCC; }
#home-hero-B > p strong { color: #EEE; } 
#home-hero-B .A-note {
	margin: 0;
    padding-left: 8px;
	font-weight: 700;
	font-size: 14px;
}
#home-hero-B h3 {
	margin: 0;
	font-size: 24px;
	color: white;
}



#home-problem {
	padding: 64px 10%;
	text-align: center;
	background: #f9fafb;
}
#home-problem > h2 { margin-bottom: 16px; }
#home-problem h4 {
	margin: 0 0 16px;
	font-size: 24px;
}
#home-solution > p,
#home-problem > p {
	max-width: 600px;
	margin: 0 auto 48px;
	font-size: 19px;
}
#home-problem .Acolumns { gap: 24px; }
#home-problem .Acolumn {
	flex: 0 0 auto;
	width: 25%;
	padding: 32px;
	background: white;
    border: 2px solid #e5e7eb;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	border-radius: 16px;
}
#home-problem .Acolumn h3 {
	margin-top: 8px;
	font-size: 26px;
	font-family: var(--fontB);
}
#home-problem .Acolumn figure {
	display: inline-block;
	line-height: 0;
	border: 0;
}
#home-problem .Acolumn figure img {
    width: auto;
	height: 56px;
	object-fit: contain;
}
#home-problem .Col1 {
	position: relative;
	padding: 0;
}
#home-problem .Col1 picture {
    position: relative;
    width: 100%;
    height: 100%;
}
#home-problem .Col1 img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
    border-radius: 12px;
}

[lang="el"] #home-solution { padding: 64px 5% 96px 10%; }
[lang="el"] #home-solution > .Acolumns > .Col1 { padding-right: 48px; }
[lang="el"] #home-solution .Acolumns ul { display: none; }
#home-solution {
	position: relative;
	padding: 64px 10% 96px;
	background: #ffffff;
	background: linear-gradient(135deg, rgb(248, 250, 252) 0%, rgb(226, 232, 240) 100%);
}
#home-solution h2 { margin: 24px 0 16px; }
#home-solution .Col1 .Col1 figure {
	display: inline-block;
	padding: 16px;
	line-height: 0;
	background: var(--colorA);
	border-radius: 12px;
}
#home-solution .Col1 .Col1 img {
	width: auto;
	height: 40px;
}
#home-solution .Acolumns h3 { margin: 0 0 12px; }
#home-solution .Acolumns li { margin: 4px 0; }
#home-solution .Acolumns ul {
	padding: 0;
	list-style: none;
}
#home-solution .Col1 .Acolumns {
	flex: 0 0 auto;
	margin-bottom: 24px;
	padding: 32px;
	background: white;
    border: 2px solid #e5e7eb;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	border-radius: 16px;
}
#home-solution > .Acolumns > .Col2 h3 {
	padding-right: 16px;
	font-size: 24px;
	text-align: right;
	opacity: 0.5;
}
#home-solution > .Acolumns > .Col2 img {
	mix-blend-mode: multiply;
}
#home-solution > .Acolumns > .Col1 {
	flex: 0 0 auto;
	width: 60%;
	padding-right: 64px;
}
#home-solution .Col1 .Col1 {
	flex: 0 0 auto;
	width: 20%;
}


.A-break {
	width: 100%;
	height: 1px;
}


#home-video {
    padding: 80px 10%;
    background: var(--colorA);
    text-align: center;
}
#home-video iframe {
	width: calc(50vw / 1.2);
	height: calc(28.1vw / 1.2);
	box-shadow: 0 12px 24px hsla(0, 0%, 0%, 0.2);
    border-radius: 24px;
}
#home-video h2 { margin: 32px 0 64px; color: white; }
#home-video p { color: white; }
#home-video .A-notes {
	font-size: 16px;
	opacity: 0.5;
}
#home-video h2 strong { color: var(--colorB); }
#home-video .A-credentials {
	margin: 8px 0 32px;
	font-size: 18px;
}
#home-video .A-button-B img {
	margin: 0 8px 0 0;
}
#home-video .A-button-B p {
    color: var(--colorA);
}


#home-features {
	padding: 64px 10%;
	text-align: center;
	background: #f9fafb;
}
#home-features h4 {
	margin: 0 0 48px;
	font-size: 24px;
	font-weight: 400;
}
#home-features .Acolumns {
	gap: 16px;
	flex-flow: row wrap;
	text-align: left;
}
#home-features .Acolumn h3 { margin-top: 12px; }
#home-features .Acolumn {
	flex: 0 0 auto;
	width: calc(33.3333% - 16px);
	text-align: left;
	padding: 32px;
	background: white;
    border: 2px solid #e5e7eb;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	border-radius: 16px;
}


#home-how {
	position: relative;
	padding: 64px 10%;
	background: #ffffff;
}
#home-how h2 { margin: 16px 0; }
#home-how h4 {
	margin: 0 0 80px;
	font-size: 24px;
	font-weight: 400;
}
#home-how .A-steps {
}
#home-how .A-step {
	margin-bottom: 96px;
}
#home-how .A-step > .Col1 {
	flex: 0 0 auto;
	width: 96px;
}
#home-how .A-step-number {
	display: inline-block;
	position: relative;
	width: 56px;
	height: 56px;
	margin: 0;
	padding: 12px;
	font: 900 26px var(--fontB);
	text-align: center;
	background-color: var(--colorA);
	color: white;
	border-radius: 100px;
}
#home-how .A-step-number:after {
	content: "";
	position: absolute;
	left: calc(50% - 1px);
	top: 100%;
	width: 1px;
	height: 140px;
	border-left: 2px dotted var(--colorB);
}
#home-how .A-step:nth-child(3) .A-step-number:after { display: none; }
#home-how .A-step > .Col2 h3 {
	margin: 8px 0 4px;
}
#home-how .A-step > .Col2 p {
	margin: 0;
}
#home-how .A-steps > .Col1 {
	flex: 0 0 auto;
	width: 40%;
	position: relative;
}
#home-how .A-steps > .Col1 img {
	position: relative;
	left: -10%;
	top: 64px;
}




#home-pricing {
	padding: 64px 15%;
	background: #ffffff;
    background: linear-gradient(45deg, hsl(292, 46%, 10%) 0%, var(--colorA) 75%, var(--colorC) 150%);
}
#home-pricing h2 {
	margin: 16px 0 ;
	color: white;
}
#home-pricing h4 {
	margin: 0 0 64px;
	font-size: 24px;
	font-weight: 400;
	color: white;
}
#home-pricing .Acolumns { gap: 48px }
#home-pricing .Acolumn {
	flex: 0 0 auto;
	width: 50%;
}
#home-pricing .A-card {
	padding: 48px 64px;
	text-align: center;
}
#home-pricing .A-card h3 {
	margin: 0 0 24px;
}
#home-pricing .A-price {
	margin: 0;
	font: 900 48px var(--fontB);
}
#home-pricing .A-card mark { opacity: 0; }
#home-pricing .A-card sub {
    vertical-align: unset;
    position: relative;
    top: -4px;
	padding: 4px 16px;
	background: var(--colorE);
	background: #ffd700;
	color: var(--colorA);
	border-radius: 50px;
	font-size: 20px;
}
#home-pricing .A-price s {
	text-decoration: line-through;
	font-size: 32px;
	opacity: 0.5;
}
#home-pricing .A-button {
	width: 100%;
	margin: 8px 0 0;
	padding: 16px 24px;
	text-align: center;
	justify-content: center;
}
#home-pricing .A-card > p:not(.A-price) { font-style: italic; }
#home-pricing ul {
	list-style: none;
	margin: 32px 0;
	padding: 0;
	text-align: left;
}
#home-pricing li {
	margin: 12px 0;
	font-size: 18px;
}
#home-pricing li:before {
	content: "✔️";
	margin-right: 12px;
}
.early-bird-box {
  background: #fff8e1;
  border-left: 4px solid #f4b400;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-family: sans-serif;
  max-width: 600px;
  margin: 24px auto;
  color: #444;
}
#home-pricing .early-bird-box h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #c27800;
}
#home-pricing .early-bird-box p {
  margin: 6px 0;
  line-height: 1.5;
}
[lang="el"] #home-pricing li { font-size: 15px; }


#home-pricing.home-pricing-2 {
	padding: 64px 10% 96px;
}
#home-pricing.home-pricing-2 .Acolumns {
	flex-flow: row wrap;
	justify-content: center;
	gap: 0;
	margin: 0 -20px;
}
#home-pricing.home-pricing-2 .Acolumn {
	width: calc(25% - 40px);
	width: 315px;
	margin: 0 20px 40px;
}
#home-pricing.home-pricing-2 .A-card {
    padding: 32px 32px;
    text-align: center;
}
#home-pricing.home-pricing-2 .A-card h3 {
	min-height: unset;
}



#before-after {
	padding: 48px 10%;
}
#before-after .Acolumn {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
}
#before-after img {
	box-shadow: 0 6px 10px hsla(0, 0%, 0%, 0.1);
}
#before-after .Acolumn div {
	flex: 0 0 auto;
	position: relative;
	width: 50%;
	padding: 0 8px;
}
#before-after picture {
	position: relative;
	display: block;
	width: 50%;
	padding: 0 8px;
	line-height: 0;
}
#before-after .Acolumn div picture {
	width: 100%;
    margin-bottom: 32px;
	padding: 0;
}
#before-after .Acolumn div h3 {
	margin: 48px 0 12px;
    color: var(--colorB);
	font-size: 20px;
}

#before-after .Acolumn div ul {
	margin: 0;
	padding: 0 48px 0 0;
	list-style: none;
}
#before-after .Acolumn div li {
	padding: 6px 12px;
	margin: 0 0 8px;
    font-size: 14px;
    color: var(--colorA);
	background: #f1edf2;
    border-left: 4px solid var(--colorC);
    border-radius: 12px;
}

#before-after .Acolumn > *:before {
	content: "";
	position: absolute;
    left: 4px;
    top: 4px;
	padding: 6px 12px;
	background: var(--colorA);
	color: white;
	border-radius: 4px;
	z-index: 9;
	transform: rotate(-5deg);
	box-shadow: 0 3px 6px hsla(0, 0%, 0%, 0.1);
    line-height: 1;
}
#before-after .Acolumn > *:first-child:before { content: "Before"; }
#before-after .Acolumn > *:last-child:before { content: "After"; }
[lang="el"] #before-after .Acolumn > *:first-child:before { content: "Πριν"; }
[lang="el"] #before-after .Acolumn > *:last-child:before { content: "Μετά"; }





.ACB-gallery-show .caption { display: none; }


.Acarousel .Acontainer { padding-bottom: 16px; }
#home-testimonials { text-align: center; }
#home-testimonials h2 {
	margin: 16px 0;
}
#home-testimonials h4 {
	margin: 0 0 64px;
	font-size: 24px;
	font-weight: 400;
}
#home-testimonials {
	padding: 64px 10%;
	background: #f9fafb;
	background: linear-gradient(135deg, rgb(248, 250, 252) 0%, rgb(226, 232, 240) 100%);
}
#home-testimonials .A-stars {
	position: relative;
	left: -8px;
}
#home-testimonials .A-stars img {
	width: 127px;
	height: auto;
	object-fit: contain;
}
#home-testimonials p { margin: 0; }
#home-testimonials .Acolumn {
	flex: 0 0 auto;
	width: 25%;
	text-align: left;
}
#home-testimonials .Acolumns {
	margin-top: 20px;
}
#home-testimonials .Col1 {
	flex: 0 0 auto;
	width: 48px;
	margin-right: 12px;
}
#home-testimonials .Col1 picture {
	width: 48px;
	height: 48px;
	padding: 8px;
	background: var(--colorC);
	border-radius: 100%;
}
#home-testimonials .Col1 picture img {
	width: 32px;
	height: 32px;
}
#home-testimonials .Col2 {
    flex: 1;
	width: auto;
}
#home-testimonials .Col2 p {
	margin: 0;
	font-size: 14px;
}
#home-testimonials .Col2 p strong {
	font-size: 16px;
}
#home-testimonials .A-button { margin: 48px auto 0; }






#home-comparison {
	display: none;
	padding: 64px 10%;
	text-align: center;
	background: #ffffff;
	background: linear-gradient(135deg, rgb(248, 250, 252) 0%, rgb(226, 232, 240) 100%);
}
#home-comparison table {
	text-align: left;
}




#home-faq {
	padding: 64px 20%;
	background: #f9fafb;
}
#home-faq h4 {
	margin: 0 0 64px;
	font-size: 24px;
	font-weight: 400;
}
#home-faq h3 {
	position: relative;
	padding: 32px 64px 32px 32px;
	font-size: 24px;
	background: white;
    border: 2px solid #e5e7eb;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	border-radius: 16px;
	cursor: pointer;
}
#home-faq h3:after {
	content: "+";
	position: absolute;
	right: 32px;
	top: 28px;
	font-size: 32px;
	color: var(--colorC);
	transition: 0.25s all;;
}
#home-faq h3:hover:after { transform: rotate(180deg); }
#home-faq h3:hover { color: var(--colorC); }
#home-faq .A-answer {
	display: none;
	margin-top: -48px;
	padding: 32px 24px 24px;
	border-radius: 0 0 16px 16px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

}







#home-cta {
	padding: 64px 10%;
	text-align: center;
	background: var(--colorC);
	color: white;
}
#home-cta p { color: #DDD; }
#home-cta h2 { margin: 16px 0; }
#home-cta h4 {
	margin: 0 0 64px;
    padding: 0 20%;
	font-size: 24px;
	font-weight: 400;
}
#home-cta .Acolumns {
    max-width: 650px;
    margin: 24px auto 0;
}
[lang="el"] #home-cta .Acolumns {
    max-width: 850px;
}
#home-cta .A-button {
	margin: 0 8px;
	padding: 24px 48px;
}
#home-cta .A-button p { font-size: 20px; }
#home-cta .A-button-B { border: 0; }
#home-cta .A-button-B p { color: var(--colorA); }
#home-cta .A-button img { height: 28px; }




.A-page-checkout {
	padding: 64px 20% 96px;
	background: #220e25;
	background: #341539;
}

#payment-form #submit {
	margin-top: 24px;
}


#pre-checkout {
	padding: 64px 0;
	background: #341539;
	text-align: center;
}
#checkout {
	padding: 32px 0 96px;
	background: #220e25;
	background: #341539;
	background: #341539;
}
#checkout iframe {
	background: hsla(0, 0%, 100%, 0.25);
}

#pre-checkout.no-invoice { padding: 32px 0; }
#pre-checkout.form-open { padding: 48px 0 0; }
#pre-checkout h1 {
	color: white
}
#thank-you h2,
#pre-checkout h2 {
    color: white;
    padding: 0;
    font-size: 24px;
    width: 600px;
    margin: 0 auto;
}
#thank-you h2 {
	margin-bottom: 24px;
	font-size: 32px;
}
#thank-you p,
#pre-checkout p {
	color: #AAA;
	font-size: 18px;
}
#thank-you p { margin: 0; }
#pre-checkout .consent-text { color: #AAA; }
#pre-checkout .A-button { max-width: 0 16px; padding: 24px 48px; }
#pre-checkout #user-buttons {
	width: 100%;
	margin: 48px 0;
	text-align: center;
}
#thank-you .A-button  { margin: 16px 0; }



#thank-you {
	padding: 128px 0;
	background: #341539;
	text-align: center;
}

#review-copyspell {
	padding: 0 7%;
	color: white;
    background: hsl(292, 46%, 10%);
    background: #341539;
}
#review-copyspell .Acolumn {
	flex: 0 0 auto;
	position: relative;
	width: 50%;
	padding: 96px 64px;
}
#review-copyspell .Col1 picture,
#review-copyspell .Col1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#review-copyspell .Col2 label {
	color: hsla(0, 0%, 100%, 0.5)
}
#review-copyspell .Col2 button {
	margin-top: 16px;
	color: white;
	background: var(--colorC);
	border: 0;
}
#review-copyspell .glsr-field-choice label {padding-top: 2px; font-size: 15px; }
#review-copyspell [data-field="terms"],
#review-copyspell [data-field="title"] { display: none; }
#review-copyspell .glsr-form-message.glsr-form-success {
    color: var(--colorD);
}




.benefit-list {
	list-style: none;
    padding: 0 0 0 12px;
}
.benefit-list li {
	margin: 6px 0;
	font-size: 16px;
    line-height: 1.4;
    color: #444;
}
.email-form-container { margin: 32px 0; }
.consent-text { font-size: 14px; color: #444; }
.trial-info > p:not(.note) { font-size: 18px; color: #222; }



.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-content h3 { margin: 0; font-size: 28px; }

.modal-header {
    padding: 24px 30px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(45deg, var(--colorA) 0%, var(--colorC) 100%);
    color: white;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 30px 30px 0;
}

.step-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, var(--colorA) 0%, var(--colorC) 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
    background: transparent;
    color: var(--colorB);
    border: 3px solid var(--colorB);
    position: relative;
    top: -8px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

.step-content p {
    margin: 0 0 12px 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.2;
}

.step-content ol {
    margin: 12px 0;
    padding-left: 20px;
}

.step-content li {
    margin: 8px 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.2;
}
.step-content li code {
    font-size: 16px;
    margin: 0 4px;
    font-weight: 700;
}

.download-btn, .license-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	background: linear-gradient(135deg, var(--colorA) 0%, var(--colorC) 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-btn:hover, .license-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    color: white;
    text-decoration: none;
}

.email-form {
    display: flex;
    gap: 12px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.email-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.email-form input:focus {
    outline: none;
    border-color: #667eea;
}

.note {
    font-size: 14px;
    color: #059669;
    margin-top: 8px;
    font-weight: 500;
}

.external-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.external-link:hover {
    text-decoration: underline;
}

.info-box {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    color: #0c4a6e;
}

.success-box {
    background: #f0fdf4;
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
	font-size: 15px;
    color: #14532d;
}
.success-box strong { font-size: 16px; }

.modal-footer {
    margin: 0 -30px;
    padding: 20px 30px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 12px 12px;
    text-align: center;
}

.support-text {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.support-text a {
    color: #667eea;
    text-decoration: none;
}

.support-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-header {
        padding: 20px 20px 16px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .step {
        flex-direction: column;
        gap: 12px;
    }
    
    .step-number {
        align-self: flex-start;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form input {
        min-width: unset;
    }
}

/* Animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-overlay.active .modal-content {
    animation: modalFadeIn 0.3s ease-out;
}






.zammad-form-modal .zammad-form-modal-body {
    width: 700px;
    max-width: 90%;
    background: #DDD;
}

.zammad-form .zammad-form-control {
	background: white;
	font-size: 16px;
}




.page-template-page-no-header h1 { margin-top: 128px; }

.A-guide {
	padding: 64px 10% 96px 7%;
	align-items: flex-start;
}
.A-guide-subtitle {
	padding: 0 20%;
	font-size: 18px;
}

.A-guide > .Col1 {
    min-width: 242px;
	padding: 0 32px 0 0;
	border-right: 4px solid var(--colorC);
}
.A-guide > .Col1 h3 {
	padding-bottom: 16px;
	margin-bottom: 16px;
	margin-top: 0;
	font-size: 26px;
	border-bottom: 1px solid var(--colorC);
}
.A-guide > .Col1 > p { margin: 6px 0; }
.A-guide > .Col1 a {
	display: inline-block;
	padding: 6px 12px;
	font-size: 20px;
	font-family: var(--fontB);
}
.A-guide > .Col1 .active a,
.A-guide > .Col1 a.active {
	font-weight: 700;
	background-color: var(--colorA);
	color: white;
	border-radius: 5px;
}
.A-guide > .Col2 {
	padding: 0  0 0 32px;
}

.A-guide h3 {
	margin: 48px 0 12px;
}
.A-guide ol,
.A-guide ul { margin: 0; padding-left: 20px; }
.A-guide li { margin: 6px 0; }
.A-guide-step h4 {
	margin: 10px 0 12px;
	font-size: 24px;
	font-weight: 700;
    font-family: var(--fontB);
	color: var(--colorA);
}
.A-guide-step { margin-bottom: 16px; }
.A-guide-step > .Col1 {
	flex: 0 0 auto;
	width: 64px;
}
.A-guide-step .Col1 p {
	width: 48px;
	height: 48px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 900;
    font-family: var(--fontB);
	color: white;
	background: var(--colorA);
	border-radius: 100px;
}


.A-guide img {
}
.A-col-B .Acolumn {
	min-width: 40%;
}
.A-col-B .Col2 {
	padding-left: 64px;
}
.A-col-B1 img {
	margin-top: -48px; 
	border-radius: 20px;
	box-shadow: 0 6px 10px hsla(0, 0%, 0%, 0.1);
}
.A-col-B2 img { margin-top: -64px; }


.A-col-C {
	align-items: center;
	gap: 24px;
	margin-bottom: 24px;
	text-align: center;
}
.A-col-C .Acolumn {
	flex: 0 0 50%;
}
.A-col-C img {
	width: auto;
	max-height: 300px;
	border-radius: 20px;
	box-shadow: 0 6px 10px hsla(0, 0%, 0%, 0.1);
}
.A-col-C p {
	margin: 8px 0;
	padding: 0 10%;
	font-size: 20px;
}
.A-col-C p strong {
	font-weight: 900;
	color: var(--colorC);
}
.A-col-C1 img { max-height: unset; }
.A-col-C1 {
	text-align: left;
}
.A-col-C2 { margin-top: 64px; }


body .ACB-gallery-show .slide-new,
body .ACB-gallery-show .slide { object-fit: scale-down; }


.A-col-D {
	gap: 24px;
	margin: 48px 0;
}
.A-col-D h3:first-child {
	margin-top: 0;
}
.A-col-D .Acolumn {
	flex: 0 0 50%;
}
.A-col-D img {
	width: 100%;
	height: auto;
	margin-top: 24px;
	border-radius: 20px;
	box-shadow: 0 6px 10px hsla(0, 0%, 0%, 0.1);
}
.A-col-D li em { color: var(--colorC); }
.A-col-D blockquote {
	margin: 0;
	padding: 0 24px;
	border-left: 8px solid var(--colorC);
}
.A-col-D blockquote em { font-size: 14px; }




.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;
	align-items: flex-end;
    padding: 32px 10% 48px;
    background: #341539;
    background: hsl(292, 46%, 10%);
	color: white;
}
.A-footer-col {
    width: 33.333%;
    padding: 16px;
    float: left;
}
.A-footer-col.Col2 { text-align: center; }
.A-footer-col.Col3 { text-align: right; }
.A-footer-col .A-logo {
	width: 100%;
	text-align: center;
}
.A-footer-col .A-logo img {
    width: auto;
	height: 80px;
    padding: 0 32px;
	object-fit: contain;
    object-position: left;
}
.A-footer-col h3 {
	margin: 0;
	font: 700 18px var(--fontA);
	color: #AAA;
}
.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: #AAA;
}
.A-footer-col a { color: var(--colorB); cursor: pointer; }
.A-footer-col label { display: inline-block; margin-right: 8px; }
.A-footer-col a:hover { color: var(--colorB);  font-weight: 700; }
.A-footer-col ul { padding: 0; margin: 0; list-style: none; }
.A-contact-row {
	display: flex;
	margin: 16px 0;
}
.A-contact-row svg {
	height: 24px;
	margin-right: 8px;
	fill: white;
	stroke: white;
}

.A-footer h2 {
	margin: 0 0 4px;
	font: 900 32px var(--fontB);
	color: white;
}
.A-footer h4 {
	margin: 0 0 24px;
	color: white;
}

footer a { text-decoration: none; }
footer .A-social {
	display: flex;
    padding: 0;
	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;
    color: var(--colorC);
    background: hsl(292, 46%, 10%);
    background: #341539;
	z-index: 9;
}
.A-footer-created a {
	font-size: 14px;
    font-weight: 700;
    color: white;
}
.A-footer-created a:hover { color: var(--colorB); }
.A-footer-created img {
    height: 40px;
    margin: 16px 0 8px 0;
}
.A-footer-created .copyright { margin-left: 8px; font-size: 14px; }




/* PARALLAX */
.actus-parallax { overflow: hidden; }

.velaki {
    display: none;
    background: var(--colorA);
    position: fixed;
    bottom: 16px;
	left: calc(100% - 64px);
    padding: 8px 12px 12px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    transform: rotate(-90deg) scale(1);
    cursor: pointer;
    z-index: 9999;
    border-radius: 7px;
    box-shadow: -4px 4px 8px hsla(0, 0%, 0%, 0.3);
    transition: 0.3s;
}




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



.page-template-page-thankyou header nav,
.page-template-page-checkout header nav { opacity: 0; pointer-events: none; }


#tsparticles {
	display: none;
	position: absolute;
    right: 0;
    top: 0;
    width: 58%;
    height: 80%;
    padding: 0;
    z-index: 1;

}
#tsparticles2 {
	position: absolute;
    left: 0;
    top: 3.6vw;
    width: 100%;
    height: 18vw;
    padding: 0 35%;
    z-index: 9;
}
#tsparticles3 {
	position: absolute;
    left: -10%;
    top: 300px;
    width: 120%;
    height: 380px;
    padding: 0;
}


.A-screenshots {
	flex-flow: row wrap;
	gap: 24px;
    width: 100%;
    /* height: 140vh; */
	padding: 64px 10%;
}
.A-screenshots .Acolumn {
	flex: 0 0 auto;
	width: calc(33.333% - 24px);
	margin: 0;
}
.A-screenshots img {
	border-radius: 16px;
	box-shadow: 0 8px 16px hsla(0, 0%, 0%, 0.1);
}


.ACB-gallery-show .prev svg,
.ACB-gallery-show .next svg {
	fill: var(--colorC) !important;
}


.A-page-title,
.A-title-2 { padding: 0 10%; }

.A-page-B-title { margin-bottom: 48px; }
.A-page-B-content { padding: 48px 20% 96px; }






#home-testimonials { display: none; }

















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


@media (max-width: 1750px) {
	#home-hero .Col1 h2,
	#home-hero h1 { padding-right: 0; }
}


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


	#home-hero .Acolumn { width: 40%; }
	#home-hero-columns > .Col2 { width: 60%; }
	#home-hero-B { margin-top: -17%; }



}



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


	.A-logo-link div { display: none; }


}



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


	#home-hero-columns { flex-flow: column; }
	#home-hero .Acolumn,
	#home-hero-columns > .Col2 { width: 100%; }
	#home-hero .Col1 h2 strong,
	#home-hero .Col1 h2 {
		padding-right: 30%;
	}
	#home-hero .Col1 .A-supertitle {
		display: block;
    	width: fit-content;
	}
	#home-hero-columns .Col2 {
        margin-top: -8%;
		padding: 0 5% 0 30%;
	}
	#home-hero h1 strong { display: block; }
	#home-hero-B { margin-top: -19%; padding: 0 48% 0 10%; }
	[lang="el"] #home-hero-B { margin-top: -21%; }
	#home-hero .A-buttons { padding-right: 10%; }



	#home-pricing .A-card h3 { min-height: 77px; }
	#home-pricing .A-card > p:not(.A-price) { min-height: 45px; }
	#home-pricing .A-card sub {
		display: block; 
		margin: 6px 15% 0;
	}

	#home-cta h4 { padding: 0 15%; }

}



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

	header { padding: 12px 10% 12px 10%; }
	header .A-flex { place-items: flex-start; }
	header .languages { top: 38px; right: 15%; }
	header nav { margin-top: 40px; }
	header nav .menu-toggle { display: inline-block; }
	header nav ul { display: none; text-align: right; }
	header nav ul li {
		display: block;
		margin: 6px 0px 12px 0;
	}
	nav .menu-menu-1-container { padding: 20px 0 12px; }


	.A-logo-link div { display: block; }

	#home-hero-columns .Col2 {
        margin-top: -6%;
		padding: 0 0% 0 30%;
	}
	#home-hero-B { margin-top: -21%; }
	[lang="el"] #home-hero-B { margin-top: -24%; }
	#home-hero .Col1 h2 strong,
	#home-hero .Col1 h2 {
		padding-right: 0%;
	}
	
	#home-problem .Acolumns { flex-flow: row wrap; gap: 0; }
	#home-problem .Acolumn { width: calc(50% - 16px); margin: 8px; }

	#home-video iframe {
		width: calc(50vw * 1.2);
		height: calc(28.1vw * 1.2);
	}

	#home-features .Acolumn {
		width: calc(50% - 16px);
	}


	#home-testimonials { padding: 64px 5%; }
	#home-testimonials .Acolumn { width: 33.333%; }
	#home-testimonials .Col1 { width: 40px; }

	#home-faq { padding: 64px 15%; }
	#home-cta h4 { padding: 0 10%; }
	#home-cta .A-button { margin: 8px; }
	#home-cta .Acolumns {
		flex-flow: column;
        align-items: flex-start;
    	text-align: left;
	}
	#home-cta .Acolumns p { margin: 4px 0; }


	.A-guide { flex-flow: column; }
	.A-guide > .Col1 {
		width: 304px;
		border: 0;
	}
	.A-guide > .Col2 {
		width: 100%;
		padding: 0;
	}
	.A-col-B1 img,
	.A-col-B2 img { margin-top: -8px; }


	#review-copyspell {
		padding: 0 3%;
	}
	#review-copyspell .Acolumn {
		padding: 64px 48px;
	}



	.A-footer { flex-flow: column; }
	.A-footer-col {
		width: 100% !important;
		margin-bottom: 0;
		text-align: center;
		order: 2;
	}
	.A-footer-col.Col2 { order: 1; }
	.A-footer-col.Col3 { order: 3; text-align: center; }


}





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


	#home-hero h1 { font-size: 28px; }
	#home-hero h1 strong { display: unset; font-size: 36px; }

	#home-problem { padding: 48px 10%; }
	[lang="el"] #home-solution,
	#home-solution { padding: 48px 10% 64px; }
	#home-solution > .Acolumns { flex-flow: column; }
	[lang="el"] #home-solution > .Acolumns > .Col1,
	[lang="el"] #home-solution > .Acolumns > .Col2,
	#home-solution > .Acolumns > .Col1,
	#home-solution > .Acolumns > .Col2 { width: 100%; padding: 0; }

	#home-how .A-step-number:after { height: 180px; }
	#home-how .A-steps {
		flex-flow: column;
		gap: 24px;
	}
	#home-how .A-steps > .Col1 { width: 100%; padding: 0 15%; }
	#home-how .A-steps > .Col1 img {
		left: 0;
		top: 0;
	}

	#home-pricing .Acolumns { flex-flow: column; }
	#home-pricing .Acolumn { width: 100%; }
	#home-pricing .A-card h3 { min-height: unset; }
	#home-pricing .A-card > p:not(.A-price) { min-height: unset; }
	
	

	#before-after { padding: 48px 3%; }
	#home-testimonials .Acolumn { width: 50%; }
	#home-testimonials .Col1 { width: 48px; }

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

	
	#home-cta h4 { padding: 0 5%; }

	#review-copyspell {
		padding: 0 3%;
	}
	#review-copyspell .Acolumn {
		padding: 64px 24px;
	}


}




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

	h2 { font-size: 36px; }

	header nav { margin-top: 28px; }
	header .languages { top: 26px; }
	header .A-logo img { height: 64px; }
	header .A-logo-link { font-size: 28px; }


	#home-hero .Col1 .A-supertitle { display: unset; }
    #home-hero-columns .Col2 {
        margin-top: 48px;
        padding: 0 2%;
    }
	#home-hero-B {
        margin-top: 32px;
        padding: 0 10%;
	}
	[lang="el"] #home-hero-B { margin-top: 32px; }
	#home-hero .Col2 .A-note { display: none; }
	#home-hero .A-buttons { width: 100%; padding-right: 0; }

	
	#home-video iframe {
		width: calc(50vw * 1.4);
		height: calc(28.1vw * 1.4);
	}
	
	#home-features .Acolumn { width: 100%; }

	#home-how .A-step .Col2 h3 { font-size: 28px; }
	#home-how .A-step-number:after { height: 200px; }


	#before-after .Acolumn { flex-flow: column; width: 100%; }
	#before-after .Acolumn div,
	#before-after .Acolumn picture { width: 100%; padding: 12px 0; }



	#home-faq h3 { font-size: 22px; }



	#home-pricing.home-pricing-2 ul {
		margin: 28px 0;
	}
	#home-pricing.home-pricing-2 .A-card h3 {
		margin: 0 0 16px;
		font-size: 28px;
	}



	.A-col-B { flex-flow: column-reverse; }
	.A-col-B1 img,
	.A-col-B2 img { margin: 6px 0; }
	.A-col-B .Col2 { padding-left: 0; }
	.page-template-page-no-header h1,
	.A-guide-subtitle {
		padding: 0 10%;
		text-align: left;
	}
	.A-guide > .Col1 { margin-bottom: 64px; }
	.A-guide-step { margin: 40px 0; }
	.A-guide h3 {
		margin: 64px 0 12px;
	}

	.A-col-C { flex-flow: column; margin: 48px 0; }
	.A-col-C.reverse { flex-flow: column-reverse; }
	.A-col-C .Acolumn { width: 80%; }
	.A-col-C p {
		padding: 0;
		text-align: center;
	}
	.A-col-C img {
        width: auto;
        height: auto;
		min-width: 60%;
		max-height: unset;
		object-fit: scale-down;
	}

	.A-col-D { flex-flow: column-reverse; }
	.A-col-D img { width: 80%; }


	#review-copyspell { padding: 96px 15%; }
	#review-copyspell { flex-flow: column; }
	#review-copyspell .Col1 img { height: 300px; }
	#review-copyspell .Acolumn {
		width: 100%;
		padding: 16px 0;
	}

}




/* MARK: 640
*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 640px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
	
	h2 { font-size: 32px; }
	h3 { font-size: 28px; }

	#home-cta h4,
	#home-faq h4,
	#home-testimonials h4,
	#home-pricing h4,
	#home-how h4,
	#home-features h4,
	#home-problem h4 { font-size: 20px; }
	#home-problem > p { font-size: 17px; }
	#home-problem .Acolumn h3 { font-size: 22px; }


	.search-result-list li { margin-bottom: 32px; }
	.search-result-list li .img-placeholder,
	.search-result-list li img { display: none; }

	header { padding: 8px 6%; }
	header .A-logo { margin: 0 8px 0 0; }
	header .A-logo img { height: 48px; }
	header .A-logo-link { font-size: 24px; }
	header nav { margin-top: 20px; }
	header .languages { top: 18px; }


	#home-hero .Col1 .A-supertitle { display: block; }
	#home-hero .A-button-B { padding: 16px 18px; }
	#home-hero-B > p { font-size: 17px; }


	#home-hero { padding: 48px 0; }
    #home-hero h1 strong { font-size: 28px; }
	#home-hero .Col1 h2 strong, 
	#home-hero .Col1 h2 { font-size: 22px; }

	#home-hero-columns .Col2 { margin-top: 12px; }
	#home-hero-columns .Col2 .A-flex { flex-flow: column; }
	#home-hero .Col2 section:first-child {
		margin-right: 0;
		padding-top: 0;
	}
	#home-hero .Col2 img {
        margin: 0;
        width: 100%;
	}
	#home-hero .A-button p mark { display: none; }


	
	#home-problem .Acolumn { width: 100%; margin: 8px 0; }
	#home-problem .Col1 { height: 360px; }

	#home-solution .Col1 .Acolumns { flex-flow: column; }
	#home-solution .Col1 .Col1 { width: 100%; margin-bottom: 16px; }

	
	#home-how .A-step .Col2 h3 { font-size: 24px; }
	#home-how .A-step-number:after { height: 200px; }
	#home-how .A-step { padding: 0; }
	#home-how .A-steps > .Col1 { padding: 0 10%; }

	#home-testimonials .Acolumn { width: 100%; }
	#home-testimonials .Col1 { width: 48px; }

	#home-faq h3 { font-size: 20px; }

	.A-col-D img { width: 100%; }

	

}



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

	h1 { font-size: 34px; }
	h2 { font-size: 28px; }
	h3 { font-size: 26px; }



	.A-logo-link > div { display: none; }
	header .languages { right: 25%; }

	#home-hero { padding: 48px 0; }
    #home-hero h1 strong { font-size: 28px; }
	#home-hero .Col1 h2 strong, 
	#home-hero .Col1 h2 { font-size: 22px; }

	#home-hero-columns .Col2 { margin-top: 12px; }
	#home-hero-columns .Col2 .A-flex { flex-flow: column; }
	#home-hero .Col2 section:first-child {
		margin-right: 0;
		padding-top: 0;
	}
	#home-hero .Col2 img {
        margin: 0;
        width: 100%;
	}
	#home-hero .A-button p mark { display: none; }
	
	#home-problem .Col1 { height: 320px; }
	#home-solution .Col1 .Col1 figure { padding: 12px; }
	#home-solution .Col1 .Col1 img { height: 34px; }

	
	#home-video iframe {
		width: calc(50vw * 1.6);
		height: calc(28.1vw * 1.6);
		border-radius: 16px;
	}



	#home-features .Acolumn ul { padding: 0 0 0 16px; }

	
	#home-how h4 { margin: 0 0 64px; }
	#home-how .A-step-number:after { display: none; }
	#home-how .A-step { flex-flow: column; margin-bottom: 48px; }
	#home-how .A-steps > .Col1 { padding: 0; }


	#home-pricing { padding: 64px 10%; }
	#home-pricing .A-card { padding: 32px 24px; }
	#home-pricing .A-card sub { margin: 6px 5% 0; }
	#home-pricing .A-price s { display: block; }
	#home-pricing li { font-size: 16px; }
	[lang="el"] #home-pricing li { font-size: 15px; }

	.A-button p { white-space: unset; }

	#home-testimonials { padding: 64px 5% 32px; }
	.Acarousel[data-navi="sides"] { padding: 0 8px; }
	.Acarousel[data-navi="sides"] .Anavi { 
		width: 110%;
		left: -5%;
 	}
	.Acarousel .Anavi svg {
		width: 24px;
		height: 24px;
	}

	
	#home-faq h3 {
		padding: 20px 44px 20px 20px;
		font-size: 18px;
	}
	#home-faq h3:after { right: 18px; }

	.A-guide-step { flex-flow: column; }
	.A-col-C .Acolumn { width: 100%; }


	#review-copyspell { padding: 24px 5%; }
	#review-copyspell .Col1 img { height: 200px; }

}



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


}












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