@font-face {
	font-family: 'SF-Pro'; src: url('../font/SF-Pro-Display-Medium.otf');
} 

body {
	font-family: 'SF-Pro', sans-serif;
	background-color: black;
	color: gray;
	line-height: 1.3em;
	font-size: 22px;
}

a {
	color: black;
}

a:hover {
	color: gray;
	text-decoration: none;
}

/* =================================================
Basic Layout
================================================= */

.container {
	background-color: white;
	box-sizing: border-box;
	max-width: 1200px;
	margin: auto;
}

.main, footer {
	border-bottom: 3px solid black;
	padding: 60px;
	padding-top: 30px;
	padding-bottom: 30px;
}


img {
	max-width: 100%;
	height:auto;
	display:block;
	margin:auto;
}

.center {
	text-align: center;
}

.clear {
	clear: both;
}

.social {
	float: left;
	padding-top: 20px;
}

.contact {
	padding-top: 20px;
	float: right;
}

footer {
	display: block;
	position: relative;
	padding-bottom: 90px;
}

/* =================================================
Headings
================================================= */


h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	color: black;
	line-height: 1.2em;
}

h1 {
	font-size: 70px;
	line-height: 74px;
}

h2 {
	font-size: 50px;
}

h3 {
	font-size: 30px;
}

h1.index {
	max-width: 800px;
	margin: auto;
}


/* =================================================
Logo
================================================= */

.logo {
	margin-bottom: 10px;
	margin-top: 12px;
}

.logo a {
	text-decoration: none;
	color: black;
}

.logo a:hover {

}
/* =================================================
Menu
================================================= */

#menu {
	display: none;
	clear: both;
}

#menu ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
	border-top: 3px solid gray;
}

#menu ul li a {
	display: block;
	background-color: black;
	border-bottom: 3px solid gray;
	width: 100%;
	padding: 30px 20px 28px 24px;
	box-sizing: border-box;
	color: white;
	text-decoration: none;
	color: gray;
	font-size: 26px;
}

#menu ul li a:hover {
	background-color: white;
	color: black;
}

.header-right img {
	cursor: pointer;
}

button.hide:focus {
	outline:0;
}

/* =================================================
Header
================================================= */

header {
	position: relative;
	min-height: 80px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.header-middle {
	margin-left: 120px;
	margin-right: 120px;
	padding-top: 0px;
}

.header-social {
	margin: auto;
	width: 168px;
	height: 80px;
}

.header-middle img {
	float: left;
	margin-left: -12px;
	margin-right: -12px;
}

.header-left,
.header-right {
	position: absolute;
	top: 0;
	bottom: 0;
	height: auto;
	display: flex;
	align-items: center;
}

.header-left {
	left: 0;
	width: auto;
}

.logo-wrap {
	display: inline-block;
	padding: 20px;
}

.logo-box {
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 12px;
	overflow: hidden;
}

.logo-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.header-right {
	right: 0;
	width: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* =================================================
Main Columns
================================================= */

.column-left {
	float: left;
	box-sizing: border-box;
	float: left;
	padding-left: 0px;
	padding-right: 30px;
	width: 50%;
	padding-bottom: 40px;
}

.column-left p.index, .column-right p.index {
	max-width: 75%;
	margin: auto;
}


.column-right {
	box-sizing: border-box;
	display: table-cell;
	vertical-align: middle;
	float: right;
	width: 50%;
	padding-left: 30px;
	padding-right: 0px;
	padding-bottom: 60px;
}

.column {
	padding: 0px;
	padding-top: 0px;
}

/* =================================================
Download Button
================================================= */

a.download {
	display: inline-block;
	box-sizing: border-box;
	color: white;
	text-decoration: none;
	background-color: black;
	padding: 24px 30px 24px 30px;
	border-radius: 15px;
	border: 3px solid black;
	margin-top: 20px;
	font-size: 26px;
}

a.download:hover {
	background-color: white;
	color: black;
}


/* =================================================
Language Grod
================================================= */

.language-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center items in each row */
    max-width: 900px;        /* limit total row width */
    margin: 0 auto;          /* center container */
    gap: 20px;               /* space between items */
}

.language-item {
    width: 100px;             /* fixed width per item */
    text-align: center;
}

.language-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.language-item div {
    margin-top: 5px;
}


/* =================================================
Sales
================================================= */

.sale {
	color: #00cc00;
}

/* =================================================
Tables
================================================= */

table {
	border-spacing: 0;
	border-collapse: collapse;
	width: 100%;
	margin: auto;
	background-color: white;
	color: black;
}

td {
	border-top: 2px solid lightgray;
	text-align: center;
	padding: 18px 18px 18px 18px;
	vertical-align: top;
}

td.left {
	text-align: left;
	padding-left: 0px;
	vertical-align: top;
}

td.right {
	text-align: right;
	padding-right: 0px;
	vertical-align: top;
}

tr:hover {
	background-color: white;
}

/* =================================================
Mobile
================================================= */

@media screen and (max-width: 800px) {
	.main, footer {
		padding: 15px;
	}

	.column-left {
		width: 100%;
		padding: 0px;
		padding-bottom: 40px;
	}
	.column-right {
		width: 100%;
		padding: 0px;
		padding-bottom: 40px;
	}

	.column-left p.index, .column-right p.index {
		max-width: 100%;
		margin: auto;
	}

	.column {
		padding: 0px;
	}

	td {
		padding: 10px 10px 10px 10px;
	}

	footer {
		padding-bottom: 150px;
	}

	.social {
		width: 100%;
		text-align: center;
		padding-bottom: 10px;
	}

	.contact {
		width: 100%;
		text-align: center;
	}
}


