/* .mgl-container {
  background-image: url('../img/Background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 25px 0;
} */

.mgl-container {
  position: relative;
  padding: 25px 0;
}

.mgl-container:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-image: url('../img/Background.jpg');
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

.mgl-content {
  position: relative;
}