/* GENERAL */
/* ====================================================================================== */
* {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; /* This makes main grow to fill available space */
}


/* CUSTOMER */
/* ====================================================================================== */
.navbar {
  display: flex;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar li:first-child {
  margin-right: auto;
}

.navbar li {
  float: right;
  font-size: 18px;
}

.navbar a {
  display: block;
  color: black;
  text-align: center;
  padding: 0 16px;
  text-decoration: none;
}

.navbar li:hover {
  transform: scale(1.1);
  z-index: 1;
}

.navbar .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
}

.navbar .dropdown:hover .dropdown-content {
  display: block;
}

.index-main {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/index_background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.index-main-banner {
  background-color: rgba(50, 50, 50, 0.8);
  color: rgba(255, 202, 24,1);;
  margin: 5px 0;
  padding: 0 40px;
}

.index-main-content {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;

  color: white;
  line-height: 1.2;
}

.index-main-content p {
  margin: 0;
  line-height: 1.1;
}


.index-main-content-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: grey;
  color: white;
  text-decoration: none;
  width: 250px;
}

.index-main-content-button:hover {
  background-color: rgba(255, 202, 24,1);
}

.work_in_progress-main {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('images/work_in_progress.png');
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

/* footer {
  background-color: #222;
  color: white;
  padding: 10px 20px;
} */

.footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.footer li {
  float: left;
  font-size: 12px;
}

.footer li a {
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.footer li a:hover {
  transform: scale(1.1);
  z-index: 1;
}
