
.progress-container {
  width: 100%;
  height: 2px;
  background: white;
  position: fixed;
  top: 50px;
  z-index: 999;
}

.progress-bar {
  height: 2px;
  background: brown;
  width: 0%;
}

.content {
  padding: 100px 0;
  margin: 50px auto 0 auto;
  width: 80%;
}

@media only screen and (max-width: 992px) {
    .progress-container {
        top: 49px;
        height: 3px;
    }

    .progress-bar {
        height: 3px;
    }
}
