/* @override 
	https://aionisys.test/assets/css/global.css */

/* -----------------------------------------------------------

	Project:		Ainonisys
	Version:		1.0
	Created:		April 3, 2026
	Modified:		April 6, 2026

		[Table of contents]
		1. Reset
		2. Web fonts
		3. Custom Properties
		4. Typography
		5. Utility styles
		6. Structure & design
		7. Animations

----------------------------------------------------------- */



/* -----------------------------------------------------------

	RESET

----------------------------------------------------------- */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, menu, time, mark, audio,
video										{ margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; }

img, picture, video, canvas, svg			{ display: block; max-width: 100%; height: auto; }

article, aside, figure, footer, header, hgroup, nav, 
section 									{ display: block; }

audio, canvas, video 						{ display: inline-block; }

blockquote, q 								{ quotes: none; }

blockquote:before, blockquote:after, q:before, 
q:after 									{ content: ''; content: none; }

a 											{ margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent; }
ins 										{ background-color: #ff9; color: #000; text-decoration: none; }
mark 										{ background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }
del 										{ text-decoration: line-through; }
abbr[title], 
dfn[title] 									{ border-bottom: 1px dotted #000; cursor: help; }

/* Remove built-in form typography styles */
input, button, 
textarea, select 							{ font: inherit; }

/* tables still need cellspacing="0" in the markup */
table 										{ border-collapse: collapse; border-spacing: 0; }
hr 											{ display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
input, select 								{ vertical-align: middle; }

/* Set html font-size to 10px so: 1rem = 10px */
html										{ font-size: 62.5%; }

/* Set basic typography settings for body */
body										{ -webkit-font-smoothing: antialiased; font-smoothing: antialiased; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-size-adjust: 100%; font-feature-settings: "kern"; -webkit-font-feature-settings: "kern"; -moz-font-feature-settings: "kern"; -moz-font-feature-settings: "kern=1"; scroll-behavior: smooth; }



/* -----------------------------------------------------------

	WEB FONTS

----------------------------------------------------------- */

@font-face {
	font-family: "areanormal-regular";
	font-display: swap;
	src: url("../fonts/areanormal-regular.woff2") format("woff2"), /* Super Modern Browsers */
		url("../fonts/areanormal-regular.woff") format("woff"), /* Pretty Modern Browsers */
		url("../fonts/webfont.ttf")  format("truetype"); /* Safari, Android, iOS */
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "areanormal-bold";
	font-display: swap;
	src: url("../fonts/areanormal-bold.woff2") format("woff2"), /* Super Modern Browsers */
		url("../fonts/areanormal-bold.woff") format("woff"), /* Pretty Modern Browsers */
		url("../fonts/webfont.ttf")  format("truetype"); /* Safari, Android, iOS */
	font-weight: normal;
	font-style: normal;
}





/* -----------------------------------------------------------

	CUSTOM PROPERTIES

----------------------------------------------------------- */

:root	{
	/* Colors */
	--c-main: #4B4A4A;
	--c-secondary: #797979;
	--c-heading: #8C8C8C;
	--c-highlight: ;
	--c-background: ;

	/* Typography */
	--fs-base: 160%; /* Set HTML font-size where 160% = 16px */
	--lh-base: 1.5; /* Set base line-height for body text */
	
	--ff-body: "areanormal-regular", Helvetica, Arial, sans-serif; /* Set font-family for body text */
	--ff-headers: "areanormal-regular", Helvetica, Arial, sans-serif; /* Set font-family for headers */
	
	/* Font sizes */
	--fs-tiny: ;
	--fs-small: ;
	--fs-heading-1: 36px;
	--fs-heading-hero: 95px;
	--fs-l: ;
	--fs-xl: ;
	--fs-xxl: ;
	--fs-xxxl: ;

	/* Global padding */
	--gp-sides: 5rem;
	--gp-top: ;
	--gp-btm: ;
}



/* -----------------------------------------------------------

	TYPOGRAPHY

----------------------------------------------------------- */

body										{ font-size: var(--fs-base); line-height: var(--lh-base); font-family: var(--ff-body); color: var(--c-main); background-color: var(--c-background); }

/* Set text selection color */
/*::selection 								{  }*/ /* WebKit/Blink Browsers */
/*::-moz-selection 							{  }*/ /* Gecko Browsers */



/* HEADINGS
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6							{ font-weight: normal; color: var(--c-main); line-height: 1; font-family: var(--ff-headers); text-rendering: optimizeLegibility; overflow-wrap: break-word; hyphens: auto; text-wrap: balance; }

h1											{ font-size: var(--fs-heading-hero); color: var(--c-heading); }



/* TEXT ELEMENTS
-------------------------------------------------------------- */

p											{ margin: 0 0 1.5em; overflow-wrap: break-word; hyphens: auto; }

a:hover, a:active 							{ outline: none; }
a, a:active, a:visited 						{ text-decoration: none; }
a:hover 									{  }

blockquote									{  }
strong										{ font-weight: normal; font-family: "areanormal-bold"; }
em,dfn										{ font-style: normal; }
dfn											{ font-weight: normal; }
sup, sub									{ line-height: 0; font-size: 0.75em; position: relative; vertical-align: baseline; }
sup											{ top: -0.5em; }
sub											{ bottom: -0.25em; }

abbr,
acronym										{  }
address										{  }
del											{  }

pre,code									{ white-space: pre; }
pre,code,tt 								{  }
pre 										{ white-space: pre; white-space: pre-wrap; white-space: pre-line; word-wrap: break-word; }



/* BUTTONS & CALL-TO-ACTIONS
-------------------------------------------------------------- */

.cta										{  }
.cta:hover									{  }

.btn										{  }
.btn:hover									{  }



/* LISTS
-------------------------------------------------------------- */

li ul,
li ol										{ margin: 0 1.5em; }
ul, ol										{ margin: 0 1.5em 1.5em 1.5em; }

ul											{ list-style-type: disc; }
ol											{ list-style-type: decimal; }

dl											{ margin: 0 0 1.5em 0; }
dl dt										{ font-weight: normal; }
dd											{ margin-left: 1.5em;}

nav ul 										{ list-style: none; margin: 0; padding: 0; }
nav ul li									{ display: inline; }



/* TABLES
-------------------------------------------------------------- */

table										{ width: 100%; }
th											{  }
th,td										{  }
tr.even td									{  }
tfoot										{  }
caption										{  }



/* FORMS
-------------------------------------------------------------- */

/* align checkboxes, radios, text inputs with their label */
input[type="radio"] 						{ vertical-align: text-bottom; }
input[type="checkbox"] 						{ vertical-align: bottom; *vertical-align: baseline; }

label, 
input[type=button], 
input[type=submit], 
button 										{ cursor: pointer; -webkit-appearance: none; }

label										{ font-weight: normal; }

fieldset									{  }
legend										{ font-weight: normal; }

input										{  }

textarea									{  }
textarea									{  }
textarea:focus								{  }

select										{  }
select:focus								{  }


/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	-webkit-text-fill-color: #ffffff;
	-webkit-box-shadow: none;
	font-family: var(--ff-body); 
}



/* -----------------------------------------------------------

	UTILITY STYLES

----------------------------------------------------------- */

.bg-video,
.bg-cover									{ background-position: center center; background-repeat: no-repeat; background-size: cover; }
.bg-video 									{ position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: -100; -webkit-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); }

.center-vertically							{ position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }

.embed-container 							{ position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } 
.embed-container iframe, 
.embed-container object, 
.embed-container embed 						{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

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



/* -----------------------------------------------------------

	STRUCTURE

----------------------------------------------------------- */

*,
*:before,
*:after 									{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
html										{ height: 100%; overflow-y: scroll; -webkit-overflow-scrolling: touch; }
body 										{ height: 100%; text-align: center; }

.page-wrapper								{ width: 100%; min-height: 100%; _height: 100%; margin: auto; position: relative; text-align: left; overflow: hidden; }

.page-hero,
.page-content,
.page-footer								{ width: 100%; position: relative; }



/* GLOBAL PADDING
-------------------------------------------------------------- */

.page-header,
.page-hero,
.content-block,
.page-footer								{  }
.page-content								{  }



/* FLEXBOX AND GRID
-------------------------------------------------------------- */

.flex-wrapper 								{ display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: stretch; }
.flex-wrapper .flex-item					{  }

.flex-2 > .span-1							{ flex-basis: 50%; }
.flex-2 > .span-2							{ flex-basis: 100%; }

.flex-3 > .span-1							{ flex-basis: 33.33%; }
.flex-3 > .span-2							{ flex-basis: 66.66%; }
.flex-3 > .span-3							{ flex-basis: 100%; }

.flex-4 > .span-1							{ flex-basis: 25%; }
.flex-4 > .span-2							{ flex-basis: 50%; }
.flex-4 > .span-3							{ flex-basis: 75%; }
.flex-4 > .span-3							{ flex-basis: 100%; }



.grid-wrapper								{ display: grid; justify-content: space-between; }
.grid-wrapper.grid-2						{ grid-template-columns: repeat(2, 1fr); grid-gap: 10rem var(--gp-sides); }
.grid-wrapper.grid-3						{ grid-template-columns: repeat(3, 1fr); grid-gap: 10rem var(--gp-sides); }
.grid-wrapper.grid-4						{ grid-template-columns: repeat(4, 1fr); grid-gap: 10rem var(--gp-sides); }
.grid-wrapper.grid-5						{ grid-template-columns: repeat(5, 1fr); grid-gap: 10rem var(--gp-sides); }



/* MASTHEAD
-------------------------------------------------------------- */

.page-header								{ position: absolute; z-index: 10; width: 100%; }
.page-header .wrap							{ padding: var(--gp-sides) var(--gp-sides) 0 var(--gp-sides); }
.page-header .wrap .logo					{ margin-left: -5px; }




/* NAVIGATION
-------------------------------------------------------------- */




/* HERO
-------------------------------------------------------------- */

.hero										{ min-height: 100vh; min-height: 100svh; background-position: center center; background-repeat: no-repeat; background-size: cover; display: flex; align-items: flex-end; }
.hero .wrap									{ padding: calc(var(--gp-sides) * 5) var(--gp-sides) calc(var(--gp-sides) * 2 - 5px) var(--gp-sides); width: 100%; display: grid; justify-content: space-between; grid-template-columns: repeat(2, 1fr); grid-gap: var(--gp-sides) calc(var(--gp-sides) * 2); }

.hero .wrap .heading						{ align-self: end; }
.hero .wrap .text							{ align-self: end; color: var(--c-secondary); }

.hero .wrap .heading :last-child,
.hero .wrap .text :last-child				{ margin-bottom: 0; }



/* CONTENT ELEMENTS
-------------------------------------------------------------- */

/* Text */

.text										{  }
.text .wrap									{ padding: calc(var(--gp-sides) * 2.5) var(--gp-sides) calc(var(--gp-sides) * 2) var(--gp-sides); width: 50%; }

.text h1									{ font-size: var(--fs-heading-1); margin-bottom: 5rem; }
.text a										{ color: var(--c-main); text-decoration: underline; text-underline-offset: 2px; }

.text .wrap > :last-child					{ margin-bottom: 0; }

.page-content > .text:first-child			{ padding-top: var(--gp-sides); }
.page-content > .text:last-child			{ padding-bottom: calc(var(--gp-sides) * 1.5); }



/* Divider */

.divider									{ padding: calc(var(--gp-sides) * 1.1) var(--gp-sides) 0 var(--gp-sides); }
.divider .wrap								{ height: 1px; background-color: #A6A7AB; }



/* Steps */

.steps										{  }
.steps .wrap								{ padding: calc(var(--gp-sides) * 1.5) 0 calc(var(--gp-sides) * 3) 0; display: grid; justify-content: space-between; grid-template-columns: repeat(3, 1fr); grid-gap: 0; }

.steps .step								{ display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: flex-start; align-items: flex-end; padding: calc(var(--gp-sides) * 2) var(--gp-sides) calc(var(--gp-sides) * 1.15) var(--gp-sides); position: relative; }
.steps .step::after							{ content: ""; position: absolute; width: 1px; height: 100%; background-color: #A6A7AB; top: 0; right: 0; }
.steps .step:last-child::after				{ display: none; }

.steps .step .nbr-wrap						{ padding-right: calc(var(--gp-sides) / 2.5); }
.steps .step .nbr-wrap p					{ margin: 0; font-size: var(--fs-heading-hero); color: var(--c-heading); line-height: 1; }

.steps .step .txt-wrap						{ padding-bottom: 1rem; }

.steps .step .txt-wrap :last-child			{ margin-bottom: 0; }




/* FOOTER
-------------------------------------------------------------- */

.page-footer								{ background: #C8F3C2; background: linear-gradient(0deg, rgba(200, 243, 194, 1) 0%, rgba(223, 223, 223, 1) 100%); color: var(--c-heading); }
.page-footer .wrap							{ padding: calc(var(--gp-sides) * 2.5) var(--gp-sides) var(--gp-sides) var(--gp-sides); }

.page-footer .top							{ display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: flex-start; }

.page-footer .top a							{ color: var(--c-heading); text-decoration: none; }
.page-footer .top a:hover					{ color: var(--c-heading); text-decoration: underline; }

.page-footer .top .heading-wrap				{ padding-right: calc(var(--gp-sides) * 3.5); }
.page-footer .top .heading-wrap p			{ font-size: 20px; margin: 0; }

.page-footer .top .txt-wrap					{ padding-top: 5px; }
.page-footer .top .txt-wrap p				{ line-height: 1.8; font-size: 14px; margin: 0; }


.page-footer .bottom						{ display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; padding-top: calc(var(--gp-sides) * 3.5); }

.page-footer .bottom p						{ margin: 0; color: var(--c-secondary); font-size: 14px; }
.page-footer .bottom a						{ color: var(--c-secondary); text-decoration: underline; text-underline-offset: 2px; }




/* MEDIA QUERIES
-------------------------------------------------------------- */

@media only screen and (max-width : 1280px)	{
	
	/* Hero */
	.hero .wrap									{ display: block; }
	.hero .wrap .heading						{ padding-bottom: calc(var(--gp-sides) * 1); }
	
	
	
	/* Text */
	.text .wrap									{ width: 100%; }



	/* Steps */
	.steps .step								{ display: block; }






}

@media only screen and (max-width : 1024px) {

}

@media only screen and (max-width : 960px) {

}

@media only screen and (max-width : 780px) {

	:root	{
		/* Font sizes */
		--fs-heading-hero: 68px;
	
		/* Global padding */
		--gp-sides: 4rem;
	}


	/* Steps */

	.steps .wrap								{ padding: calc(var(--gp-sides) * 1.5) 0 calc(var(--gp-sides) * 3) 0; display: block; justify-content: space-between; grid-template-columns: repeat(1, 1fr); grid-gap: 0; }
	
	.steps .step								{ display: flex; padding: calc(var(--gp-sides) * 1.15) var(--gp-sides) calc(var(--gp-sides) * 1.15) var(--gp-sides); }
	.steps .step::after							{ content: ""; position: absolute; width: calc(100% - var(--gp-sides) + 2rem); height: 1px; background-color: #A6A7AB; top: 100%; left: 0; }
	.steps .step:last-child::after				{ display: none; }
	
}

@media only screen and (max-width : 680px) {

	:root	{
		/* Font sizes */
		--fs-heading-hero: 48px;
		--fs-heading-1: 24px;
	
		/* Global padding */
		--gp-sides: 3rem;
	}

	/* Footer */
	.page-footer .top							{ display: block; }
	.page-footer .top .heading-wrap				{ padding-right: 0; padding-bottom: 1rem; }
	
	.page-footer .bottom						{ display: block; padding-top: calc(var(--gp-sides) * 2.5); }
	.page-footer .bottom .txt-left				{ padding-bottom: 2rem; }
	
}

@media only screen and (max-width : 480px) {

	:root	{
		/* Global padding */
		--gp-sides: 2rem;
	}

	/* Steps */
	.steps .step								{ display: block; }

}



/* -----------------------------------------------------------

	ANIMATIONS

----------------------------------------------------------- */

@view-transition 							{ navigation: auto; }



/*	60fps scrolling: http://www.thecssninja.com/javascript/pointer-events-60fps
----------------------------------------------------------- */

.disable-hover,
.disable-hover * 							{ pointer-events: none !important; }



/* 	Remove all animations and transitions for people who prefer not to see them.
----------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) 	{
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}