/* 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;
}
  
.hamburger {
	display: none;
}
  
.line {
	width: 25px;
	height: 3px;
	background-color: white;
	margin: 5px;
}


/* Section 1 */

.s1 {
	background-image: url('../images/refinery-bg.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;
}


/* About us */

.about {
	width: 90%;
	margin: auto;
}

.about-title2 {
	margin-top: 60px;
}

.about-txt {
	font-size: 2vw;
	line-height: 1.5;
	text-align: justify;
	padding: 10px 0px 10px 0px;
}

.iscc-link-from-products {
	position: relative;
	top: -60px;
}

/* Images  */

.image-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
.img-l {
	align-self: flex-start;
	width: 50%;
	border: 1px solid #ccc;
}

.img-r {
	align-self: flex-end;
	width: 50%;
	border: 1px solid #ccc;
}

.round-corners-left {
	border-radius: 20px 0 0 20px;
}

.round-corners-right {
	border-radius: 0 20px 20px 0;
}


/* 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;
	}

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

	.about-txt {
		font-size: 4vw;
	}

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


}