@font-face {
    font-family: 'DINOT'; /*a name to be used later*/
    src: url("/static/DINOT.otf"); /*URL to font*/
}
@font-face {
    font-family: 'DINOT-Bold'; /*a name to be used later*/
    src: url("/static/DINOT-Bold.otf"); /*URL to font*/
}

body {
	background-color: var(--main-background);
	background-size: cover;
	background-position: center;
	color: var(--text);
	font-family: DINOT;
	margin: 0;
	width: 100%;
	min-height: 100vh;
}

div.main {
	display: grid;
	place-content: center;
}
.sub{
	width: 100vw;
	display: flex;
	justify-content: space-between;
}
.sub-title{
	margin: 20px;
	font-family: DINOT-Bold;
}
.lastsub{
	width: 95px;
}

.center-child {
	display: grid;
	height: 90vh;
}
.header{
	background-color: var(--header);
	display: static;
	position: sticky;
	top: 0;
	z-index: 1000;
}
div.flex-this{
	display:flex;
	gap: 10px;
	justify-content: flex-start;
}
.content{
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}
.titleicon{
	background: url("/static/burger.png");
	height: 40px;
	width: 40px;
	background-size: contain;
	border: none;
	margin: 10px;
	margin-right: 0px;
	cursor: pointer;
}
.ptftitle{
	border: none;
	background-color: var(--header-button);
	color: var(--text);
	cursor: pointer;
	padding: 17px;
	font-family: DINOT-Bold;
	font-size: 20px;
	transition: all 100ms ease;
}
.ptftitle:hover{
	background-color: var(--header-button-hover);
	color: var(--header-button-hover-text);
}
.linkhome{
	border: none;
	background-color: var(--header-button);
	color: var(--text);
	cursor: pointer;
	padding: 17px;
	font-family: DINOT;
	font-size: 20px;
	transition: all 100ms ease;
}
.linkhome:hover{
	background-color: var(--header-button-hover);
	color: var(--header-button-hover-text);
}
.linkcloud{
	border: none;
	background-color: var(--header-button);
	color: var(--text);
	cursor: pointer;
	padding: 17px;
	font-family: DINOT;
	font-size: 20px;
	transition: all 100ms ease;
}
.linkcloud:hover{
	background-color:  var(--header-button-hover);
	color: var(--header-button-hover-text);
}
.back{
	border: none;
	background-color: var(--header);
	border-radius: 12px;
	color: var(--text);
	cursor: pointer;
	padding: 12px;
	font-family: DINOT;
	font-size: 15px;
	margin-top:8px;
	margin-left:8px;
	transition: all 100ms ease;
}
.back:hover{
	background-color: var(--header-button-hover);
	color: var(--header-button-hover-text);
}
.hlf2>button{
	border: none;
	background-image: linear-gradient(rgba(0,0,0,0) 60%, rgba(0,0,0,0.5)100%),url("/static/3d/hlf2/HLF.png");
	background-size: cover;
	background-position: center;
	color: #ffffff;
	border-radius: 12px;
	width: 300px;
	height: 300px;
	position: relative;
	transition: all 300ms ease;
}
.hlf2>button:hover{
	transform: scale(110%,110%);
	box-shadow: 0 0 20px rgba(0,0,0,.5);
	z-index: 999;
}
.hlf2>button>span{
	position: absolute;
	bottom: 10px;
	left: 10px;
	font-size: 20px;
	font-family: DINOT-Bold;
}
.table{
	max-width: 1000px;
	position: relative;
	margin: auto;
	padding-top: 20px;
	padding-bottom: 75px;
	padding-left: 8px;
}
.table>table{
	position: absolute;
}
.c1{
	font-family: DINOT-Bold;
	padding-right: 10px;
}
.downloadbtn{
	max-width: 1000px;
	position: relative;
	margin: auto;
	padding-left: 8px;
}
.downloadbtn>a>button{
	position: absolute;
	border: none;
	background-color: var(--header);
	border-radius: 12px;
	color: var(--text);
	cursor: pointer;
	padding: 12px;
	font-family: DINOT;
	font-size: 15px;
	transition: all 100ms ease;
}
.downloadbtn>a>button:hover{
	background-color: var(--header-button-hover);
	color: var(--header-button-hover-text);
}
.bottom{
	height: 100px;
}

/*SLIDESHOW*/


* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding-top: 20px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 12px 12px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 12px 0 0 12px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.2);
}

/* Caption text */
.text {
  color: #ffffff;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 28px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: var(--dot);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: var(--dot-hover);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
