body {
  font-family: "Roboto", sans-serif;
  /*font-size: 1.1em;*/
}

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

header {
  background-color: #13294b;
  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 {
  display: flex;
}
header nav a {
  margin: 0 10px;
}
header nav a:hover {
  color: #2dccd3;
}

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

#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: #13294b;
  font-weight: 700;
}

#news .item img {
  margin: 10px 0;
}

#news .item p {
  color: #2dccd3;
  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: #13294b;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#faq li.open .q {
  color: #fff;
  text-decoration: underline;
}

#faq .q {
  cursor: pointer;
}

#faq .q:hover {
  color: #13294b;
  text-decoration: underline;
}

#faq .a {
  color: #FFF;
  line-height: 150%;
  margin-top: 10px;
}

#gallery {
  padding: 50px 20px;
  text-align: center;
}

#gallery h1 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 25px;
}

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;
  }
  #banner h1 {
    font-size: 35px;
  }
  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 */