@font-face {
    font-family: 'Suisse Intl';
    src: url('SuisseIntl-Italic.woff2') format('woff2'),
        url('SuisseIntl-Italic.woff') format('woff'),
        url('SuisseIntl-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Suisse Intl';
    src: url('SuisseIntl.woff2') format('woff2'),
        url('SuisseIntl.woff') format('woff'),
        url('SuisseIntl.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Suisse Intl Mono';
    src: url('suisseintlmono-regular-webfont.woff2') format('woff2'),
        url('suisseintlmono-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	font-family: 'Suisse Intl', Arial, sans-serif;
}

#header {
	position: relative;
	display: block;
	float: left;
	width: 250px;
	height: 250px;
	margin: calc(25px * 1.3);
}

body { 
	background-color: rgb(200, 200, 200);
	color: rgb(30, 30, 30);
	line-height: 1.3;
	height: 100%;
	width: 100%;
	/*max-width: 1600px;*/
	margin: 0 auto;
	padding-bottom: calc(25px * 1.3);
 }

p {
	max-width: 800px;


}
 .block {
 	position: relative;
 	display: block;
 	float: left;
 	width: calc(100% - 50px * 1.3);
 	height: auto;
 	padding: 0 calc(25px * 1.3);
 	
	clear: both;
 }

 .visible {
 	display: block;
 }

 .left {
 	position: relative;
 	display: block;
 	float: left;
 	height: 100%;
 	margin-right: 20px;
 	width: calc(50% - 20px);
 	margin-bottom: 20px;
 }
 .right {
 	position: relative;
 	display: block;
 	float: left;
 	height: 100%;
 	margin-left: 20px;
 	width: calc(50% - 20px);
 }
 .column {
 	position: relative;
 	display: block;
 	float: left;
 	/*background-color: red;*/
 	height: 100%;
 	width: 100%;
 	-webkit-column-count: 2;
 	    -moz-column-count: 2;
 	         column-count: 2;
 	-webkit-column-gap: 40px;
 	   -moz-column-gap: 40px;
 	        column-gap: 40px;
 }
 .column-block {
 	position: relative;
 	display: block;
 	height: 100%;
 	float: left;
 	break-inside: avoid;
 	padding-bottom: calc(25px * 1.3);
 }
 .content {
 	position: relative;
 	display: block;
 	float: left;
 	padding-top: calc(25px * 1.3);
 	display: none;
 	width: 100%;
 }

@media (max-width: 1000px) {
	.left, .right {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
	}
	.column {
		-webkit-column-count: 1;
		    -moz-column-count: 1;
		         column-count: 1;
	}
}

 h1, h2 {
 	font-weight: normal;
 	text-transform: uppercase;
 	clear: both;
 }
 h1 {
 	/*border-bottom: 1px solid rgb(166, 133, 255);*/
	border-top: 1px solid rgb(30, 30, 30);
	font-size: 34px;
 }
 h1.last {
 	border-bottom: 1px solid rgb(30, 30, 30);
 }
 h2 {
 	position: relative;
 	display: block;
 	float: left;
 	clear: both;
 	/*margin-top: 20px;*/
 	/*font-style: italic;*/
 	font-size: 25px;
 }

  p, table, ul, ol { 
 	font-size: 25px;
  }

  ul, ol table, p {
 	margin-bottom: calc(25px * 1.3);
 }
 p {
 	position: relative;
 	float: left;
 	display: block;
 	clear: both;
	width: 100%;
 }

 a {
	color: rgb(30, 30, 30);
	text-decoration: none;
	border-bottom: 1px solid rgb(30, 30, 30);
 }
 
 .row {
 	position: relative;
 	width: 100%;
 	float: left;
 	border-bottom: 1px solid rgb(30, 30, 30);
 	display: flex;
 	align-items: baseline;
 }

  .row:first-of-type {
 	border-top: 1px solid rgb(30, 30, 30);
 }
 .tab {
 	font-size: smaller;
 	font-family: 'Suisse Intl Mono';
 	position: relative;
 	width: 200px;
 	display: block;
 	float: left;
 	height: 100%;
 	text-transform: uppercase;
 	/*background-color: red;*/
 }
 .desc {
 	position: relative;
 	width: calc(100% - 200px);
 	display: block;
 	float: left;
 	height: 100%;
 	/*background-color: red;*/
 }
 .half {
 	position: relative;
 	width: 50%;
 	display: block;
 	float: left;
 	height: 100%;
 }
 *::selection {
 	background-color: rgba(50, 0, 255, 0.99);
 	color: white;
 }
 ul {
 	display: block;
 	position: relative;
 	float: left;
 	clear: both;
 	list-style-type: square;
 	list-style-position: inside;
 	float: left;
 }
 a.reveal {
 	width: 100%;
 	height: 100%;
 	display: block;
 	position: relative;
 	float: left;
 	border-bottom: none;
 }
 a.reveal:hover, 
 a.reveal:active,
 a.reveal:focus {
 	background: linear-gradient(180deg, rgb(0, 0, 255), rgb(30, 30, 30), rgb(255, 0,0));
 	color: rgb(200, 200, 200);
 }