#map {
  height: 700px;
  width: 86%;
  margin-bottom: 20px;
  border-radius: 10px;
  margin: auto;
  position: relative;
  -webkit-box-shadow: 5px 5px 15px -1px rgba(0, 0, 0, 0.65);
  box-shadow: 5px 5px 15px -1px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.marker {
  background-image: url("../img/marker.png");
  background-size: cover;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
}

.marker_base {
  background-image: url("../img/marker_base.png");
  background-size: cover;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
}

.mapboxgl-popup-content {
  min-width: 200px;
}

body h2 {
    margin-bottom: 20px;
    color: #de9900;
    font-size: 30px;
    text-align: center;
    text-shadow: 3px 3px 3px #131212;
  }

/* Main Container */
.navegacao {
    background-color: rgba(2, 2, 2, 0);
  }
  .main-container {
    margin-top: 0px;
    position: relative;
    background-image: url("../img/mainbg.png");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    border-bottom: 2px solid #de9900;
    z-index: 0;
  }
  
  .main-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  
  /* FIM Main Container */
  /* FIM Main Container */
  /* FIM Main Container */
  /* FIM Main Container */
  
  /* Titulo Pagina */
  .pag-atual {
    left: 45px;
    font-size: 56px !important;
    bottom: 88px;
    position: absolute;
    color: #fff;
    z-index: 2;
    text-shadow: 4px 4px 4px #131212;
  }
  body {
    background-color: rgba(7, 7, 7, 0.8);
  }
  
  body:before {
    content: " ";
    background-image: url("../img/bgdestinations.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    display: block;
    object-fit: cover;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.35;
  }

  @media only screen and (max-width: 600px) {
    #map {
      height: 500px;
    }
}