h1 {
	font-size: 3rem;
	font-family: monospace;
	text-align: center;
	margin: 150px 0 100px;
	padding: 5px;
	color: #fff;
	/*background-color: #039cdf;*/
	background: url(/src/images/plank_cropped.png);
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.5), 
		inset 0 0 5px 5px rgba(0,0,0,0.2);
	
	text-shadow: 0 0 2px rgba(0,0,0,0.7);
}
@media only screen and (max-width: 800px) {
	h1 {
		font-size: 2.5rem;
	}
}
@media only screen and (max-width: 550px) {
	h1 {
		font-size: 2rem;
	}
}
/*
h1 {
  position: relative;
  font-size: 3rem;
  font-family: monospace;
  text-align: center;
  padding: 30px 5px 60px;
  color: #fff;
  background-color: #039cdf;
  overflow: hidden;
}
h1::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
	rotate: 180deg;
	
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0,20 C120,40 240,0 360,10 480,20 600,50 720,40 840,30 960,10 1080,20 1200,30 1320,40 1440,20 L1440,0 L0,0 Z'/%3E%3C/svg%3E")
    no-repeat bottom center / cover;
}
*/
.company_details_navbar_top ul {
	list-style: none;
	max-width: 1000px;
	margin: 0 auto;
	/*background-color: #039cdf;*/
	color: #fff;
	font-weight: bold;
	line-height: 1.5;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	white-space: break-spaces;
	background: url(/src/images/plank_cropped.png);
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.5), 
		inset 0 0 5px 5px rgba(0,0,0,0.2);
	
	text-shadow: 0 0 2px rgba(0,0,0,0.7);
}
.company_details_navbar_top ul li {
	padding: 5px 10px;
	transition: all 0.15s ease;
}
.company_details_navbar_top ul li:hover {
	transform: scale(1.1);
}




.company_details {
	max-width: 1000px;
	/*margin: auto auto 150px;*/
	/*margin: auto 225px 150px auto; */
	margin: auto auto 150px;
	padding: 20px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: space-between;
	/*
	background-image: linear-gradient(
		to top right,
		rgba(255, 255, 255, 1) 30%,
		rgba(255, 255, 255, 0.5) 150%
  );
		*/
	background-image: linear-gradient(
		to right,
		rgba(255, 255, 255, 1) 40%,
		rgba(255, 255, 255, 0.5) 150%
  );
}
.company_details p {
	line-height: 1.5;
	margin: 20px 0;
}
.company_details h2 {
	margin: 50px 0 10px;
}
.company_details h3 {
	margin: 50px 0 0;
}
.company_details article ol {
	/*list-style: decimal;*/
	
	display: flex;
	flex-direction: column;
	/*gap: 30px;*/
	line-height: 1.5;
	margin: 40px 0 50px;
}
.company_details > article > ol li {
	margin-left: 7px;
}
.company_details article ul {
	list-style: none;
	/*list-style: square;*/
	line-height: 1.5;
	margin: 10px 0 10px 7px;
}
