﻿@font-face {
	font-family: TrajanPro;
	src: url('fonts/TrajanProBold.ttf') format('truetype');
	font-display: swap;
}

@font-face {
	font-family: HeadingProSmallcaseThin;
	src: url('fonts/Heading-Pro-Smallcase-Thin-trial.ttf') format('truetype');
	font-display: swap;
}

@font-face {
	font-family: BebasNeueRegular;
	src: url('fonts/BebasNeue-Regular.ttf') format('truetype');
	font-display: swap;
}

body, html {
	height: 100%;
	-ms-overflow-style: none;
	overflow: visible;
}
body {
	-webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
	width: 0px; /* remove scrollbar space */
	background: transparent; /* optional: just make scrollbar invisible */
}
/*.page {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}*/
.page {
	width: 100vw;
	max-width: 100vw;
}
main {
	flex: 1;
}

.top-row {
	position: sticky;
	top: 0;
	z-index: 1;

	background-image: linear-gradient(180deg, rgb(0, 109, 0) 0%, #006521 70%);
	border-bottom: 1px solid #d6d5d5;
	height: 60px;
}
	.top-row .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 3.5rem;
	}
	.top-row a, .top-row .btn-link {
		color: white;
		white-space: nowrap;
		margin-left: 1.5rem;
	}

	.top-row a {
		text-decoration: none;
	}

.navbar-brand img {
	content: url("../images/aatech-logo.png");
	height: 40px;
	max-height: 40px;
	width: auto;
}

.navbar-brand {
	padding-top: 0 !important;
	/*font-size: 4rem;*/
	font-family: BebasNeueRegular;
	/*font-weight: 600;*/
	color: white;
	/*text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.8);*/
}

#demo-message {
	font-size: 1.2em;
}
#home-section .inner .right img {
	content: url("../images/laptop-smartphone.png");
	width: 90%;
	max-width: 90%;
	height: auto;
}
#home-section .inner .left {
	background: linear-gradient(to right, #10B981 0%, #059669 100%);
}

#home-section .inner .left > div {
	text-align: center;
	width: 80%;
	padding: 50px 0;
}

#home-section .inner .left p {
	text-align: justify;
	font-size: 1.2rem;
}

#home-section .inner .left > div .h4 {
	margin-bottom: 20px;
}

#product-section .h2, #product-section .h3, #features-section .h2 {
	text-align: center;
	text-decoration: underline;
	margin-top: 50px;
	margin-bottom: 50px;
}
#product-section .card {
	width: 100%;
	margin-bottom: 20px;
}
#product-section .card-Body {
	padding: 10px;
}
#product-section .card-Body p {
	text-align: justify;
	/*font-size: 1.2rem;*/
}

#contact-section {
	margin-top: 50px;
	margin-bottom: 50px;
	padding:20px;
	color:white;
	background: linear-gradient(to bottom, #299a0b 0%,#299a0b 100%);
}
	#contact-section .copyright-container > div {
		display: flex;
		justify-content:center;
		align-items: center;
	}
		#contact-section .copyright-container > div img {
			content: url("../images/aatech-logo.png");
			margin-top: 50px;
			height: 50px;
			max-height: 50px;
			width: auto;
		}
@media (max-width: 640.98px) {
/*	main > article {
		height: calc(100vh - 8.5rem);
		min-height: calc(100vh - 8.5rem);
	}*/

/*	.top-row .container {
		justify-content: space-between;
	}*/
	#home-section .inner .right {
		width: 100%;
	}
		.top-row .nav-link {
			font-weight:400;
		}

}

@media (min-width: 641px) {
/*	.page {
		flex-direction: row;
	}*/

/*	main > article {
		height: calc(100vh - 5rem);
		min-height: calc(100vh - 5rem);
	}*/

/*	.top-row {
		position: sticky;
		top: 0;
		z-index: 1;
	}*/
		.top-row .nav-link {
			font-size: 1.2em;
			font-weight: 400;
		}
	#home-section {
		height: calc(100vh - 60px);
		min-height: calc(100vh - 60px);
	}
		#home-section .inner .left, #home-section .inner .right {
			display: flex;
			justify-content: center;
			align-items: center;
		}
	#features-section ul {
		text-align:center;
		list-style:none;
		columns: 2;
		-webkit-columns: 2;
		-moz-columns: 2;
	}
}


.blink {
	animation: blink-animation 1s steps(5, start) infinite;
	-webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
	to {
		visibility: hidden;
	}
}

@-webkit-keyframes blink-animation {
	to {
		visibility: hidden;
	}
}
