* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
	/*background-color: lightgray;*/
	scroll-snap-type: y proximity;
	overflow-y: scroll;
	height: 100vh;
}
.snap{
	scroll-snap-align: start;
}
body {
	font-family: "Share Tech Mono", monospace;
	line-height: 1;
	font-size: 2rem;
	font-weight: 400;
	color: black
	overflow-x: hidden;
	
}
.logo{
	width: 100%;
	background-color: black;
}
.logo-container {
	max-width: 95rem;
	margin: 0 auto;
	padding: 1.5rem;
	/*display: grid;
	grid-template-columns: 1fr 4fr 1fr;*/*
}
/*-----------------navbar----------------*/

.nav-mobile{
	font-size: 4rem;
	color: white;
	background-color: none;
	cursor: pointer;
	display: none;
}
.nav-open .main-nav{
	display: block;
}
.nav-open .icon-mobile[name="close-outline"]{
	display: block;
}
.nav-open .icon-mobile[name="menu-outline"]{
	display: none;
}
.icon-mobile[name="close-outline"]{
	display: none;
}
.icon-mobile[name="menu-outline"]{
	display: block;
}
.sticky{
	position: fixed;
	top: 0;
	width: 100%;
}
.extra-margin{
 margin-bottom: 5.2rem;
}
.extra-padding{
	margin-top: 5.2rem;
}
.navbar {
	padding: 1.5rem;
	background-color: rgba(54, 54, 54, 0.836);
	backdrop-filter: blur(10px);
	font-size: 2.2rem;
	display: flex;
	justify-content: center;
	gap: 4rem;
	z-index: 1;
}
.navbar a {
	/*font-family: "Major Mono Display", monospace;*/
	/*font-family: "Anonymous Pro", monospace;*/
	font-family: "Share Tech Mono", monospace;
	text-decoration: none;
	color: white;
}
.navbar a:link,
.navbar a:visited {
	color: white;
	transition: color 200ms;
}
.navbar a:hover,
.navbar a:active {
	color: black;
}

/*----------hero----------*/
.hero-background{
	/*height:85rem;*/
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.500), rgba(0, 0, 0, 0)), url("img/heroComp.jpg");
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
	/*display: flex;
	align-items: flex-start;
	justify-content: start;*/
}
.typing-container{
	max-width: 80%;
	position: relative;
	margin: 0 auto;
	top: 25%;
}
.hero-text{
	color: white;
	text-shadow: black 1px 0 10px;
}
.typing{
	/*position: relative;
	left: 10rem;
	top: 25%;*/
}
.typing::after{
	content: "";
	position: absolute;
	width: 1px;
	height: 30px;
	border-right: 7px solid white;
	animation: blink 0.5s infinite ease;
}
@keyframes blink {
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

/*----------Products----------*/
.products{
	background-color: rgb(0, 0, 0);	
}
.products a{
	text-decoration: none;
}
.products-title-container{
	display: flex;
	justify-content: center;
	padding: 13rem 0 5.3rem;
}
.products-title{
	color: white;
}
.product1-background{
	/*height:85rem;*/
	height: 100vh;
	background-image: url("img/systems/tkFront.jpg");
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
	justify-content: start;
	
}
.product1-text{
	font-size: 3.5rem;
	color: white;
	text-shadow: black 1px 0 10px;
	margin-left: 4rem;
	margin-bottom: 4rem;
  
}
.product2-background{
	/*height:85rem;*/
	height: 100vh;
	background-image: url("img/Koe/KOE7VactrolLeft.jpg");
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
	justify-content: start;
}
.product2-text{
	font-size: 3.5rem;
	color: white;
	text-shadow: black 1px 0 10px;	
	margin-left: 4rem;
	margin-bottom: 4rem;
}

.product3-background{
	/*height:85rem;*/
	height: 100vh;
	background-image: url("img/Transmon/transmonWhiteLeft.JPG");
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
	justify-content: start;
}
.product3-text{
	font-size: 3.5rem;
	color: white;
	text-shadow: black 5px 4px 4px;	
	margin-left: 4rem;
	margin-bottom: 4rem;
}

.product4-background{
	/*height:85rem;*/
	height: 100vh;
	background-image: url("img/Tottem/tottemUp.JPG");
	background-size:cover;
	background-position:center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
	justify-content: start;
}
.product4-text{
	font-size: 3.5rem;
	color: white;
	text-shadow: black 5px 4px 4px;	
	margin-left: 4rem;
	margin-bottom: 4rem;
}

/*------------------About-----------------*/
.about-container{
	background-color: rgb(233, 233, 233);
}
.about-title-container{
	display: flex;
	justify-content: center;
	padding: 13rem 0 3rem;
}
.about-row1{
	padding: 5rem 15rem 15rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: max-content;
	gap: 4rem;
	align-items: center;
	text-align: justify;
}
.video-documental-container{
	max-width: 82rem;
}
.video-documental{
	position: relative;
	padding-bottom: 75%;
	height: 0;
}
.video-documental iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-stopmotion-container{
	max-width: 82rem;
}
.video-stopmotion{
	position: relative;
	padding-bottom: 75%;
	height: 0;
}
.video-stopmotion iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*-------------------social----------------*/

.social{
	/*background-color: coral;*/
}
.social-title-container{
	display: flex;
	justify-content: center;
	padding: 10rem 0 3rem;
}
.social-icons-container{
	max-width: 50rem;
	margin: 0 auto;	
	padding: 3rem 1rem 10rem;
	display: flex;
	font-size: 6rem;
	justify-content: space-between;
}
.social-icons:link,
.social-icons:visited{
	color: black;
	transition: color 200ms;
}
.social-icons:hover,
.social-icons:active{
	color: rgb(83, 83, 83);
}
/*-------------------contact---------------*/
.contact{
	background-color: rgb(199, 199, 199);
}
.contact-title-container{
	display: flex;
	justify-content: center;
	padding: 10rem 0 3rem;
}

.form-container{
	max-width: 50rem;
	margin: 0 auto;
	padding: 3rem 1rem 10rem;
}
.form div{
	padding: 1.5rem 0;
}
.form input, textarea, button{
	width: 100%;
	font-size: 2rem;
	padding: 0.5rem;
	font-family: inherit;
	color: inherit;
	border: none;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.178) 1px 2px 10px;
}
.form button{
	background-color:rgb(236, 236, 236);
}

/*--------------footer--------------*/
.footer{
	background-color: black;
}
.footer-container {
	color: white;
	display: flex;
	justify-content: center;
	
}
.footer-text{
	padding: 10rem 3rem 5rem;
}

/*----------------koe--------------*/
.const-container{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 5rem 0;
}
.icon-construction{
	font-size: 10rem;
	padding: 10rem 0;
}

/*----------media queries------------*/
/* 1200px / 16px = 75em*/
@media (max-width: 75em){
	.about-row1{
		grid-template-columns: 1fr;
		
	}
	.video-stopmotion-container{
		grid-row: 3;
	}
}
/* 700px / 16px = 44em*/
@media (max-width: 44em){
	.about-row1{
		padding: 5rem 7rem 10rem;		
	}
	.nav-mobile{
		display: block;
	}
	.navbar{
		flex-direction: column;
		align-items: center;
	}
	.main-nav{
		display: none;
	}
}
/* 550px / 16px = 34em*/
@media (max-width: 34em){
	.about-row1{
		padding: 5rem 5rem 10rem;		
	}	
}

