/*body {
	font-family: 'Lexend', sans-serif;
	background-color: #000;
	color: #fff;
	box-sizing: border-box;
	margin: 4px;
}*/

@font-face {
	font-family: 'aon001';
	src:
		url('../fonts/AoN001Regular.woff2') format('woff2'),
		url('../fonts/AoN001Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

.card1,
.card2,
.card3,
.card4,
.card5 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 50%);
	animation-duration: 5s;
	border-radius: 40px;
	z-index: 100;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in-out;
	transform-origin: center;
	animation-name: slidein1;
	opacity: 0;
}

.card1 {
}

.card2 {
	animation-delay: 0.4s;
}

.card3 {
	animation-delay: 0.8s;
}

.card4 {
	animation-delay: 1.2s;
}
.card5 {
	animation-delay: 1.6s;
}

@keyframes slidein1 {
	from {
		opacity: 0;
	}

	10% {
		margin-top: 0%;
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes slidein2 {
	from {
		margin-top: 100%;
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	50% {
		margin-top: 0%;
	}

	82% {
		opacity: 1;
	}

	97% {
		opacity: 0;
	}

	to {
		margin-top: 0%;
		opacity: 0;
	}
}

@keyframes slidein3 {
	from {
		margin-top: 100%;
		opacity: 0;
	}

	10% {
		opacity: 0;
		margin-top: 100%;
	}

	20% {
		opacity: 1;
	}

	60% {
		margin-top: 0%;
	}

	84% {
		opacity: 1;
	}

	98% {
		opacity: 0;
	}

	to {
		margin-top: 0%;
		opacity: 0;
	}
}
@keyframes slidein4 {
	from {
		margin-top: 100%;
		opacity: 0;
	}

	20% {
		opacity: 0;
		margin-top: 100%;
	}

	30% {
		opacity: 1;
	}

	70% {
		margin-top: 0%;
	}

	86% {
		opacity: 1;
	}

	99% {
		opacity: 0;
	}

	to {
		margin-top: 0%;
		opacity: 0;
	}
}

@keyframes slidein5 {
	from {
		margin-top: 100%;
		opacity: 0;
	}

	30% {
		opacity: 0;
		margin-top: 100%;
	}

	40% {
		opacity: 1;
	}

	80% {
		margin-top: 0%;
	}

	90% {
		opacity: 1;
	}

	to {
		margin-top: 0%;
		opacity: 0;
	}
}

.highlighter {
	animation-duration: 2s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	animation-timing-function: ease-out;
	transform-origin: left;
	background-position: -50%;
	animation-name: highlighteranim;
	padding: 16px 14px 6px 12px;
	background: linear-gradient(to left, red 50%, blue 50%) right;
	background-size: 200%;
}

@keyframes highlighteranim {
	from {
		background-position: -50%;
	}

	to {
		background-position: 100%;
	}
}

.loader {
	width: 20%;
	height: 4.8px;
	display: block;
	position: absolute;
	overflow: hidden;
	top: 50%;
	left: 40%;
	z-index: 1;
}

.loader::after {
	content: '';
	width: 96px;
	height: 4.8px;
	background: #dbdbdb;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	border-radius: 4px;
	animation: hitZak 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

@keyframes hitZak {
	0% {
		left: 0;
		transform: translateX(-1%);
		width: 20px;
	}

	50% {
		width: 96px;
	}

	100% {
		left: 100%;
		transform: translateX(-99%);
		width: 20px;
	}
}

.footer-contact-info {
	font-size: 1rem;
	position: fixed;
	bottom: 20px;
	animation: fadeInAnimation ease 3s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 0.3;
	}
}

#slides_container {
	margin-top: 13vw;
}

#about-padding {
	display: block;
	height: 5rem;
	background: none;
}
.end-zero {
	width: 20%;
	margin: 15vh auto;
	display: block;
}

.text-blocks {
	font-size: 1.2rem;
	line-height: 1.6;
	text-align: left;
	margin: 1.5rem auto 4rem;

	width: 90%;
	max-width: 800px;
}

.about-title {
	font-size: 2rem;
	line-height: 1.2;
	text-align: left;
	margin: 0 auto;
	padding-top: 4rem;
	width: 90%;
	max-width: 800px;
	font-weight: normal;
}

.about-image {
	margin: 2rem auto;
	width: 90%;
	height: auto;
	position: relative;
	display: block;
}

h1.about-title {
	padding-top: 2rem;
}

.cta-block {
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
}

hr {
	margin-top: 3rem;
	padding-bottom: 3.5rem;
	border-width: 0;
	border-top: 1px solid #333;
	margin: 0 auto;
	width: 90%;
	max-width: 800px;
}

@keyframes BlueFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.bluescreen {
	opacity: 0;
	animation: 0.2s ease-out 0.5s BlueFade;
	-webkit-animation-fill-mode: forwards;
}

body {
	position: absolute;
	top: 0;
	width: 100%;
}

.hamburger {
	position: absolute;
	width: 40px;
	height: 30px;
	top: 10px;
	right: 15px;
	z-index: 25;
}
.hamburger div {
	position: relative;
	cursor: pointer;
	width: 44px;
	height: 3px;
	border-radius: 3px;
	background-color: #272727;
	margin-top: 7px;
	transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#toggle {
	display: none;
}

#toggle:checked + .hamburger .top {
	transform: rotate(-45deg);
	margin-top: 22.5px;
}
#toggle:checked + .hamburger .meat {
	transform: rotate(45deg);
	margin-top: -5px;
}
#toggle:checked + .hamburger .bottom {
	transform: scale(0);
}
#toggle:checked + .hamburger + .nav {
	top: -10%;
}

#toggle:checked + .hamburger div {
	background-color: #fff;
}

.nav {
	position: fixed;
	width: 100%;
	height: 120%;
	background-color: #272727;
	top: -140%;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transition: all 0.8s cubic-bezier(0.77, 0.2, 0.05, 1);
	z-index: 20;
}
.nav .nav-wrapper {
	position: relative;
	overflow-y: auto;
	height: 100%;
}

nav {
	height: 100vh;
	width: 180px;
	margin-left: 10vw;
	align-items: center;
	justify-content: center;
}

nav a {
	color: #fff;
	opacity: 0;
	text-decoration: none;
	font-size: 20px;
	transition: all 0.1s ease;
	z-index: 30;
	margin-top: 1rem;
	display: block;
}

nav ul li a:hover {
	background: #fff;
	color: #272727 !important;
	border-radius: 8em;
	display: block;
	padding: 0.9rem 3rem 0.5rem 3rem;
}
nav a:first-child {
	margin-top: 0;
}

nav ul {
	padding-top: 25vh;
	overflow-wrap: normal;
}

#toggle:checked + .hamburger + .nav .nav-wrapper nav a {
	opacity: 1;
	transform: scale(1);
	z-index: 40;
	color: #fff;
	display: block;
	transition-duration: 0.5s;
}
#toggle:checked + .hamburger + .nav .nav-wrapper nav ul li a:hover {
	opacity: 1;
	transform: scale(1);
	text-align: center;
	width: 150px;
}

ul.nav-social-icons {
	padding-top: 0;
}

.nav-social-icons a {
	width: 33px;
	height: 42px;
	display: inline-block !important;
}

.emoji {
	vertical-align: 0;
	z-index: 999;
	position: relative;
	top: 26px;
}

.emoji-button {
	font-size: 3vw !important;
	padding: 0.5rem 3rem 0rem 3rem !important;
}

/* Bigger than 550 */
@media (min-width: 550px) {
	.nav {
		width: 75%;
	}
	.slide {
		/*margin-top: 2vh;*/
		line-height: 1.2;
	}
}

/* Bigger than 750 */
@media (min-width: 750px) {
	#aon-logo {
		width: 300px;
	}

	.about-image {
		top: -2rem;
		width: 80%;
	}
	.about-title {
		padding-top: 6rem;
		font-size: 3rem;
	}
	.text-blocks {
		margin: 2.5rem auto;
	}
}

@media only screen and (min-width: 700px) {
	.nav {
		width: 50%;
	}

	.losenge-button {
		font-size: 1.5vw;
	}

	nav a {
		font-size: 40px;
	}
	.hamburger {
		position: absolute;
		width: 50px;
		height: 45px;
		right: 15px;
	}

	.text-blocks {
		font-size: 1.6rem;
		line-height: 1.4;
		text-align: left;
		margin: 2rem auto;
		width: 80%;
		max-width: 800px;
	}

	.about-title,
	hr,
	.cta-block {
		width: 80%;
		max-width: 800px;
	}
}

/* Bigger than 1200 */
@media (min-width: 1200px) {
	#slides_container {
		margin-top: 6vw;
	}
}

@media only screen and (min-width: 1620px) {
	.about-title,
	hr,
	.text-blocks {
		max-width: 700px;
	}
	.cta-block {
		max-width: 860px;
	}
	.about-title {
		line-height: 1.1;
	}
}

@media only screen and (min-width: 1920px) {
	.about-title,
	hr,
	.cta-block,
	.text-blocks {
		max-width: 1200px;
	}
	.about-title {
		line-height: 1.1;
	}
}

.nav-social-icons a:hover {
	transform: scale(1.2) !important;
}

.insta-icon {
	margin-left: 0 !important;
}