/* Desktop view Equipment.html */

html {
	height:100%;
}
  
body {
	height:100%;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}
  
section {
	height: 100%;
}
  
.page {
	min-height: 100%; 
	display: grid; 
	grid-template-rows: auto 1fr auto;
}

.under-menu {
	height: 0px;
}

.page-header {
	background-color: black;
	padding-top: 5px;
	padding-bottom: 5px;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	position: fixed;
	width: 100%;
	z-index: 100;
}

.page-footer {
	color: #666;
	font-size: 12px;
	background-color: black;
	padding: 20px;
	text-align: center;
}

.nowrap {
	white-space: nowrap;
}

/* Menu and Navigation */

nav {
	background-color: black;
	height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}

.logo {
	width: 100px;
}

.menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}
  
.menu li {
	margin: 0 10px;
}
  
.menu a {
	display: block;
	color: white;
	text-align: center;
	text-decoration: none;
	padding: 14px 16px;
	font-size: 18px;
	font-weight: bold;
	transition: background-color 0.3s ease;
	border-radius: 10px;
}
  
.menu a:hover {
	background-color: rgb(45, 210, 111);
	color: black;
	border-radius: 10px;
}
  
.hamburger {
	display: none;
}
  
.line {
	width: 25px;
	height: 3px;
	background-color: white;
	margin: 5px;
}


/* Section 1 */

.s1 {
	background-image: url('../images/eq.jpg');
	padding-bottom: 40vw;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: rgba(0, 0, 0, 0.5);
	background-blend-mode: multiply;
}

.s1-title {
	position: absolute;
	width: 100%;
	margin-top: 10vw;
	font-size: 5vw;
	font-weight: bold;
	color: #ffffff;
}

.s1-title, .about-title, .equipment-title, .products-title, .contacts-title, .center {
	text-align: center;
}

.s1-subtitle {
	font-size: 2vw;
	font-weight: normal;
}


/* Features */

.flex-container {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	padding: 0vw 10vw 0vw 10vw;
  }
  
.flex-item-left {
	padding: 10px;
	flex: 50%;
	box-sizing: border-box;
}

.flex-item-right {
	padding: 10px;
	flex: 50%;
	box-sizing: border-box;
}

/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 900px) {
	.flex-item-right, .flex-item-left {
	flex: 100%;
	box-sizing: border-box;
}
}


/* Equipment key features */

.key-table {
    display: table;
}

.key-row {
    display: table-row;
}

.key-cell-l {
    display: table-cell;
	font-weight: bold;
	width: 30vw;
}

.key-cell-r {
    display: table-cell;
	width: 70vw;
}


/* Equipment features detailed table */

.detailed-features {
	background-color: #efefef;
}

.table {
    display: table;
    width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	padding: 60px 0px 60px 0px;
}

.row {
    display: table-row;
}

.cell {
    display: table-cell;
    padding: 5px;
    width: 50%;
}

.cell-icon {
	width: 50px;
}

.cell-title {
	text-align: center; 
	margin: 5px auto 5px auto;
}

/* Flow chart */
.flowchart-container {
	background-color: #fff; 
	margin-top: 40px;
}

.flowchart-img {
	width: 50%; 
	margin: auto; 
	padding: 40px 0px 60px 0px;
}

.flowchart-img img{
	width: 100%;
}


/* Contacts */

.contacts {
	background-color: #f8f8f8;
	padding: 40px 20vw 40px 20vw;
}


/* Small screen */

@media only screen and (max-width: 900px) {
	.menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background-color: #333;
	}

	.menu li {
		margin: 10px;
	}
	
	.hamburger {
		display: block;
		cursor: pointer;
	}
	
	.hamburger:hover .line {
		background-color: #ddd;
	}
	
	.menu.active {
		display: flex;
	}

	.s1 {
		padding-bottom: 75%;
	}

	.s1-title {
		margin-top: 25vw;
		font-size: 6vw;
	}

	.s1-subtitle {
		font-size: 5vw;
	}

	.flowchart-img {
		width: 90%;
		margin: auto; 
		padding: 0px 0px 20px 0px;
	}

	.contacts {
		padding: 40px 40px 40px 40px;
	}


}

.red {border: 1px solid red;}