@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
:root {
	--bgcolor: #1c1c2e;
	--primary: #666;
	--primary-dark: #666;
	--primary-light: #666;
}
html,
body {
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
	min-height: 100vh;
	width: 100%;
	background-color: #000;
	background-color: #ccc;
	font-size: 16px;
	color:var(--bgcolor);
}
*{
	user-select: none;
}
p{
	margin: unset;
}
.m1{
	margin-bottom: 10px;
}
.m4{
	margin-bottom: 40px;
}
.p2-2{
	padding-left: 10px;
	padding-right: 10px;
}
.js{
	text-align: justify;
}
.qu{
	font-size: 32px;line-height: 12px;height: 12px;display: inline-block;vertical-align: middle;
}
* {
	box-sizing: border-box;
}
a {
	text-decoration: none;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.block{
	margin:30px auto;
	background-color: #fff;
	border-radius: 10px;
	padding: 25px;
	color: #fff;
	color: #000;
}
.topbar {
	background: var(--bgcolor);
	color: #fff;
	padding: 10px 0;
	position: relative;
	z-index: 10;
}
.topbar .navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.topbar .navigation .logo-title{
	font-size: 20px;
	color: #fff;
	font-family: "Montserrat";
	font-weight: 600;
	line-height: 30px;
}
.topbar .navigation .menu-toggle {
	display: none;
	font-size: 20px;
	cursor: pointer;
}
.topbar .navigation #main-menu {
	display: flex;
}
.topbar .navigation #main-menu a {
	color: #fff;
	margin-left: 25px;
	font-size: 15px;
}
.cover {
	background: var(--primary-dark);
	box-shadow:	inset 0px 0px 1px 3px #33333366;
	min-height: calc(100vh - 60px);
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.cover-gradient{
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	background: linear-gradient(60deg, #00000082, transparent);
}
.cover-filter{
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 25px 25px;
}
.white-text {
	color: #fff;
}
.story-teller {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 100%;
}

.story-teller .current-story {
	width: 100%;
	height: 100%;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
	opacity: 1;
	transition: opacity 0.6s ease;
}

.story-teller .story-content {
	position: absolute;
    top: 60px;
    right: 40px;
    color: #fff;
    max-width: 60%;
    text-align: right;
}

.story-teller .current-story-title {
font-size: 32px;
    font-weight: 600;
    background-color: #00000099;
    padding: 0px 10px;
    display: inline-block;
}

.story-teller .current-story-text {
	    font-size: 16px;
    line-height: 1.4;
    background-color: #171d30d6;
    padding: 10px;
    margin-top: -5px;
}

.story-teller .story-navigator {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.story-navigator .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,0.4);
	cursor: pointer;
}

.story-navigator .dot.active {
	background: #fff;
}

.fade-out {
	opacity: 0;
}

@keyframes bgMoveLeftToTop {
	from {
		background-position: left bottom;
	}
	to {
		background-position: right top;
	}
}
@keyframes bgMoveLeftToBottom {
	from {
		background-position: left top;
	}
	to {
		background-position: right bottom;
	}
}
@keyframes bgMoveRightToTop {
	from {
		background-position: right bottom;
	}
	to {
		background-position: left top;
	}
}
@keyframes bgMoveRightToBottom{
	from {
		background-position: right top;
	}
	to {
		background-position: left bottom;
	}
}
.hero {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 100%;
	align-items: flex-end;
}
.hero .hero-text {
	padding-bottom: 80px;
	max-width: 50%;
	color: #fff;
}
.hero .hero-text .logo img{
	height: 60px;
}
.hero .hero-text h1 {
	font-size: 36px;
	line-height: 38px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.hero .hero-text p {
	font-size: 16px;
	line-height: 1.6;
}
@media (max-width: 600px) {
	.topbar .navigation {
		position: relative;
		/* enables absolute menu positioning */
	}
	.topbar .navigation .menu-toggle {
		display: block;
	}
	.topbar .navigation #main-menu {
		display: none;
		flex-direction: column;
		background: #222222ee;
		padding: 20px;
		width: 100%;
		padding: 10px 20px;
		position: absolute;
		top: 40px;
		left: 0;
		z-index: 9999;
	}
	.topbar .navigation #main-menu a {
		margin: 7px 0;
	}
	.topbar .navigation #main-menu.show-menu {
		display: flex;
	}
	.hero{
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	.hero .hero-text{
		max-width:90%;
	}
	.story-teller .story-content {
		display: none;
	}
	.story-teller .story-navigator {
		display: none;
	}
}
.container .image-placeholder {
	width: 100%;
	height: 320px;
	border-radius: 8px;
}
.container h1 {
	margin: 0px;
	margin-bottom: 10px;
}
.container h2 {
	font-size: 22px;
	margin: 0px;
	margin-bottom: 5px;
}
.container .icon-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 10px;
	justify-items: center;
	font-weight: 500;
}
.container .icon-grid .icon-item {
	text-align: center;
	max-width: 160px;
}
.container .icon-grid .icon-item p {
	white-space: nowrap;
}
.container .icon-grid .icon-placeholder {
	width: 60px;
	height: 60px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin: 0 auto 10px;
	filter:sepia(1) hue-rotate(190deg) brightness(0.8) drop-shadow(3px 3px 3px #00000099);
}
.quote{
	font-size: 18px;
	font-family: Montserrat;
}
.container .with-image {
	display: flex;
	gap: 40px;
	align-items: center;
}
.container .wix-image {
	display: flex;
}

.container .wix-image.wix-odd {
	flex-direction: row-reverse;
}
.container .wix-image .image{
	flex:1;
	background-size: auto 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #fff;
	transition: all 0.5s ease-in;
}
.container .wix-image.in-view .image {
	background-size: auto 110%;
}
.container .wix-image .content{
	flex:1;
	padding: 10px;
}
@media (min-width: 600px) {
	.container .wix-image.wix-even .image{
		border-top-left-radius:5px;
		border-bottom-left-radius:5px;
	}
	.container .wix-image.wix-odd .image{
		border-top-right-radius:5px;
		border-bottom-right-radius:5px;
	}
	.container .wix-image.wix-even .content{
		padding-left: 30px;
	}
	
}
@media (max-width: 600px) {
	.container .wix-image,.container .wix-image.wix-odd {
		flex-direction: column;
	}
	.container .wix-image .image{
		min-height: 250px;
		background-size: 100% auto ;
		border-top-left-radius:5px;
		border-top-right-radius:5px;
	}
	.container .wix-image.in-view .image {
		background-size: 110% auto ;
	}
	
}
.container .with-image .text {
	flex: 2;
}
.container .with-image .side-image {
	flex: 1;
}
.container .with-image .side-image .image-placeholder {
	height: 250px;
}
.footer {
	background: #333;
	padding: 25px 0;
	text-align: center;
}
.footer .footer-links{
	margin-bottom: 20px;
}
.footer .footer-links a {
	margin: 0 12px;
	color: #666;
	font-weight: 600;
	font-size: 13px;
}
.footer .footer-logo {
	text-align: center;
}
.footer .footer-logo span{
	mask-image:url('/assets/aoc-logo.png');
	mask-position:center;
	mask-repeat:no-repeat;
	mask-size:contain;
	height: 30px;
	width: 100px;
	background-color: var(--primary-dark);
	display: inline-block;
	
}
.footer .footer-copy{
	color: var(--primary-dark);
	font-size: 12px;
}
.contact-form {
	max-width: 600px;
	margin: 30px 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.contact-form label {
	font-weight: bold;
	font-size: 14px;
}
.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 15px;
	box-sizing: border-box;
	margin-bottom: 5px;
}
.contact-form textarea {
	min-height: 140px;
	resize: vertical;
}
.contact-form button {
	background: #111;
	color: #fff;
	border: none;
	padding: 14px 20px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 6px;
	margin-top: 10px;
	width: 160px;
}
.contact-form button:hover {
	background: #000;
}


.page-hero {
	padding: 80px 0;
	background: #f7f7f7;
	position: relative;
	
}

.page-hero .page-hero-cover{
	position: absolute;
	left:0px;
	right: 0px;
	top:0px;
	bottom: 0px;
	background-color: #ffffff;
	filter: blur(2px);
	background-size: cover;
	animation:bgMoveLeftToTop 25s ease forwards;
}
.page-hero .page-hero-layer{
	z-index: 1;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	background: linear-gradient(60deg, #00000099, #00000014);
}
.page-hero .page-hero-grid{
	z-index: 1;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 25px 25px;
}
.page-hero .page-hero-content{
	position: relative;
	z-index: 2;
	color: #fff !important;
	text-shadow: 1px 1px 3px #000;
}
.page-hero h1 {
	font-size: 44px;
	margin-bottom: 10px;
}

.page-hero h2 {
	font-size: 26px;
	margin-bottom: 20px;
}

.page-hero p {
	font-size: 18px;
	line-height: 1.6;
	max-width: 900px;
}

.page-hero .hero-highlight {
	margin-top: 20px;
	font-weight: 600;
}
.page-hero .page-hero-list {
	list-style: none;
	padding: 0;
	margin: 40px 0 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 14px 30px;
}
.page-hero .page-hero-list li {
	position: relative;
	
}
.page-hero .page-hero-list li span{
    line-height: 1.5;
    color: #eaeaea;
    background-color: #333;
    display: inline-block;
    padding: 5px 10px;
    padding-left: 24px;
    border-radius: 3px;
    width: max-content;
}
.page-hero .page-hero-list li span::before {
	content: '✓';
	position: absolute;
	left: 5px;
	top: 5px;
	color: #0a7cff;
	font-weight: 600;
}

.page-grid {
	padding: 80px 0;
}

.page-grid .grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.page-grid .grid .grid-card {
	background: #fff;
	border: 1px solid #eee;
	padding: 30px;
	border-radius: 8px;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	color: var(--bgcolor);
}
.page-grid .grid .grid-card .icon-placeholder {
	width: 100px;
	height: 100px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin: 0 auto 10px;
	filter:sepia(1) hue-rotate(190deg) brightness(0.8) drop-shadow(3px 3px 3px #00000099);
}
.page-grid .grid .grid-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
}
.page-grid .grid .grid-card ul {
	padding-left: 18px;
	margin: 0;
}
.page-grid .grid .grid-card li {
	margin-bottom: 10px;
	color: #444;
}
.page-grid .grid .grid-card.in-view {
	opacity: 1;
	transform: translateY(0);
}
.page-villain{
	padding: 90px 0;
	background: var(--bgcolor);
	color: #fff;
}
.page-villain h2 {
	font-size: 34px;
	margin-bottom: 20px;
}
.why-choose-us .grid-card{
	text-align: center;
	border: 0px !important;
}
@media (max-width: 600px) {
	.page-hero h1 {
		font-size: 34px;
	}
	.page-hero h2 {
		font-size: 22px;
	}
}
.floating-image-revolution{
	mask-image:url('/assets/revolution.png');
	mask-position:center;
	mask-repeat:no-repeat;
	mask-size:contain;
	background-color: #ffd;
}
@media (min-width: 800px){
	.floating-image-revolution{
		min-height: 200px;
		float:left;
		width: 300px;
		margin-right: 20px;
	}
}
@media (max-width: 800px){
	.floating-image-revolution{
		min-height: 200px;
		margin-bottom: 20px;
	}	
}