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


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

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


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

    --fontA: 'Roboto', sans-serif;
    --fontB: 'Manrope', 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); color: #606060; }
.uline::after { border-bottom: 8px solid var(--colorA); }
a { color: var(--colorB); text-decoration: none; }
a h1, a h2, a h3, a h4, a h5, a h6, a li,
a p { color: #606060; }

li,
p,
a {
	font-size: 20px;
}

h1 {
	font-size: 40px;
	font-weight: 500;
	font-family: var(--fontB);
	line-height: 1.5;
}

.A-page-content h1,
h2 {
	font-size: 44px;
	font-weight: 500;
	font-family: var(--fontA);
	color: var(--colorA);
}
.A-page-content h2 {
	margin-top: 96px;
}



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

.backA { background: var(--colorA); }
.backB { background: var(--colorB); }
.backC { background: var(--colorC); }
.backD { background: var(--colorD); }
.backE { background: #021d26; }
.backF { background: #cecece; }

.A-flex { display: flex; }
.A-flex-wrap { display: flex; flex-flow: row wrap; }

.abs {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}




body main#content,
body footer { display: block; }
figure { margin: 0; }


img { position: relative; }
img:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: white;
}
.A-content img { max-width: 100%; height: auto; }
[data-show="1"] { cursor: zoom-in; }



/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ HEADER */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
header {
	position: relative;
    text-align: center;
	padding: 48px 12%;
}
header .A-flex {
	place-items: center;
	place-content: space-between;
}
header .A-logo {
	display: inline-block;
    width: auto;
	margin: 0 0 32px 0;
	transition: 1s all;
}
header .A-logo img {
    width: auto;
    height: auto;
    max-height: 110px;
    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: right;
}
header nav ul li {
    display: inline-block;
    position: relative;
    width: auto;
    padding: 0px;
    margin: 4px 0px 4px 40px;
    cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
header nav ul li a {
    position: relative;
    font: 400 23px var(--fontA);
	text-decoration: none;
	color: #606060;
    z-index: 99;
}
header nav ul li:hover > a,
header nav ul li.current_page_item > a {
    color: var(--colorA);
    opacity: 1;
}
header nav ul.sub-menu { 
	display: none;
	position: absolute;
	min-width: 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; }


nav.A-breadcrumb {}

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


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


.search-result-list {
	padding: 0;
	list-style: none;
}
.search-result-list li { margin-bottom: 16px; }
.search-result-list li > a {
	display: flex;
    align-items: center;
}
.search-result-list li .img-placeholder,
.search-result-list li img {
	flex: 0 0 auto;
	width: 100px;
	height: 100px;
	object-fit: cover;
	margin-right: 16px;
	background: #DDD;
}
.search-result-list li h3 { margin: 0 0 12px; }
.search-result-list li p { margin: 0; }


.A-404,
.A-SEARCH-RESULTS { padding: 32px 10%; }
.A-SEARCH-RESULTS ul {
	padding: 0;
	list-style: none;
}
.A-SEARCH-RESULTS .pagination { margin-top: 64px; }
.A-SEARCH-RESULTS .pagination > .screen-reader-text {
	display: none;
}
.A-SEARCH-RESULTS .nav-links {
	display: flex;
	align-items: center;
	place-content: center;
}
.A-SEARCH-RESULTS .nav-links span,
.A-SEARCH-RESULTS .nav-links a {
	margin: 0 4px;
	font-size: 18px;
	line-height: 1;
}
.A-SEARCH-RESULTS .page-numbers {
	margin: 4px;
	padding: 6px 12px;
	background: var(--colorA);
	color: white;
}
.A-SEARCH-RESULTS .prev,
.A-SEARCH-RESULTS .next {
	background: transparent;
	color: var(--colorA);
}
.A-SEARCH-RESULTS .page-numbers:hover {
	background: var(--colorB);
	color: white;
}



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




.A-video {
	position: relative;
    width: 100%;
    height: 100%;
	margin: 0;
}
.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 .wp-block-embed__wrapper iframe,
.A-video-frame .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.A-video .wp-block-embed__wrapper {
	position: relative;
	width: calc(100% / 1);
	padding-top: calc(56.25% / 1);
	margin: 0 auto;
}



.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: 8px 24px;
	font: 400 18px var(--fontA);
	line-height: 1;
	background: transparent;
	border: 5px solid var(--colorC);
	color: #606060;
	border-radius: 40px;
	cursor: pointer;
}
.A-more a {
	font: 400 18px var(--fontA);
	color: #606060;
}
.Aitem .more:hover,
.A-more:hover { background: var(--colorC); }




/* MARK: AGRODER
   ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ 
   ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */


 

.A-hero {
	padding: 48px 0;
}
.A-hero h1 {
	margin: 0 0 0 12%;
	font-size: 40px;
	font-weight: 500;
	font-family: var(--fontB);
	line-height: 1.7;
	letter-spacing: 10px;
}
.A-hero h1 strong { font-weight: 400; color: var(--colorA); }
.A-hero .A-plants {
	position: relative;
    width: 100%;
    height: auto;
	margin-top: -28vw;
    margin-bottom: -38vw;
}
.A-hero svg {
    width: 105%;
    height: auto;
	fill: transparent;
	stroke: #213900;
	stroke-width: 7;
}
.A-plants .A-tomato-1 {
	position: absolute;
	right: 9%;
	top: 14%;
	transform: rotate(15deg) scale(0);
	transform-origin: bottom right;
}
.A-plants .A-tomato-1 {
	animation: tomatoBounce1 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
	animation-delay: 9.5s;
}
@keyframes tomatoBounce1 {
    0% { transform: rotate(15deg) scale(0); }
    100% { transform: rotate(-45deg) scale(1); }
}
.A-plants .A-tomato-2 {
	position: absolute;
    right: 20%;
    top: 26.0%;
    transform: rotate(-15deg) scale(0);
	transform-origin: bottom right;
}
.A-plants .A-tomato-2 {
	animation: tomatoBounce2 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
	animation-delay: 9s;
}
@keyframes tomatoBounce2 {
    0% { transform: rotate(-15deg) scale(0); }
    100% { transform: rotate(25deg) scale(0.7); }
}

 
/* SVG LINES */
/* ┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅ */
.A-plants .A-plants-1 {
	stroke-dashoffset: 5300;
	stroke-dasharray: 5300;
}
.A-plants .A-plants-1 {
	animation: plants1 12s ease-out forwards;
}
.A-plants .A-plants-2 {
	stroke-dashoffset: 650;
	stroke-dasharray: 650;
}
.A-plants .A-plants-2 {
	position: absolute;
	left: 0;
	top: 0;
	width: 105%;
	height: auto;
}
.A-plants .A-plants-2 {
	animation: plants2 5s linear forwards;
	animation-delay: 7s;
}
@keyframes plants1 {
  0% { stroke-dashoffset: 5300; }
  100% { stroke-dashoffset: 0; }
}
@keyframes plants2 {
  0% { stroke-dashoffset: 650; }
  100% { stroke-dashoffset: 0; }
}




.Acarousel { margin: 64px 0; }




.A-home-A {
	padding: 48px 15% 0;
}
.A-home-A { gap: 64px; }
.A-home-A .Acolumn {
	flex: 0 0 auto;
	position: relative;
	width: 50%;
}
.A-home-A .Col1 { padding-left: 5%; text-align: right; }
.A-home-A img {
	width: 100%;
}





.A-home-moto {
	margin-left: calc(90% - 620px);
	margin-bottom: 0;
	font-weight: 400;
	font-family: var(--fontB);
	letter-spacing: 6px;
}


.A-home-B {
	align-items: center;
	margin-top: 48px;
	padding: 0 20% 48px 0;
}
.A-home-B { gap: 128px; }
.A-home-B h2 { margin-top: 0; }
.A-home-B .Acolumn {
	flex: 0 0 auto;
	position: relative;
	width: 60%;
}
.A-home-B .Col2 { width: 40%; }
.A-home-B .A-video { position: relative; }
.A-home-B .A-video:after {
	content: "";
	position: absolute;
	left: 0%;
	top: calc(100% - 5px);
	height: 64px;
	width: 100%;
	background: url(img/video-shadow.png) no-repeat;
	background-size: 100% 100%;
}

.A-home-C {
	align-items: center;
	gap: 128px;
	padding: 48px 20% 48px 0%;
}
.A-home-C img { border-radius: 1000px; }
.A-home-C .Col1 { padding-left: 20%; }




.A-page-cover {
	position: relative;
	height: 660px;
}
.A-page-cover figure {
    height: 100%;
	padding-left: 30%;
}
.A-page-cover figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.A-page-cover .A-bulb {
	position: absolute;
	left: 7%;
	top: 17%;
	z-index: 9;
}
.A-page-cover .A-bulb .A-lines {
    position: absolute;
    left: 3.5vw;
    top: -0.5vw;
    width: 90vw;
    height: 90vw;
    stroke-width: 10;
    stroke: #0b0c0c;
    fill: transparent;
    z-index: 999;
    stroke-dashoffset: -160;
    stroke-dasharray: 160;
	animation: lines 2s linear forwards;
	pointer-events: none;
}
@keyframes lines {
  0% { stroke-dashoffset: -160; }
  100% { stroke-dashoffset: 0; }
}
.A-page-cover .A-bulb img.bulb {
	position: absolute;
	left: 0;
	top: 0;
	width: 27vw;
	height: auto;
}
.A-page-cover .A-bulb img.leaf-1 {
	position: absolute;
    left: 12.4vw;
    top: 2.5vw;
	width: 4.336vw;
	height: auto;
	transform: scale(0);
	transform-origin: 75% 100%;
	animation: leafBounce1 0.8s cubic-bezier(0.68, -0.2, 0.265, 1.55) forwards;
	animation-delay: 2s;
}
@keyframes leafBounce1 {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.A-page-cover .A-bulb img.leaf-2 {
	position: absolute;
    left: 17.3vw;
    top: 6.1vw;
	width: 5.781vw;
	height: auto;
	transform: scale(0);
	transform-origin: left;
	animation: leafBounce2 0.8s cubic-bezier(0.68, -0.2, 0.265, 1.55) forwards;
	animation-delay: 1.8s;
}
@keyframes leafBounce2 {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}
.A-contact-cover figure {
	padding-left: 40%;
}
.A-contact-cover .A-phone {
	position: absolute;
	left: 15%;
	top: 30%;
	z-index: 9;
}
.A-contact-leaves {
	position: absolute;
	left: 0;
	top: 0;
	width: 40%;
	height: 100%;
    z-index: 9;
}



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


.A-contact { margin-top: 24px; }
.A-contact .Acolumn {
	flex: 0 0 auto;
	width: 40%;
}
.A-contact .Col1 { padding: 0 5% 0 10%; }
.A-contact .Col2 { width: 60%; }
.A-contact h1 {
	font-size: 40px;
	font-weight: 300;
	font-family: var(--fontA);
	color: #4A5A46;
}
.A-contact iframe {
	width: 100%;
	height: 640px;
	line-height: 0;
}













.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;
	margin: 96px 10% 0;
    padding: 64px 0;
	border-top: 6px solid var(--colorA);
}
.A-footer-col {
    width: 31%;
    padding: 0 32px;
    float: left;
	border-right: 3px solid #606060;
}
.A-footer-col.Col4 { width: 16%; }
.A-footer-col:first-child {
	width: 22%;
	padding-left: 0;
	border: 0;
}
.A-footer-col:last-child {
	padding-right: 0;
	border: 0;
	text-align: right;
}
.A-footer-col .A-logo {
	width: 100%;
}
.A-footer-col .A-logo img {
    width: auto;
	max-height: 100px;
    height: auto;
    padding: 0;
	object-fit: contain;
    object-position: left;
}
.A-footer-col h3 {
	margin: 0;
	font: 900 23px var(--fontA);
	color: var(--colorA);
}
.A-footer-col label,
.A-footer-col p,
.A-footer-col li,
.A-footer-col a {
    display: block;
	margin: 2px 0;
	font: 400 20px var(--fontA);
	color: #606060;
}
.A-footer-col a { display: inline-block; }
.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;
}


footer a { text-decoration: none; }
footer .A-social {
	display: flex;
    justify-content: flex-end;
    padding: 0;
	margin-top: 24px;
	text-align: center;
}
footer .A-social a {
	margin: 0 0 0 20px;
	cursor: pointer;
}
footer .A-social svg { 
	height: 40px;
	fill: #606060;
	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;
    background: var(--colorC);
	z-index: 9;
}
.A-footer-created a {
	font-size: 14px;
    font-weight: 700;
    color: var(--colorA);
}
.A-footer-created a:hover { color: var(--colorB); }
.A-footer-created img {
    height: 40px;
    margin: 16px 0 8px 0;
}






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

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




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 20px var(--fontA);
	background: var(--colorC);
	border-radius: 24px;
	border: 0;
	outline: 0;
}
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; }
Xform .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"] {
    display: inline-block;
	position: relative;
    width: auto;
    padding: 8px 32px;
	font-size: 15px;
	background: #213900;
	color: white;
	cursor: pointer;
}
form input[type="submit"]:hover { background: var(--colorA); }
form input[type="submit"][disabled] {
	background: var(--colorC);
	cursor: not-allowed;
}

.wpcf7-spinner { display: none; }



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





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




}




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

	.A-home-moto {
		letter-spacing: 6px;
		margin: 48px auto;
		text-align: center;
	}
	.A-home-A {
		align-items: center;
	}
	.A-home-B {
		gap: 64px;
		align-items: center;
	}

	.A-page-cover { height: 560px; }
	.A-page-cover .A-bulb { top: 25%; }

	.A-contact-cover .A-phone { left: 9%; }
	.A-contact .Col1 { padding: 0 5%; }


}





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

	.A-hero h1 {
		font-size: 36px;
		line-height: 1.6;
		letter-spacing: 6px;
	}

	
	.A-page-cover { height: 500px; }
	.A-page-cover .A-bulb { top: 27%; }


	.A-home-moto { margin: 0 auto 48px; }

	.A-home-A { flex-flow: column-reverse; gap: 32px; padding: 48px 15%; }
	.A-home-A .Acolumn { width: 100%; }
	.A-home-A .Col2 { padding: 0 15%; }
	.A-home-A .Col1 { text-align: center;	}
	.A-home-A .Col1 h2 { margin-top: 0; }
	.A-home-C .Col1 { padding-left: 0; }
	
	.A-home-B { flex-flow: column; padding: 48px 10%; }
	.A-home-B .Acolumn { width: 100%; text-align: center; }
	.A-home-B .Col2 h2 { margin-top: 0; }


	.A-footer { flex-flow: row wrap; padding: 48px 0; }
	.A-footer-col { width: 38%; }
	.A-footer-col.Col4 { width: 24%; }
	.A-footer-col:nth-child(2) { padding-left: 0; }
	.A-footer-col:nth-child(1) {
		width: 100%;
        margin-bottom: 48px;
        text-align: center;
	}


	.A-contact-cover { height: 450px; }
	.A-contact-cover figure { padding-left: 50%; }
	.A-contact-cover .A-phone { left: 12%; top: 22%; }
	.A-contact .Col2,
	.A-contact .Acolumn { width: 50%; }



}
 




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

	header .A-flex { place-items: flex-start; }
	header nav { margin-top: 32px; }
	header nav .menu-toggle { display: inline-block; }
	header nav ul { display: none; padding: 40px 0; }
	header nav ul li {
		display: block;
		margin: 6px 0px 12px 0;
	}
	

	.A-home-moto {
        margin: 0 auto 32px;
        font-size: 40px;
	}
	


	
	.A-contact-cover { height: 350px; }
	.A-contact-cover figure { padding-left: 40%; }
	.A-contact-cover .A-phone {
        left: 8%;
        top: 25%;
        width: 25vw;
        height: 25vw;
    }
	.A-contact { flex-flow: column; }
	.A-contact .Col1 { padding: 0 15% 64px; }
	.A-contact .Col2,
	.A-contact .Acolumn { width: 100%; }
	.A-contact iframe { height: 500px; }





	.A-footer-col.Col4,
	.A-footer-col {
		width: 100%;
		margin-bottom: 48px;
		padding: 0;
		text-align: center;
		border: 0;
	}
	footer .A-social { justify-content: center; }


}





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

	.A-footer-col label,
	.A-footer-col p,
	.A-footer-col li,
	.A-footer-col a,
	li, p, a { font-size: 20px; }
	.A-page-content h1, h2 { font-size: 42px; }

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


	.A-page-cover { height: 400px; }
	.A-page-cover figure { padding-left: 0; }
	.A-page-cover .A-bulb {
        top: unset;
        bottom: 15vw;
        left: 38vw;
    }

	.A-hero .A-plants {
		margin-top: -24vw;
		margin-bottom: -42vw;
	}
	
	
	.A-home-A .Col2 { padding: 0 5%; }

	
	.A-contact-cover .A-phone { display: none; }
	.A-contact iframe { height: 400px; }

	.A-contact-leaves {
		width: 100%;
	}

}





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


	.Aitem .more, .A-more,
	li, p, a { font-size: 18px; }
	.A-page-content h1, h2 { font-size: 36px; }

	.A-page-cover { height: 300px; }
	.A-page-content { padding: 48px 10%; }

	.A-hero {
		padding: 0 0 48px;
	}
	.A-hero h1 {
		font-size: 30px;
		line-height: 1.4;
		letter-spacing: 0px;
	}
	.A-hero .A-plants {
		margin-top: -20vw;
		margin-bottom: -50vw;
	}

	.A-home-moto {
        margin: 0 auto 24px;
        font-size: 36px;
        letter-spacing: 4px;
    }

	.A-home-A .Col2 { padding: 0; }



	.A-contact { margin: 0 -10vw; }
	.A-contact h1 { margin-top: 0; }
	.A-contact .Col1 { padding: 0 10% 64px; }
	.A-contact iframe { height: 300px; }

}





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


}












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