* {
	box-sizing: border-box;
}
body {
	margin: 0;
	font-family: Verdana, sans-serif;
	font-size: 90%;
	color: #003399;
	background-color: white;
}
img {
	max-width: 100%;
}
/* Layout */
.wrapper {
	max-width: 1080px;
	margin: auto;
	padding: 16px;
}
.header {
	position: relative;
}
.site-title {
	overflow: hidden;
	padding: 8px 0
}
.grid {
	display: grid;
	gap: 16px;
	align-items: stretch;
	margin-bottom: 16px;
	padding: 16px 0;
}
.home .grid {
	justify-items: center;
	align-items: center;
	padding-bottom: 32px;
}
.home ul {
	padding-left: 0;
}
.content {
	margin-bottom: 12px;
	padding: 8px 24px 10px;
	color: white;
	background-color: #003399;
	border-radius: 12px;
}
.home .content {
	padding: 16px 24px 8px;	
}
.blackout {
	background-color: rgba(000,000,000,0);
	cursor: pointer;
	position: fixed;
	z-index: 1;
}
.clicked + .blackout {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(000,000,000,0.8);
	transition: background-color 0.2s ease-out;
}
.footer {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 8px 0;
	text-align: center;
	border-top: 1px dotted #003399;
}
/* Navigation */
.menu {
	width: max-content;
	margin: 0;
	padding: 0;
	line-height: 1.2;	
	list-style: none;
	position: absolute;
	top: 12px;
	right: 0;
	z-index: 2;
	background-color: white;
	border: 2px solid white;
	border-bottom: 1px solid white;
	border-radius: 4px;	
}
.menu li a {
	display: block;
	padding: 8px;
	color: white;
	text-decoration: none;
}
.menu li:first-child {
	bottom: 8px;
	justify-content: flex-end;
	border: 1px dotted #003399;
	border-radius: 4px;
}
.menu li:nth-child(2) {
	margin-top: 2px;	
}
.menu li:not(:first-child) {
	margin-bottom: 2px;
	position: fixed;
	top: -999px;
	color: white;
	background-color: #003399;
	border-radius: 4px;
	opacity: 0;
	transition: opacity 0.3s;
}
.menu li:last-child {
	margin-bottom: 1px;;
}
.menu.clicked li:not(:first-child) {
	position: static;
	top: 0;
	opacity: 1;
	transition: opacity 0.2s ease-out;
}
.menu-button {	
	display: flex;
	gap: 14px;
	appearance: none;
	color: #003399;
	font-size: 100%;
	cursor: pointer;
	background-color: transparent;
	padding: 8px 8px 8px 12px;
	border: none;
}
.hint::before {	
	content: "Menu";
}
.clicked .hint::before {
	content: "Close:";
}
.hamburger {
	display: block;
	width: 32px;
	height: 20px;
	background-image: linear-gradient(to bottom, transparent, transparent 40%, #003399 40%, #003399 60%, transparent 60%, transparent);
	border-radius: 4px;
	position: relative;
}
.clicked .hamburger {
	background-image: none;
}
.hamburger::before {
	display: block;
	content: "";
	width: 32px;
	height: 4px;
	background-color: #003399;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
}
.clicked .hamburger::before {
	rotate: 45deg;
	translate: 0 8px;
	border-radius: 4px;
}
.hamburger::after {
	display: block;
	content: "";
	width: 32px;
	height: 4px;
	background-color: #003399;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	position: absolute;
	bottom: 0;
}
.clicked .hamburger::after {
	rotate: -45deg;
	translate: 0 -8px;
	border-radius: 4px;
}
.menu li:not(:first-child) a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.menu li:not(:first-child) a::after {
	display: block;
	content: "";
	border-top: 12px solid transparent;
	border-right: 12px solid cornflowerblue;
	border-bottom: 12px solid transparent;
}
.menu li:not(:first-child):hover a::after {
	display: block;
	content: "";
	border-top: 12px solid transparent;
	border-right: 12px solid orange;
	border-bottom: 12px solid transparent;
}
.home .menu li:nth-child(2) a::after,
.software .menu li:nth-child(3) a::after,
.payment .menu li:nth-child(4) a::after,
.contact .menu li:nth-child(5) a::after {
	display: block;
	content: "";
	border-top: 12px solid transparent;
	border-right: 12px solid lawngreen;
	border-bottom: 12px solid transparent;
}
/* Typography */
.site-title > h1 {
	max-width: 420px;
	height: 31px;
	font-size: 0;
	line-height: 0;
	color: transparent;
	background: url('../images/computer_services.gif') no-repeat center;
	background-size: contain;
}
h2 {
	font-weight: normal;
	margin-top: 4px;
}
p, ul {
	line-height: 1.8;
}
.software .grid p {
	margin: 0;
}
.content ul {
	padding-left: 0;
}
.services {
	font-weight: bold;
	letter-spacing: -0.01em;
}
.footer p {
	font-size: 75%;
	font-weight: bold;
	line-height: 1.1;
	color: #003399;
	margin: 0;
}
.footer p:nth-child(2) {
	margin-bottom: 4px;
}
.footer p:nth-child(3) {
	margin-bottom: 3px;
}
/* Styling */
.software-link img {
	width: 180px;
	height: 180px;
}
.software .grid p {
	text-align: center;
	margin-bottom: 0;
	padding: 24px;
	border: 1px dotted #003399;
	border-radius: 12px;
}
.software .grid p:nth-child(5) img {
	padding: 35px 0;
}
.software .grid p:nth-child(6) img {
	padding: 40px 0;
}
.content ul {
	margin-left: 12px;
}
.software .content li:nth-child(3) {
	list-style: none;
}
.software .content li:nth-child(3)::before {
	margin-right: -15px;
	content: "*\20";
	position: relative;
	top: 4px;
	right: 15px;
	color: red;
}
.phcs {
	padding: 12px 48px 16px;
	font-weight: bold;
	color: white;
	background: #003399;
	border: 4px solid #FFFF00;
	border-radius: 12px;
}
.feuk {
	padding: 12px 48px 16px;
	font-weight: bold;
	color: white;
	background: #874264;
	border: 4px solid #97D29E;
	border-radius: 12px;
}
.border {
	border-bottom: 1px dotted #003399;
}
.contact .grid a {
	display: flex;
	align-items: center;
	padding: 48px 0 48px 48px;
	font-weight: bold;
	color: #003399;
	border: 1px dotted #003399;
	border-radius: 12px;
	background-color: aliceblue;
	text-decoration: none;
}
.contact .grid a:hover {
	opacity: 0.6;
	transition: opacity 0.2s;
}
.gg-smartphone {
	background: linear-gradient(to left, currentColor 5px,transparent 0) no-repeat 4px 12px/2px 2px;
	box-sizing: border-box;
	position: relative;
	display: block;
	transform: scale(var(--ggs,2));
	width: 14px;
	height: 20px;
	margin-right: 24px;
	border: 2px solid #003399;
	border-radius: 2px;
}
.email {
	display: block;	
	width: 20px;
	height: 14px;
	margin-right: 24px;
	border: 2px solid #003399;
	border-radius: 2px;
	transform: scale(var(--ggs,2));
	position: relative;
}
.email::before {
	display: block;
	width: 50%;
	content: "";
	border: 1px solid #003399;
	rotate: 35deg;
	position: absolute;
	left: -1px;
	top: 2px;
}
.email::after {
	display: block;
	width: 50%;
	content: "";
	border: 1px solid #003399;
	rotate: -35deg;
	position: absolute;
	right: -1px;
	top: 2px;
}
.yellow {
	color: #ffff00;
	font-weight: bold;
}
.red {
	color: red;
}
a.builtBy {
	align-self: center;
	font-weight: normal;
	font-size: 10px;
	text-decoration: none;
	color: #003399;
	border: 1px solid #003399;
	padding: 1px 3px;
	border-radius: 2px;
	background-color: aliceblue;
	position: relative;
	bottom: 1px;
}
a.builtBy:hover {
	background: lightblue;
}
/* Media Queries */
@media screen and (min-width: 740px) {
	body {
		font-size: 100%;
	}
	.grid {
		grid-template-columns: 1fr 1fr;
		gap: 48px;
		padding: 48px;
	}
	.home .grid {
		padding-bottom: 48px;
	}
	.content {
		margin-bottom: 16px;
		padding: 48px 64px;
	}
	.home .content {
		padding: 60px 96px 60px;
	}
	.content ul {
		margin-left: 24px;
	}
}
@media screen and (min-width: 981px) {
	.software .grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.footer {
		flex-direction: row;
		gap: 8px;
		align-items: center;
		justify-content: center;
	}
	.footer p:first-child::after {
		content: "\20|";
	}
	.footer p:nth-child(2) {
		margin-left: -4px;
		margin-bottom: 0;
	}.footer p:nth-child(3) {
		margin-bottom: 0;
	}

}