body {
  font-family: "Roboto", sans-serif;
  font-size: 1.05em;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

header {
  background-color: #069;
  padding: 20px;
}
header .container {
  display: flex;
  justify-content: space-between;
}
header a {
  color: #FFF;
  text-decoration: none;
}
header .logo {
  font-weight: 700;
}
header .icon {
  display: none;
}
header nav a {
  margin: 0 10px;
}

#map .container {
  width: 1000px;
  box-shadow: 0 40px rgba(0, 0, 0, 0.9);
  margin: 0 auto;
}

#formA {
  padding: 60px 40px;
}
#formA .container {
  max-width: 600px;
  box-shadow: 0 40px rgba(0, 0, 0, 0.9);
  padding: 20px;
  background-color: #999;
}
#formA h1 {
  font-size: 2em;
  margin-bottom: 30px;
}
#formA fieldset {
  margin-bottom: 10px;
  margin-bottom: 15px;
}
#formA fieldset label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.85em;
  color: #999;
}
#formA fieldset input, #formA fieldset textarea {
  width: 100%;
  border: none;
  background: #EEE;
  padding: 10px;
  border-radius: 10px;
}
#formA fieldset textarea {
  height: 80px;
}

#form {
  padding: 40px 20px;
}
#form .container {
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  padding: 40px 25px;
}
#form h1 {
  font-size: 2em;
  margin-bottom: 30px;
}
#form fieldset {
  margin-bottom: 15px;
}
#form fieldset label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.85em;
  color: #999;
}
#form fieldset input, #form fieldset textarea {
  width: 100%;
  border: none;
  background: #EEE;
  padding: 10px;
  border-radius: 10px;
}
#form fieldset textarea {
  height: 80px;
}
#form button {
  border: none;
  background-color: #000;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
}
#form button:hover {
  background-color: #069;
}

#banner {
  height: 500px;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
#banner h1 {
  color: #FFF;
  font-size: 2.25em;
}

#news .container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
}
#news .item {
  width: 33.33%;
  padding: 20px 10px;
}
#news .item h2 {
  font-size: 1.25em;
  color: #069;
  font-weight: 700;
}
#news .item img {
  margin: 10px 0;
}
#news .item p {
  color: #999;
  line-height: 150%;
}

#faq {
  background-color: #eee;
  text-align: center;
  padding: 50px 0;
}
#faq h1 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 20px;
}
#faq li {
  border-top: dashed 1px #CCC;
  padding: 25px 20px;
}
#faq li.open {
  background-color: #FFF;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
#faq .q {
  cursor: pointer;
}
#faq .q:hover, #faq li.open .q {
  color: #069;
  text-decoration: underline;
}
#faq .a {
  color: #999;
  line-height: 150%;
  margin-top: 10px;
}

#gallery {
  padding: 40px 0;
}

footer {
  background-color: #333;
  color: #CCC;
  text-align: center;
  padding: 20px;
}

@media (max-width: 540px) {
  header {
    text-align: center;
  }
  header .container {
    flex-wrap: wrap;
  }
  header .logo {
    font-size: 2em;
  }
  header .icon {
    display: block;
  }
  header .icon img {
    height: 32px;
  }
  header .icon .close {
    display: none;
  }
  header nav {
    margin-top: 15px;
    display: none;
    width: 100%;
  }
  header nav a {
    display: block;
    border-top: solid 1px #FFF;
    padding: 15px 0;
    margin: 0;
  }
  #news .container {
    padding: 0;
  }
  #news .item {
    width: 100%;
    padding: 50px 25px;
    border-bottom: dashed 1px #DDD;
  }
}/*# sourceMappingURL=style.css.map */