body {
  margin: 0;
  padding: 0;
}

#map {
  top: 0;
  position: fixed;
  height: 100%;
  width: 64%;
}

#features {
  position: fixed;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 36%;
  font-family: sans-serif, Arial, Helvetica;
  overflow-y: scroll;
}

section {
  padding: 50px 50px;
  line-height: 25px;
  border-bottom: 1px solid #ddd;
  opacity: 0.25;
  font-size: 20px;
}

section.active {
  opacity: 1;
}

section:first-child {
  border-bottom: none;
  margin-top: 200px;
}

section:last-child {
  border-bottom: none;
  margin-bottom: 400px;
}

.marker {
  display: block;
  border: none;
  border-radius: 10%;
  cursor: pointer;
  padding: 0;
  background-size: 50px;
  color: "white";
  background-repeat: no-repeat;
}

i {
  font-size: 15px;
}

img {
  display: block;
  margin: 0px auto;
}

@media only screen and (max-width: 833px) {
  #map {
    width: 100%;
    height: 50%
  }

  #features {
    width: 100%;
    height: 50%;
  }
  section {
    padding: 25px 50px;
  }
  section:first-child {
    margin-top: 50px;
  }

  section:last-child {
    margin-bottom: 50px;
  }
}