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



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

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

    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --gray: #6b7280;
    --gray-light: #9ca3af;

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


	--gradient-1: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
	--gradient-1: linear-gradient(315deg, hsl(190, 85%, 67%) 0%, hsl(215, 83%, 64%) 70%, hsl(240, 81%, 60%) 100%);
	--gradient-1b: linear-gradient(315deg, hsl(190, 85%, 67%) 0%, hsl(240, 81%, 60%) 70%, hsl(240, 81%, 60%) 100%);
    --gradient-2: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    --gradient-3: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);

	--gradient-back: linear-gradient(135deg, hsla(189, 76%, 66%, 0.082) 0%, hsla(230, 37%, 46%, 0.082) 100%);
	--gradient-primary: linear-gradient(135deg, hsl(199, 76%, 66%) 0%, hsl(240, 37%, 46%) 100%);
    --gradient-secondary: linear-gradient(135deg, hsl(204, 93%, 78%) 0%, hsl(252, 89%, 65%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(208, 99%, 65%) 0%, hsl(183, 100%, 50%) 100%);


    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

}


 
/* 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; }
Xbody { 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; }
li, p {
	font-size: 18px;
	line-height: 1.5;
	color: #888;
}
li strong, p strong { color: #333; }
blockquote {
	margin: 32px 0;
	padding: 16px 32px;
    box-shadow: var(--shadow-lg);
}


.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: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1000;
    text-align: center;
	padding: 40px 10%;
	transition: 0.5s all;
}
header .A-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	padding: 8px 48px 8px 12px;
	border-radius: 999px;
	box-shadow: 0 12px 35px rgba(91, 94, 247, 0.12);
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(92, 121, 255, 0.15);
	backdrop-filter: blur(14px) saturate(120%);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: 0.5s all;
}
header .A-flex > a { line-height: 0; }
header .A-logo {
	display: inline-block;
    width: auto;
	margin: 0;
	transition: 1s all;
}
header .A-logo img {
    width: 220px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
	transition: 0.5s all;
}
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: 24px;
    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 48px;
    cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: 0.5s all;
}
header nav ul li a {
    position: relative;
	display: block;
	margin: 8px 0;
    font: 900 22px var(--fontB);
	text-decoration: none;
	color: var(--gray);
    z-index: 99;
	transition: 0.5s all;
}
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: 320px;
	padding: 16px 12px;
	background: white;
	text-align: left;
	box-shadow: var(--shadow-lg);
	border-radius: 12px;
}
header nav ul.sub-menu li {
	margin: 0;
	padding: 4px 0 4px 16px;
}
header nav ul li:hover ul.sub-menu { display: block; }
header nav ul.sub-menu li a {
	font: 700 18px var(--fontB);
	line-height: 1.2;
}

header.scrolled .A-flex { padding: 6px 40px 6px 8px; }
header.scrolled .A-logo img { width: 160px; }
header.scrolled nav ul li a { margin: 6px 0; font-size: 18px; }

nav.A-breadcrumb {}

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


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


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


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



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




.A-video-frame {
	position: relative;
	background: url(img/laptop.png) no-repeat;
	background-size: 100%;
    width: 80%;
	padding: 2.5% 0.4% 10% 0.3%;
	margin: 32px 0 64px;
    margin-left: 10%;
}
.A-video-frame .wp-block-embed__wrapper {
	position: relative;
	width: calc(100% / 1.3);
	padding-top: calc(56.25% / 1.3);
	margin: 0 auto;
}
.A-video-frame .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.A-shadow-R { position: relative; }
.A-shadow-R:before {
	content: "";
	position: absolute;
	left: 100%;
	top: 0;
	height: 100%;
	width: 128px;
	background: url(img/shadow-R.jpg) no-repeat;
	background-size: contain;
}


.Aitem .more,
.A-more {
	display: inline-block;
	position: relative;
	margin-top: 24px;
	padding: 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; }



.wp-block-button.A-small a {
	padding: 8px 16px;
	font-size: 16px;
	box-shadow: var(--shadow-md);
}
.wp-block-button.A-small a:hover {
	transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.wp-block-button a {
	display: block;
	position: relative;
	padding: 12px 24px;
	background: var(--colorA);
	background: var(--gradient-1);
	color: white;
	border-radius: 100px;
	cursor: pointer;
	box-shadow: var(--shadow-lg);
	transition: 0.3s all;
  	z-index: 0;
}
.wp-block-button a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--gradient-1);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  transition: 0.3s all;
}
.wp-block-button.A-secondary a {
	background: transparent;
	color: var(--colorA);
}
.wp-block-button a s {
	position: relative;
	left: 0px;
	top: 1px;
	margin-left: 8px;
	text-decoration: none;
	transition: 0.3s all;
}
.wp-block-button a:hover {
	background: var(--gradient-1b);
	transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}
.wp-block-button a:hover s { left: 6px; }

:where(.is-layout-flex) { gap: 12px; }

.mask-radial {
	-webkit-mask: radial-gradient(circle at center, black 30%, transparent 70%);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-type: alpha;
}
.mask-bottom {
	-webkit-mask: linear-gradient(180deg, black 70%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-type: alpha;
}
.mask-top-bottom {
	-webkit-mask: linear-gradient(0deg, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-type: alpha;
}
.mask-left-right {
	-webkit-mask: linear-gradient(90deg, transparent 0%, black 20%, black 80%, transparent 100%);
	-webkit-mask-size: 100% 100%;
	-webkit-mask-type: alpha;
}
.mask-right {
	-webkit-mask: linear-gradient(90deg, transparent 0%, black 20%, black 80%, black 100%);
	-webkit-mask-size: 100% 100%;
	-webkit-mask-type: alpha;
}



.Acolumns.A-reverse {
	flex-direction: row-reverse;
}


/* MARK: --------------------------------------
*/
/* MARK: --------------------------------------
*/


.A-page-3D-content1 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
	width: calc(100vw - 90px);
    height: 100%;
    background: linear-gradient( #130e27, black, black );
    background: linear-gradient( hsl(33, 100%, 10%), black, black );
    background: linear-gradient( hsl(220, 50%, 10%), black, black );
	background: white;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
	
	background: hsl(0, 0%, 92%);
}
section.Asection.actus-3D,
.actus-3D {
    position: absolute;
    top: 50%;
    left: 50%;
	padding: 0;
    transition: 1s all;
    transform: translate3d( 0, 0, 0 );
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.A3D-scene {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.actus-grid-01 {
    display: none;
    position: absolute;
    transform: translate3d( -70vw, -50vh, 400px );
}
.plane-3D {
    position: relative;
    width: 200vw;
    height: 100vh;
    background: url(img/pattern01-half.png);
    -webkit-mask: linear-gradient( 0deg, black, black, transparent );
    -webkit-mask-size: 100% 100%;
    -webkit-mask-type: alpha;
}
.actus-3D-floor {
    position: absolute;
    width: auto;
    height: auto;
    pointer-events: none;
}
.grid-plane {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(img/pattern01-half.png);
    background-size: 100px;
}

.A3D-scene,
.A3D-scene * {
	pointer-events: none;
}

X.A3D-scene.faded { opacity: 0.2; }

.A3D-obj.header-anima,
.A3D-obj.header-logo {
    position: absolute;
    left: -14vw;
    top: -14vw;
    width: 28vw;
    height: 28vw;
    transition: 0.5s all;
    cursor: pointer;
}
.A3D-obj.header-anima { pointer-events: none; }
.A3D-obj.header-anima-shadow,
.A3D-obj.header-logo-shadow {
	filter: blur(30px) brightness(0.5);
	transform: scale(1.1);
	opacity: 0.4;
}
.A3D-obj.header-anima-shadow {
	filter: blur(8px) brightness(0.5);
	opacity: 0.15;
}
.A3D-obj.header-anima img,
.A3D-obj.header-anima-shadow img,
.A3D-obj.header-logo-shadow img,
.A3D-obj.header-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.A3D-obj[data-name="menu"] {
    position: absolute;
    left: -20vw;
    top: -20px;
    width: 40vw;
    height: 40px;
}
.A3D-obj[data-name="xAxis"] { opacity: 0; }
.A3D-obj[data-name="grid"] {
	-webkit-mask: radial-gradient(circle at center, black 30%, transparent 70%);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-type: alpha;
}

.gear1 svg {
	animation:  spin1 20s linear infinite;
    stroke-dashoffset: 0;
    stroke-dasharray: 100;
}
.gear2 svg {
	animation: spin1 20s linear infinite reverse;
    stroke-dashoffset: 0;
    stroke-dasharray: 100;
}
.gear3 svg {
	fill: white !important;
	stroke: none !important;
	animation: spin1 20s linear infinite;
    stroke-dashoffset: 0;
    stroke-dasharray: 100;
}
.gear3sh svg {
	animation: spin1 20s linear infinite;
	filter: blur(4px);
	fill: black !important;
	opacity: 0.3;
    stroke-dashoffset: 0;
    stroke-dasharray: 100;
}
.gear4 svg {
	animation: spin1 45s linear infinite reverse;
    stroke-dashoffset: 0;
    stroke-dasharray: 100;
}
.gear5 svg {
	animation: spin1 40s linear infinite reverse;
    stroke-dashoffset: 0;
    stroke-dasharray: 100;
}

.gear3sh.stroke1 svg,
.gear3.stroke1 svg,
.gear1.stroke1 svg {
	animation:  spin1 20s linear infinite,
				stroke1 10s forwards;
}
.gear2.stroke1 svg {
	animation:  spin1 20s linear infinite reverse,
				stroke1 10s forwards;
}
.gear4.stroke1 svg {
	animation:  spin1 45s linear infinite reverse,
				stroke1 20s forwards;
}
.gear5.stroke1 svg {
	animation:  spin1 40s linear infinite reverse,
				stroke1 20s forwards;
}


@keyframes stroke1 {
	0% { stroke-dashoffset: 0; }
	30% { stroke-dashoffset: 100; }
	70% { stroke-dashoffset: 100; }
	100% { stroke-dashoffset: 0; }
}
@keyframes spin1 {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.circle1 svg {
	stroke: hsla(0, 0%, 0%, 0.05);
	fill: transparent;
	stroke-width: 6;
	stroke-dasharray: 10 10 10 10 10 10 30;
	stroke-dasharray: 12.5;
	stroke-dasharray: 16.666;
	animation: spin1 50s linear infinite reverse;
}
.circle2 svg {
	display: none;
	stroke: hsla(0, 0%, 0%, 0.05);
	fill: transparent;
	stroke-width: 6;
	stroke-dasharray: 25 25 25 25;
	animation: spin1 30s linear infinite;
}
.circle3 svg {
	stroke: hsla(0, 0%, 0%, 0.1);
	fill: transparent;
	stroke-width: 0.5;
	stroke-dasharray: 1 1;
	animation: spin1 60s linear infinite;
}



/* PANEL */
/* ┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅ */
.A3D-PANEL {
    display: flex;
    flex-flow: column;
    place-content: flex-end;
	position: fixed;
	right: 0;
	top: 0;
	width: 90px;
	height: 100vh;
	padding: 64px 8px 0;
	background: hsla(0, 0%, 100%, 0.7);
	background: hsla(0, 0%, 100%, 1);
	box-shadow: -8px 0 16px hsla(0, 0%, 0%, 0.42);
}
.A3D-PANEL .A3D-button {
	margin-bottom: 40px;
	text-align: center;
}
.A3D-PANEL .A3D-button svg {
	height: 36px;
	cursor: pointer;
	opacity: 0.5;
}
.A3D-PANEL .A3D-button p {
	margin: 2px 0 0;
	font: 700 16px var(--fontB);
	opacity: 0.2;
	transition: 0.3s all;
}
.A3D-PANEL .A3D-button:hover p { opacity: 1; }


.scroll-indicator {
    position: absolute;
    top: 0;
    left: 50%;
    height: 105vh;
    max-height: 96%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    place-content: flex-end;
    gap: var(--spacing-xs);
    color: #94a3b8;
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}



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



h1 {
	font-size: 56px;
    font-weight: 900;
	font-family: var(--fontB);
}
h1 strong {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h2 {
	font-size: 44px;
    font-weight: 900;
	font-family: var(--fontB);
    background: var(--gradient-1);
    background: #444;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h3 {
	font-size: 28px;
    font-weight: 300;
    font-family: var(--fontA);
    color: #444;
    background: var(--colorA);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h4 {
	font-size: 28px;
    font-weight: 900;
	font-family: var(--fontB);
    color: #444;
}


#A-intro h2,
.Asection > h2 {
	margin-bottom: 64px;
    padding-left: 28px;
    border-left: 55px solid #5056ed21;
}



#A-hero {
	position: relative;
	width: 100%;
	padding: 165px 10% 140px;
	z-index: 8;
}
#A-hero .Col2 {
	flex: 0 0 auto;
	position: relative;
	width: 50%;
	height: 100%;
	margin-top: 165px;
    transform: scale(0.65) translateY(10vw) translateX(6vw);
}
#A-hero h1 { width: 680px; }
#A-hero p {
	font-size: 22px;
	color: var(--gray);
	line-height: 1.7;
}
#A-hero p strong { color: #333; }
.hero-bg {
    position: absolute;
    inset: 0;
    height: 130%;
    z-index: -1;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}
.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}
.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-accent);
    bottom: -10%;
    right: -5%;
    animation-delay: -7s;
}
.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    top: 50%;
    right: 10%;
    animation-delay: -14s;
}




.code-window {
	color: white;
	color: #8be9fd;
    background: hsl(220, 20%, 22%);
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.window-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    background: #141414;
    background: hsl(230, 15%, 19%);
    border-bottom: 1px solid #1f1f1f;
}
.window-dots {
    display: flex;
    gap: 0.5rem;
}
.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.window-dots span:nth-child(1) { background: #ff5f57; }
.window-dots span:nth-child(2) { background: #ffbd2e; }
.window-dots span:nth-child(3) { background: #28ca42; }
.window-title {
    margin-left: 1rem;
    color: #666666;
    font-size: 0.85rem;
}
.window-content {
	min-height: 310px;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}
.typing-code .comment { color: #6a737d; }
.typing-code .keyword { color: #ff79c6; }
.typing-code .function { color: #50fa7b; }
.typing-code .string { color: hsl(17, 67%, 64%); }

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    padding: 12px 20px;
    background: white;
    border-radius: 9999px;
    box-shadow: var(--shadow-xl);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--fontB);
    animation: float 3s ease-in-out infinite;
}
.floating-badge span { color: #0a0a0a; }
.floating-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--colorA);
    stroke-width: 2;
    fill: none;
}
.floating-badge--1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}
.floating-badge--2 {
    bottom: 30%;
    right: -5%;
    animation-delay: 1s;
}
.floating-badge--3 {
    top: 50%;
    left: -10%;
    animation-delay: 2s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


.A-gray-wave-1 {
	position: relative;
	margin: 4vw 0 -28vw;
}



#A-intro {
	position: relative;
	padding: 140px 10vw 40px 8vw;
	z-index: 9;
}
#A-intro .Acolumns {
	gap: 8vw;
}
#A-intro .Col2 { position: relative; }
#A-intro .Col1 {
	flex: 0 0 auto;
	position: relative;
	width: 40%;
}
#A-intro h2 { margin-top: 0; }
#A-intro h3 {
	position: relative;
	margin-top: 24px;
}



.A-home-B {
	position: relative;
	z-index: 9;
}
.A-home-B > .Acolumns { gap: 32px; margin-top: 64px; }
.A-home-B .Acolumns .Acolumns {
	flex-flow: column;
	gap: 0;
	margin-top: 24px;
}
.A-home-B > .Acolumns > .Acolumn {
	padding: 24px;
	background: white;
	box-shadow: var(--shadow-md);
	border-radius: 24px;
}
.A-home-B .Acolumns img {
	width: 48px;
	height: 48px;
}
.A-home-B .Acolumns h3 {
	margin-top: 8px;
	margin-bottom: 0;
}
.A-home-B .Acolumns .Acolumns .Col1 {
	flex: 0 0 auto;
	min-width: 40px;
}
.A-home-B .Acolumns .Acolumns .Col1 p {
	margin: 0;
	font-size: 32px;
	font-weight: 900;
	font-family: var(--fontB);
}
.A-home-B .Acolumns .Acolumns .Col2 p {
	padding-bottom: 4px;
	margin: 0;
	line-height: 1.2;
	font-family: var(--fontB);
	font-weight: 900;
	color: var(--colorA);
	font-weight: 400;
	font-family: var(--fontA);
	font-style: italic;
	color: #AAA;
}
.A-home-B .Acolumns .Col1 .Col1 p { color: rgb(211, 29, 84); }
.A-home-B .Acolumns .Col2 .Col1 p { color: rgb(31, 190, 151); }
.A-home-B .Acolumns .Col3 .Col1 p {
	color: rgb(31, 100, 190);
	font-size: 48px;
	margin: -16px 0 -12px;
}


.A-services {
	position: relative;
	z-index: 9;
}
.A-services h2 {
	margin-bottom: 64px;
}
.A-services h3 {
	margin: 0;
	font-family: var(--fontB);
	font-weight: 900;
    color: var(--colorA);
}

.A-services .Acolumns {
	gap: 32px;
	margin: 0 84px;
	margin-bottom: 24px;
}
.A-services .Acolumn {
	padding: 24px;
	background: white;
	box-shadow: var(--shadow-md);
	border-radius: 24px;
}
.A-services .Col2 {
	display: flex;
	flex-flow: column;
	justify-content: center;
	padding: 48px 64px;
}
.A-services .Col1 {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	width: 30%;
	padding: 0;
}
.A-services li { margin: 0 0 8px; }



.A-overflow { overflow: hidden; }
.home .A-overflow { margin-top: -165px; }


.A-home-C {
	position: relative;
	padding: 100px 20% 100px 10%;
	z-index: 9;
	overflow: hidden;
}

.A-home-C .A-columns-B { padding: 32px 0; }
.A-columns-B {
	display: flex;
	flex-flow: row wrap;
	gap: 48px;
}
.A-columns-B .Acolumns {
	width: calc(50% - 24px);
	gap: 32px;
	position: relative;
	margin-bottom: 64px;
}
.A-columns-B .Acolumns:before {
	content: "";
	position: absolute;
	top: 70px;
	left: 30px;
	width: 3px;
	height: calc(100% - 74px);
	background: var(--gradient-1);
	opacity: 0.3;
}
.A-columns-B h3 {
	margin: 10px 0 16px;
	color: #444;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
	background: transparent;
}
.A-columns-B p {
	margin: 0;
}
.A-columns-B .Col1 {
	flex: 0 0 auto;
	width: 90px;
}
.A-columns-B .A-number p {
	font: 900 28px var(--fontB);
	color: white;
}
.A-columns-B .A-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: var(--gradient-1);
	color: white;
	border-radius: 200px;
}
.A-columns-B .A-number picture { line-height: 0; }
.A-columns-B .A-number img {
	width: 40px;
	height: 40px;
}




.A-home-portfolio {
	position: relative;
	padding: 100px 10% 100px 10%;
	background: #434341;
	z-index: 9;
}
.A-home-portfolio h2 {
	-webkit-text-fill-color: white;
	color: white;
	border-left: 55px solid #ffffff21;
}
.A-home-portfolio .Acarousel {
	margin: 96px -64px 0;
}
.Acarousel .Aitems {
}
.Acarousel .Aitems .Acolumn {
	position: relative;
	cursor: pointer;
}
.Acarousel .Aitems .Acolumn picture {
	height: 100%;
	background: hsl(0, 0%, 16%);
	overflow: hidden;
}
.Acarousel .Aitems .Acolumn img {
	border-bottom: 32px solid hsl(0, 0%, 16%);
	transition: 0.3s transform;
}
.Acarousel .Aitems .Acolumn p {
	position: absolute;
	bottom: 6px;
	left: 24px;
	margin: 0;
	font: 700 14px var(--fontB);
	color: white;
	opacity: 0.7;
}
.Acarousel .Aitems .Acolumn:hover picture { background: black; }
.Acarousel .Aitems .Acolumn:hover img {
	border-color: black;
	transform: translateY(-6px);
}
.Acarousel .Aitems .Acolumn:hover p { opacity: 1; }


.A-plugins {
	align-items: center;
	text-align: center;
	padding: 0 10%;
}
.A-plugins img {
	max-width: 260px;
	max-height: 150px;
	object-fit: contain;
	filter: drop-shadow(0 8px 16px hsla(0, 0%, 0%, 0.3));
}



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

.A-page-content h1 {
	text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.A-subtitle {
	font-size: 22px;
	margin-top: -16px;
	margin-bottom: 48px;
	color: var(--gray);
}

.A-page-content .A-subtitle {
	padding: 0 15%;
	text-align: center;
}
.A-page-content h1 { text-align: center; }
.A-page-content h2 {
    width: 100%;
	margin: 24px 0 48px;
	padding: 0;
	text-align: center;
	border: 0;
}

.A-wrap { flex-flow: row wrap; }
.A-columns-C.A-wrap .Acolumn {
	flex: 1 1 calc(33.333% - 32px);
	min-width: 280px;
	margin-bottom: 48px;
}

.A-waves-02 {
	margin: -5vw -10vw -12vw;
	z-index: -1;
}
.A-waves-02 .A-blue-wave {
	margin-bottom: -5vw;
}
.A-waves-02 .A-blue-wave-2 {
	margin-bottom: -25vw;
    transform: scale(1, 0.85);
}
.A-waves-02 .A-curve-white {
    margin-top: -200px;
    -webkit-clip-path: url(#blue-mask-2);
    clip-path: url(#blue-mask-2);
}
.A-black-wave-3 h2 {
	padding: 150px 15%;
    text-align: center;
    -webkit-text-fill-color: #f2f2f2;
    margin: 0;
    font-size: 40px;
	opacity: 0.5;
}
.A-black-wave-3 .wp-block-buttons {
	padding: 140px 15%;
	justify-content: center;
}
.A-black-wave-3 .wp-block-button a::before { content: none; }
.A-black-wave-3 .wp-block-button a {
	background: var(--colorA);
	font-weight: 700;
	box-shadow: var(--shadow-lg);
}
.A-black-wave-3 .Acolumns {
	padding: 140px 15%;
	text-align: center;
}
.A-black-wave-3 h3 {
	margin: 0;
	color: white;
	font: 900 36px var(--fontB);
}
.A-black-wave-3 p {
	margin: 0;
	color: hsla(0, 0%, 100%, 0.85);
}

.A-columns-C {
	gap: 24px;
	margin-bottom: 24px;
}
.A-columns-C > .Acolumn {
	padding: 24px;
	background: white;
	box-shadow: var(--shadow-md);
	border-radius: 24px;
}
.A-columns-C ul {
	padding: 0;
	list-style: none;
}
.A-columns-C li {
	margin: 8px 0;
	padding: 12px 0 6px;
	border-top: 1px solid #eee;
}

.A-solid {
	margin: 140px -10vw;
	background: var(--gradient-1);
}
.A-solid h2 {
	margin-bottom: 48px;
	-webkit-text-fill-color: white;
	border: 0;
	padding: 0;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.A-solid h3 {
	color: white;
}

.A-solid p {
	color: hsla(0, 0%, 100%, 0.7);
}
.A-solid p strong {
	color: hsla(0, 0%, 100%, 1);
}



.A-service-B {
	padding: 140px 10%;
}
.A-solid-B {
	margin-top: 0;
	margin-bottom: -64px;
	padding-bottom: 64px;
	text-align: center;
}
.A-solid-B h2 { padding: 0 20%; }
.A-solid-B .wp-block-buttons { justify-content: center; }
.A-solid-B .wp-block-button a::before { content: none; }
.A-solid-B .wp-block-button a { 
	background: white;
	color: var(--colorA);
	font-weight: 700;
}
.A-solid-B2 { margin-bottom: 0; }

.A-waves-02b {
	margin: -5vw -10vw -20vw;
}
.A-waves-02b .A-blue-wave {
	transform: scale(1, 0.9);
}
.A-waves-02b .A-black-wave-3 {
	transform: scale(1, 0.9);
}
.A-waves-02b .A-curve-white { margin-top: -300px; }



.A-page-content .A-subheading { margin-top: -40px; }


.A-columns-Cb { margin-top: 48px; }
.A-columns-Cb h3 {
	font: 900 28px var(--fontB);
}
.A-columns-Cb.A-wrap .Acolumn { margin-bottom: 0; }

.A-solid-C {
	margin: 64px -10vw;
    background: var(--gradient-1);
    background: #EEE;
}
.A-solid-C .Acarousel .Aitems {
    align-items: center;
	margin: 12px 0 24px;
}
.A-solid-C .Acarousel .Aitems .Acolumn { padding: 0 24px; }
.A-solid-C .Acarousel .Aitems .Acolumn picture {
	height: auto;
	background: transparent;
	overflow: visible;
}
.A-solid-C .Acarousel .Aitems .Acolumn img {
    max-height: 100px;
	border: 0;
	filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}





.A-project-content .Apic::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.A-project-content .Apic::-webkit-scrollbar-track {
    background: hsl(0, 0%, 80%);
	opacity: 0;
}
.A-project-content .Apic::-webkit-scrollbar-thumb {
    background: var(--colorA);
    background: hsl(0, 0%, 20%);
    border: 2px solid hsl(0, 0%, 80%);
	border-right: 0;
}






.page-template-page-portfolio,
.single-projects {
	background: url(img/graphy-50b.png);
	background-position: 86px 92px;
}
.page-template-page-portfolio .A-footer,
.single-projects .A-footer { background: transparent; }
header.project-header { padding: 32px 7vw; }
header.project-header .A-flex {
    flex-flow: row;
    align-items: center;
    place-content: flex-start;
}
header.project-header .A-logo img { width: 120px; }
.project-header nav.A-breadcrumb ul { padding-left: 7vw; }

.page-template-page-portfolio .A-breadcrumb {
	display: none;
}

.A-portfolio { padding: 0 calc(7vw - 16px); }
.A-portfolio .A-page-title {
	position: absolute;
	margin: 0;
	right: 7vw;
	top: 150px;
	font: 700 40px var(--fontB);
}

.A-portfolio .Aitems {
    place-content: center;
	padding: 16px 8px;
}
.A-portfolio .Aitem {
	padding: 0 8px;
	transition: 0.4s all;
}
.A-portfolio .Aitem:hover { transform: scale(1.05); }
.A-portfolio .Aposts[data-type="grid"] .Aitem {
    margin-bottom: 96px;
}
.A-portfolio .Aitem .image {
	height: 250px;
}
.A-portfolio .Aitem h3 {
	width: 100%;
	margin: 0;
	padding: 4px 0;
	color: hsla(0, 0%, 0%, 0.5);
	font: 700 16px var(--fontB);
}


.A-project-content {
	padding: 0 7vw 96px;
}

.project-top { min-height: 440px; margin-top: 64px; }
.project-top h1 {
	margin: 12px 0;
	font-size: 40px;
	font-family: var(--fontB);
}
.project-top a {
	display: block;
	margin-bottom: 16px;
	font-size: 24px;
	font-weight: 700;
	font-family: var(--fontB);
}
.project-top p {
	margin: 0 0 4px;
    font-size: 14px;
    color: hsl(0deg 0% 0% / 40%);
}
.project-top .Col1 {
	flex: 0 0 auto;
	position: relative;
	width: 50%;
	padding-right: 48px;
}
.A-project-content .Apic {
	width: 100%;
	height: auto;
	box-shadow: 12px 12px 40px rgba(0, 0, 0, 0.35);
	line-height: 0;
	max-height: 700px;
	overflow-y: auto;
	cursor: zoom-in;
}
.project-top .logo {
	max-width: 50%;
	margin: 32px 0;
	box-shadow: unset;
	filter: drop-shadow(4px 4px 8px hsla(0, 0%, 0%, 0.4));
}
.project-top .logo img {
    width: 100%;
    width: auto;
	height: auto;
    max-width: 100%;
	max-height: 220px;
	object-position: top left;
	object-fit: scale-down;
}



.project-screens { margin-top: 200px; }
.project-screens .Col1 {
	flex: 0 0 auto;
	width: 50%;
	margin-top: -400px;
	padding-right: 10vw;
}
.project-screens .Col2 { padding-left: 10vw; }



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


.ACB-gallery-show .close { position: fixed; }
.ACB-gallery-show .next,
.ACB-gallery-show .prev {
	position: fixed;
	padding: 0;
	width: 10%;
}

.ACB-gallery-show { overflow-y: auto; }




.A-projects { margin: 0 -108px; }
.A-portfolio-page .Aitem,
.A-projects .Aitem { display: block; }
.A-portfolio-page .Aitem .image,
.A-projects .Aitem .image {
	height: 100%;
	background: hsl(0, 0%, 16%);
}
.A-portfolio-page .Aitem .image {
	background: hsl(0, 0%, 90%);
}
.A-portfolio-page .Aitem img,
.A-projects .Aitem img {
	width: 100%;
	height: auto;
	object-fit: contain;
	border-bottom: 24px solid hsl(0, 0%, 16%);
}
.A-portfolio-page .Aitem img {
	border-bottom: 24px solid hsl(0, 0%, 90%);
}
.A-portfolio-page .Aitem h3,
.A-projects .Aitem h3 {
    position: absolute;
    bottom: 6px;
    left: 24px;
    margin: 0;
    font: 700 14px var(--fontB);
    -webkit-text-fill-color: white;
    opacity: 0.7;
}
.A-portfolio-page .Aitem h3 {
	-webkit-text-fill-color: black;
}



































.A-gray-wave.A-gray-wave-3 {
	position: absolute;
    top: 0;
    right: -1250px;
    width: 180vh;
    height: 30vh;
	transform: rotate(100deg) rotateX(180deg);
    transform-origin: top left;
    -webkit-clip-path: url(#blue-mask-2);
    clip-path: url(#blue-mask-2);
}
.A-blue-wave.A-blue-wave-3 {
	position: absolute;
    top: 0;
    right: -1150px;
    width: 180vh;
    height: 30vh;
	transform: rotate(100deg) rotateX(180deg);
    transform-origin: top left;
}










.A-page-low-01, 
.A-blue-black { position: relative; background: var(--colorC); }
.A-blue-black-3 { position: relative; background: var(--colorD); }
.A-blue-wave {
	padding: 0 !important;
	min-height: 500px;
    -webkit-clip-path: url(#blue-mask-1);
    clip-path: url(#blue-mask-1);
    background: #7da7d9;
    background: var(--gradient-1);
    background: var(--colorA);
	opacity: 0.5;
}
.A-black-wave {
	position: relative;
	padding: 0 !important;
	margin-top: -450px;
	min-height: 1000px;
    -webkit-clip-path: url(#black-mask-1);
    clip-path: url(#black-mask-1);
	z-index: 9;
}
.A-black-wave .ACB-inner { padding: 260px 10% 48px; } 
.A-gray-wave {
	position: relative;
	padding: 0 !important;
	min-height: 500px;
    -webkit-clip-path: url(#black-mask-1);
    clip-path: url(#black-mask-1);
	background: hsl(0, 0%, 95%);
}
.A-blue-wave-2 {
	padding: 0 !important;
	min-height: 500px;
    -webkit-clip-path: url(#blue-mask-2);
    clip-path: url(#blue-mask-2);
    background: hsl(0, 0%, 95%);
	transform: rotateY(180deg);
	backdrop-filter: blur(14px) saturate(120%);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}
.A-gray-wave .ACB-inner,
.A-blue-wave .ACB-inner,
.A-blue-wave-2 .ACB-inner { padding: 48px 10%; } 

.A-black-wave-2 {
	position: relative;
	padding: 0 !important;
	margin-top: -350px;
	min-height: 500px;
    -webkit-clip-path: url(#black-mask-1);
    clip-path: url(#black-mask-1);
	z-index: 9;
}

.A-black-wave-3 {
	position: relative;
	padding: 0 !important;
	margin-top: -400px;
	min-height: 400px;
    -webkit-clip-path: url(#black-mask-3);
    clip-path: url(#black-mask-3);
	z-index: 9;
    background: #434341;
}



#cover-mask-1 path { animation: cover-mask-1 40s infinite ease; }
#home-mask-1 path {	animation: home-mask-1 30s infinite ease; }
#blue-mask-1 path {	animation: blue-mask-1 30s infinite ease; }
#blue-mask-2 path {	animation: blue-mask-1 55s infinite ease; }
#black-mask-1 path { animation: black-mask-1 30s infinite ease; }
#bottom-mask-1 path { animation: bottom-mask-1 30s infinite ease; }
#black-mask-2 path { animation: black-mask-2 30s infinite ease; }
#bottom-mask-2 path { animation: bottom-mask-2 30s infinite ease; }
/* 	--------------
	ANIMATION
 	-------------- */
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(180deg); }
}
@keyframes cover-mask-1 {
	0% { d: path('M1,0  l-1,0  l0,0.8  c0.2,-0.05 0.35,0.2 0.5,0.2  s0.3,-0.4  0.5,-0.3'); }
   25% { d: path('M1,0  l-1,0  l0,0.8  c0.2,-0.05 0.35,0.4 0.6,0.09 s0.3,-0.4  0.4,-0.2'); }
   50% { d: path('M1,0  l-1,0  l0,0.8  c0.2,-0.05 0.35,0.2 0.5,0.2  s0.3,-0.4  0.5,-0.3'); }
   75% { d: path('M1,0  l-1,0  l0,0.75 c0.4,-0.15 0.35,0.1 0.5,0.2  s0.3,-0.4  0.5,-0.3'); }
  100% { d: path('M1,0  l-1,0  l0,0.8  c0.2,-0.05 0.35,0.2 0.5,0.2  s0.3,-0.4  0.5,-0.3'); }
}
@keyframes home-mask-1 {
	0% { d: path('M0,1  L0,0.3  c0.1,-0.1 0.2,-0.1 0.35,0  s0.6,0.35 0.7,-0.2  l 0,0.75  c-0.1,0.15 -0.3,0.1 -0.45,0  s -0.4,-0.2 -0.65,0.2'); }
	50% { d: path('M0,1  L0,0.3  c0.1,-0.1 0.2,-0.2 0.45,0  s0.6,0.25 0.55,-0.3  l 0,0.75  c-0.1,0.15 -0.3,0.3 -0.45,0  s -0.4,-0.2 -0.55,0.2'); }
	100% { d: path('M0,1  L0,0.3  c0.1,-0.1 0.2,-0.1 0.35,0  s0.6,0.25 0.7,-0.2  l 0,0.75  c-0.1,0.15 -0.3,0.1 -0.45,0  s -0.4,-0.2 -0.65,0.2'); }
}
@keyframes blue-mask-1 {
	  0% { d: path('M0,0 L0,1 L1,1 L1,0  C 0.7,0 0.55,0.4 0.35,0.4  S 0.1,0.1 0,0.1'); }
	 50% { d: path('M 0,0 L 0,1 L 1,1 L 1,0.0 C 0.9,0.4  0.75,0.55 0.6,0.5 S 0.4,0 0,0'); }
	100% { d: path('M0,0 L0,1 L1,1 L1,0  C 0.7,0 0.55,0.4 0.35,0.4  S 0.1,0.1 0,0.1'); }
}
@keyframes black-mask-1 {
	  0% { d: path('M 0,0 L 0,0.7 C 0.1,0.8  0.2,1  0.35,1 S 0.8,0.7 1,0.9 L 1,0.1 C 0.9,0.25  0.7,0.3  0.5,0.25 S 0.2,0.05 0,0'); }
	 50% { d: path('M 0,0 L 0,1 C 0.1,0.8  0.3,0.7  0.4,0.75 S 0.7,1.1 1,0.8 L 1,0.25 C 0.9,0.1  0.8,0.0  0.6,0 S 0.3,0.3 0,0.1'); }
	 100% { d: path('M 0,0 L 0,0.7 C 0.1,0.8  0.2,1  0.35,1 S 0.8,0.7 1,0.9 L 1,0.1 C 0.9,0.25  0.7,0.3  0.5,0.25 S 0.2,0.05 0,0'); }
}
@keyframes blue-mask-2 {
	  0% { d: path('M0,0 L0,1 L1,1 L1,0  C 0.7,0 0.55,0.4 0.35,0.4  S 0.1,0.1 0,0.1'); }
	 50% { d: path('M 0,0 L 0,1 L 1,1 L 1,0.0 C 0.9,0.4  0.75,0.55 0.6,0.5 S 0.4,0 0,0'); }
	100% { d: path('M0,0 L0,1 L1,1 L1,0  C 0.7,0 0.55,0.4 0.35,0.4  S 0.1,0.1 0,0.1'); }
}
@keyframes bottom-mask-2X {
	  0% { d: path('M 0,0 L 0,0.7 C 0.1,0.8  0.2,1  0.35,1 S 0.8,0.7 1,0.9 L 1,0.1 C 0.9,0.25  0.7,0.3  0.5,0.25 S 0.2,0.05 0,0'); }
	 50% { d: path('M 0,0 L 0,1 C 0.1,0.8  0.3,0.7  0.4,0.75 S 0.7,1.1 1,0.8 L 1,0.25 C 0.9,0.1  0.8,0.0  0.6,0 S 0.3,0.3 0,0.1'); }
	 100% { d: path('M 0,0 L 0,0.7 C 0.1,0.8  0.2,1  0.35,1 S 0.8,0.7 1,0.9 L 1,0.1 C 0.9,0.25  0.7,0.3  0.5,0.25 S 0.2,0.05 0,0'); }
}


#curve-1 path { animation: curve-1 20s infinite alternate-reverse ease-in-out; }
#curve-2 path { animation: curve-2 22s infinite alternate ease-in-out; }
#curve-3 path { animation: curve-3 15s infinite alternate ease-in-out; }
@keyframes curve-1 {
	  	0% { d: path('M0,0.4   C0.3,1.2 0.45,1 0.6,0.5  S0.9,0.5 1,0.7  L1,1 L0,1 L0,0'); }
	  100% { d: path('M0,0.8   C0.3,0.3 0.45,1 0.65,1    S0.9,0.5 1,0    L1,1 L0,1 L0,0'); }
}
@keyframes curve-2 {
	    0% { d: path('M0,0 L0,1 L1,1 L1,0  C 0.7,0 0.55,0.4 0.35,0.4    S0.1,0.1 0,0.1'); }
	  100% { d: path('M0,0 L0,1 L1,1 L1,0  C 0.9,0.4 0.75,0.55 0.6,0.5  S0.4,0 0,0'); }
}
@keyframes curve-3 {
	    0% { d: path('M0,0.8  C 0.3,0.0 0.45,0.9 0.6,1       S0.9,0.7 1,0.6   L1,1 L0,1 L0,0'); }
	  100% { d: path('M0,0.4  C 0.1,1.5 0.45,0.3 0.65,0.2  S0.95,0.4 1,0.8  L1,1 L0,1 L0,0'); }
}



/* 	--------------
	CURVES
 	-------------- */
.A-curve-blue {
	position: relative;
	width: 100%;
	min-height: 301px;
	padding: 0 !important;
	margin-top: 0px;
	background: var(--colorC);
    -webkit-clip-path: url(#curve-2);
    clip-path: url(#curve-2);
	z-index: 9;
}
.A-curve-black {
	position: relative;
	width: 100%;
	min-height: 301px;
	padding: 0 !important;
	margin-top: -350px;
	background: var(--colorB);
    -webkit-clip-path: url(#curve-3);
    clip-path: url(#curve-3);
	z-index: 9;
}
.A-curve-white {
	position: relative;
	width: 100%;
	min-height: 251px;
	margin-top: -250px;
	background: white;
    -webkit-clip-path: url(#curve-1);
    clip-path: url(#curve-1);
	z-index: 9;
}
.A-curve-blue .ACB-inner,
.A-curve-black .ACB-inner { padding: 48px 10%; } 
.A-curve-white-fill {
	position: relative;
	height: 150px;
	margin-top: -1px;
	margin-bottom: -00px;
	background: white;
	z-index: 9;
}
.A-curve-white-2 { margin-top: -400px; }





.A-waves-01 {
	margin-top: -6vw;
	margin-bottom: -10vw;
}
.A-waves-01 .A-blue-wave-2 {
	margin-bottom: -20vw;
    transform: scale(1, 0.85);
}
























.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 { position: relative; z-index: 9; }
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ FOOTER */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
.A-footer {
	display: flex;
    padding: 64px 0 0;
    background: #f8f8f8;
}
.A-footer-col {
    width: 25%;
    padding: 16px;
    float: left;
}
.A-footer-col .A-logo {
	width: 100%;
	text-align: center;
}
.A-footer-col .A-logo img {
    width: 100%;
	max-width: 300px;
	max-height: 120px;
    height: auto;
    padding: 0 32px;
	object-fit: contain;
    object-position: left;
}
.A-footer-col h3 {
	margin: 0;
	font: 700 18px var(--fontA);
	color: var(--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: black;
}
.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;
    padding: 32px;
	text-align: center;
}
footer .A-social a {
	margin: 0 16px 0 0;
	cursor: pointer;
}
footer .A-social svg { 
	height: 24px;
	fill: var(--colorA);
	transition: 0.3s all;
}
footer .A-social a:hover svg { fill: var(--colorB); transform: scale(1.2); }



.A-footer-created {
	position: relative;
    width: 100%;
    text-align: center;
    padding: 8px;
    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 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;
}





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


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

	#A-hero { padding: 165px 10% 60px; }
	.A-waves-01 { margin-top: -9vw; }

	.A-blue-wave.A-blue-wave-3 { width: 180vh; right: -1300px; }
	.A-gray-wave.A-gray-wave-3 { width: 180vh; right: -1400px; }

}




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1280px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
	#A-intro h2,
	.Asection > h2 { font-size: 40px; border-left: 50px solid #5056ed21; padding-left: 22px; }

	#A-hero { padding: 165px 10% 0px; }
	#A-hero .Col2 { transform: scale(0.65) translateY(200px) translateX(6vw); }
	#A-hero h1 { width: 120%; font-size: 52px; }
	#A-hero p { width: 110%; }
	header nav ul li { margin: 0px 0px 0px 40px; }
	header nav ul li a { font-size: 20px; }

	.A-gray-wave-1 {
		min-height: 400px;
		margin: 0vw 0 -400px;
	}

	.A-blue-wave,
	.A-blue-wave-2 {
		min-height: 400px;
	}
	.A-curve-white-2 { margin-top: -300px; min-height: 155px; }
	.A-black-wave-3 {
		margin-top: -320px;
		min-height: 350px;
	}
	.A-waves-01 .A-blue-wave-2 { margin-bottom: -24vw; }

	.A-services .Acolumns { margin: 0 0 24px; }


	.A-home-C { padding: 100px 10%; }
	.A-blue-wave.A-blue-wave-3,
	.A-gray-wave.A-gray-wave-3 { display: none; }

	.A-plugins { padding: 0; }

}






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

	header .A-flex { padding: 8px 24px 8px 12px; }
	header.scrolled .A-flex { padding: 6px 24px 6px 8px; }
	header nav .menu-toggle {
        display: inline-block;
        position: relative;
        top: 4px;
	}
	header nav ul { display: none; }
	.menu-menu-1-container {
		display: flex;
        justify-content: flex-end;
		position: absolute;
		width: 73vw;
		right: 0;
		top: 40px;
		padding: 0 32px;
		background: white;
		border-radius: 100px;
		box-shadow: var(--shadow-md);
	}
	header.scrolled .menu-menu-1-container { top: 30px; }
	


	#A-hero .Acolumns { flex-flow: column-reverse; }
	#A-hero h1 { width: 100%; font-size: 52px; }
	#A-hero p { width: 100%; }
	#A-hero .Col2 {
		width: 100%;
		height: 60vw;
		margin: -120px 0 -60px;
		transform: scale(0.7);
	}
	
	#A-intro .Acolumns { flex-flow: column; padding: 0 10vw; }
	#A-intro .Col1 { width: 100%; }

	.A-home-B { padding: 100px 10% 0px 10%; }
	.A-home-B > .Acolumns {
		flex-flow: row wrap;
		gap: 24px;
	}
	.A-home-B > .Acolumns > .Acolumn {
		width: calc(50% - 12px);
	}



	.A-blue-wave,
	.A-blue-wave-2 {
		min-height: 300px;
	}
	.A-black-wave-3 {
		margin-top: -220px;
        min-height: 300px;
    }
	.A-curve-white-2 { margin-top: -200px; min-height: 105px; }
	.A-waves-01 .A-blue-wave-2 { margin-bottom: -22vw; }


	.A-services .Col2 { padding: 48px; }
	
	.A-columns-B .Acolumns { width: 100%; margin-bottom: 48px; }

	.A-plugins img {
		max-width: 200px;
		max-height: 100px;
	}
}





/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 800px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
	#A-intro h2,
	.Asection > h2 { font-size: 36px; border-left: 45px solid #5056ed21; padding-left: 16px; }

    header nav ul { margin: 12px 0; text-align: right; }
	header nav ul li { display: block; margin: 24px 0; }
	header nav ul.sub-menu {
		display: block;
		position: relative;
    	min-width: 45vw;
		margin: 0;
    	padding: 0 16px 12px;
		box-shadow: unset;
		text-align: right;
	}
	header nav ul.sub-menu li { margin: 0px 0; }
	.menu-menu-1-container {
		width: auto;
		padding: 0 16px;
		border-radius: 12px;
	}


	#A-hero h1 { font-size: 44px; }
	#A-hero .Col2 {
		height: 60vw;
		margin: -80px 0 40px;
		transform: scale(1);
	}


	#A-intro .Acolumns { padding: 0; }
	.A-home-B { padding: 80px 10% 0px 10%; }
	.A-home-B > .Acolumns > .Acolumn {
		width: 100%;
	}


	.A-blue-wave,
	.A-blue-wave-2 {
		min-height: 250px;
	}
	.A-black-wave-3 {
		margin-top: -200px;
        min-height: 300px;
    }
	.A-curve-white-2 { margin-top: -200px; min-height: 105px; }
	.A-waves-01 .A-blue-wave-2 { margin-bottom: -22vw; }


	.A-services .Acolumns { margin: 32px 0; flex-flow: column; gap: 0; }
	.A-services .Col1,
	.A-services .Col2 { width: 100%; }
	.A-services .Col1 { justify-content: center; box-shadow: unset; }


	.project-screens,
	.project-top { flex-flow: column; }
	.project-top .Col1 { width: 100%; }
	.project-top .Col2 { margin-top: 48px; }
	.project-screens { margin-top: 64px; }
	.project-screens .Col1 {
		width: 100%;
		margin-top: 0px;
		padding: 0 10%;
	}
	.project-screens .Col2 {
		margin-top: 64px;
		padding: 0 10%;
	}
	.A-project-content .Apic {
		overflow-y: hidden;
	}


	.A-plugins { flex-flow: column; }
	.A-plugins .Acolumn { 
        width: 100%;
		margin-bottom: 40px;
	}
	.A-plugins img {
		max-width: 250px;
		max-height: 150px;
	}

}





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

	header { top: -30px; }

	header nav ul.sub-menu { min-width: 60vw; }
	
	#A-hero h1 { font-size: 38px; }
	#A-hero .Col2 {
		height: 70vw;
		margin: -50px 0 40px;
		transform: scale(1.2);
	}
	#A-hero p { font-size: 18px; }
	#A-hero .wp-block-buttons { gap: 20px; }
	#A-intro h2 { margin-top: 24px; }


	.A-gray-wave-1 {
		min-height: 300px;
		margin: 0vw 0 -300px;
	}




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

	
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 480px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
	#A-intro h2,
	.Asection > h2 { font-size: 34px; border-left: 36px solid #5056ed21; padding-left: 12px; }


	header nav ul.sub-menu { min-width: 80vw; }
	header .A-logo img { width: 180px; }
	.menu-menu-1-container { right: -10vw; }

	.floating-badge { display: none; }
	.window-content { padding: 16px 8px; font-size: 12px; }
	

	.A-blue-wave,
	.A-blue-wave-2 {
		min-height: 200px;
	}
	.A-black-wave-3 {
		margin-top: -160px;
        min-height: 200px;
    }
	.A-curve-white-2 { margin-top: -170px; min-height: 80px; }
	.A-waves-01 .A-blue-wave-2 { margin-bottom: -35vw; }
	.A-curve-white-fill { height: 100px; }

	.A-services { padding: 0 5% 48px; }
    .A-services .Col2 { padding: 32px; }

	
	.A-columns-B .Acolumns { flex-flow: column; gap: 8px; }
	.A-columns-B .Acolumns:before { content: unset; }


}



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


}












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