* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Tahoma, Geneva, sans-serif; 
  position: relative;
}

/* Background bands */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  flex-direction: column;
}

.top {
  background-color: #393939;
  height: 205px;
}

.middle {
  background-color: #272727;
  height: 380px;
}

.bottom {
  background-color: #393939;
  height: 100%;
}

/* Main content area */
.main-content {
  max-width: 1000px;
  margin: 90px auto auto auto;
  padding: 5px 15px 15px 15px;
  background-color: rgba(100, 100, 100, .5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.26+above9++above6);
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

/* Menu */
.menu ul {
  list-style: none;
  display: flex;
  padding-left: 20px;
  justify-content: left;
  gap: 40px;
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 13px;
  font-weight: bold;
}

.menu a:hover {
  color: #000;
}

/* Hero image */
.hero {
  text-align: center;
  margin: 25px 0 40px 0;
}

.hero img {
  width: 100%;
  border-radius: 6px;
}

/* Text box */
.text-box {
  text-align: left;
  padding: 40px 40px 135px 40px;
  background-color: #fff;
  border-radius: 6px;
}

.text-box h1 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #666666;
}

.text-box p {
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: normal;
  color: #626262;
}

/* Slides */
.w3-col {
	float: left;
	width: 100%
}

.w3-col.s4 {
	width: 12.48%
}

.w3-row-padding,.w3-row-padding>.w3-col {
	padding: 0 8px
}

.w3-opacity,.w3-hover-opacity:hover {
	opacity: 0.60
}

.w3-opacity-off,.w3-hover-opacity-off:hover {
	opacity: 1
}

.w3-section {
	margin-top: 16px;
}
