body, ul {
  margin: 0px;
  padding: 0px;
  font-family: 'Raleway', sans-serif;
}    
ul{
    padding-right: 3em;
}
a{
  color:#1e465f;
  text-decoration: none;
  transition: 0.3s;
}
ul a:hover {
  color: #ffffff;
  background-color: #1e465f ;
  border-radius: 30px;
}
.logo img{
  display: flex;
  width: 17em;
  height: auto;
  margin-left: 3em;
}
.logo img:hover{
  width: 19em;
  height: auto;
}
#header {
  box-sizing: border-box;
  height: 9em;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
}
#menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}
#menu a {
  display: block;
  padding: 0.5rem;
}
#btn-mobile {
  display: none;
}
@media (max-width: 850px) {
  #menu {
    display: block;
    position: absolute;
    width: 50vw;
    top: 144px;
    right: 0px;
    background: #FFFFFF;
    transition: 0.6s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
  }
  #nav.active #menu {
    height: calc(100vh - 144px);
    visibility: visible;
    overflow-y: auto;
  }
  .logo img{
    display: flex;
    width: 15em;
    height: auto;
  }
  .logo img:hover{
    width: 15em;
    height: auto;
  }
  #menu a {
    padding: 1rem 0;
    margin: 0 1rem;
    border-radius: 0;
  }
  #btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
  }
  #hamburger {
    border-top: 2px solid;
    width: 20px;
    color: #1e465f;

  }
  #hamburger::after,
  #hamburger::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
    color: #1e465f;
  }
  #nav.active #hamburger {
    border-top-color: transparent;

  }
  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }
  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
  a.start{
    display: none;
  }
  #map iframe{
      width: 70vw;
      height: 40vh;
  }
}@media (max-width: 600px) {
    .logo img{
        width: 11em;
        height: auto;
        margin-left: 0.2em;
    }
    h1{
      font-size: 48px;
    }
}