
body {
  margin: 0;
  background: #f0eeee;
}

.map {
width: 800px;
    height: 480px;
    margin: calc(40vh - 300px) auto;
    box-shadow: 0 0 40px -10px black;
    background: rgb(240, 240, 240);
    font-family: 'Montserrat', sans-serif;
    max-width: calc(100vw - 60px);
}

#map {
  width: 65%;
  height: 480px;
  display: inline-block;
  object-fit: cover;
  cursor: pointer;
}

.map-c {
  float: right;
  width: 35%;
  height: 100%;
  padding: 25px;
  box-sizing: border-box;
}

#map:hover {
  filter: brightness(90%);
  transition: 0.3s;
}


h1 {
  margin: 0;
  font-weight: normal;
  color: rgb(60, 60, 70);
  
}

p {
  font-size: 13px;
  margin-top: 20px;
  margin-bottom: 30px
}

.det {
  font-size: 12px;
  margin-bottom: 15px
}

i {
  float: left;
  font-size: 18px !important;
  margin: 0 8px 0 0
}

button {
  margin: 15px 4px;
  padding: 13px 9px;
  display: inline-block;
  cursor: pointer;
  background: none;
  color: #546973;
  border: 2px solid #78909C;
  transition: all 0.3s;
  border-radius: 8px;
  outline:0
}

button:hover {
  border-color: rgb(90, 90, 90);
  color: rgb(90, 90, 90)
}



.fa-envelope:after {
  content:'Email';
  margin:8px 13px 0
}

.det i:hover {
  color: #007bff;
  transition: 0.3s;
}

#navbarTogglerDemo01 img{
  height: 110px;
}

.navbar-expand-lg .navbar-collapse{
  padding: 0px 100px;
}

#meuNavbar {
  background-color: white !important;
}


@media only screen and (max-width: 720px) {
  .map {
    height: 450px;
    margin: calc(50vh - 225px) auto;
    overflow: hidden
  }
  #map {
    width: 100%;
    height: 200px;
  }
  .map-c {
    float: right;
    width: 100%;
  }
  button {
    float: right;
    margin-top: -75px
  }
}

@media only screen and (max-width: 460px) {
  p {
    display: none
  }
  h1 {
    margin-bottom:20px
  }
  button {
    float: none;
    margin-top: 10px
  }
  .det {
    margin-bottom: 9px
  }
}