/* CSS Document */
body {
	margin: 0;
	padding: 0;
	background: #000000;
	color: #FFFFFF;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 14px;
}
#page {
	box-sizing: border-box;
	padding: 40px;
	width: 100%;
	auto;
	text-align: center;
}
#page > * {
	width: 100%;
}
#page > img {
	width: 300px;
	height: auto;
	margin: 0 auto;
}
p {
	margin-top: 30px;
}
a.button,
span.button {
	color: #FFFFFF;
	border: 1px solid #74AA50;
	padding: 16px 20px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	display: inline-block;
	border-radius: 0;
	letter-spacing: 1px;
	text-decoration: none;
	min-width: 250px;
}
a.button:hover,
span.button:hover,
.country-link:hover span.button {
	background: #74AA50;
}

a.button span {
	font-size: 0.8em;
	text-transform: none;
}

span.button {
	min-width: none;
	width: 100%;
	box-sizing: border-box;
}




/*  *********  Country List  **********  */

#page > img.cutek-logo {
	display: block;
	width: 200px;
	height: auto;
}

.country-list {
	padding-top: 70px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.country-link {
	width: 250px;
}

.country-link img {
	display:block;
	width: 70%;
	height: auto;
	margin: 0 auto 30px auto;
	opacity: 0.4;
}
.country-link:hover img {
	opacity: 1;
}