#banner-section {
	background-image: url("/img/banner.webp");
	background-size: cover;
	background-position: center;
	padding: 3em 2em;
	color: white;
	font-size: 16pt;
	text-shadow: 0px -1px 20px black;
}

#slogan {
	font-size: 24pt;
}

section {
	padding: 1em 2em;
	margin: 0;
}

#about-videos {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#about-videos video {
	width: 25em;
	margin: 0.5em;
}

#companies {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	gap: 0.2em;
}

.company {
	max-width: 100px;
	max-height: 100px;
}

#about-section p, #contact-section p {
	margin-left: 2em;
	margin-right: 2em;
}

.center {
	margin-left: auto;
	margin-right: auto;
}

#process-container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-evenly;
	align-items: stretch;
}

.process-step {
	max-width: 320px;
  width: 31.5%;
	border: 1px solid black;
	border-radius: 5pt;
}

.process-step img {
	max-width: 320px;
	width: 100%;
	border-radius: 4pt 4pt 0 0;
}

.process-step h2 {
	text-align: center;
}

.process-step p {
	margin: 1em;
}

@media (max-width: 530px) {
	#about-videos video {
		width: calc(100% - 2em);
	}
}

@media (max-width: 800px) {
	.company {
		max-width:  16%;
		max-height: 100px;
	}

  #process-container {
    flex-direction: column;
  }

  .process-step {
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
