body #main #content .section {
  padding: 20px;
}
body #main #content .section h1 {
  margin: 0 0 15px 0;
}
body #main #content .section:nth-of-type(2n) {
  background-color: blue;
  color: white;
}
body #main #content .section:nth-of-type(2n) h1 {
  color: white;
}
body #main #content .section.gallery .image-container {
  width: 100%;
  text-align: center;
  overflow: hidden;
  height: 320px;
  transition: height 500ms;
  font-size: 0;
}
body #main #content .section.gallery .image-container.show-all {
  height: auto;
}
body #main #content .section.gallery .image {
  width: 300px;
  height: 300px;
  background-size: cover;
  margin: 10px;
  display: inline-block;
}
body #main #content .section.gallery {
  position: relative;
}
body #main #content .section.gallery .button {
  width: 50px;
  height: 50px;
  font-size: 50px;
  line-height: 45px;
  background-color: yellow;
  color: black;
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 25px);
  bottom: -26px;
  cursor: pointer;
  box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.7);
}
body #main #content .section.gallery .button.hidden {
  display: none;
}
body #main #content .section.gallery .button#hideButton {
  line-height: 40px;
}
body {
  margin: 0;
  display: inline-block;
  min-width: 100%;
  max-width: 100%;
}
body * {
  font-family: "Comic Sans MS";
}
body #main {
  margin-top: 430px;
}
body a {
  text-decoration: none;
  color: #000;
}
body a.link {
  color: pink;
}
body #footer {
  width: 100%;
  text-align: center;
}
body #footer .sponsor {
  display: inline-block;
  width: 200px;
  height: 100px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 10px;
}
body p {
  padding: 0;
  margin: 0;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  color: #004C98;
}
body h2 {
  padding: 20px;
  margin: 0;
}
body #content {
  text-align: center;
}
body #content .link-container {
  width: 100%;
  padding: 10px 0;
  display: inline-block;
}
body #content .link-container a {
  color: white;
  background-color: #004c98;
  border-radius: 30px;
  padding: 10px 30px;
  display: inline-block;
}
body .contrast {
  background-color: #004C98;
  color: #FFF;
  width: calc(100% - 40px);
  display: inline-block;
  margin: 20px 0;
  padding: 20px;
}
body .contrast h1, body .contrast h2, body .contrast h3, body .contrast h4, body .contrast h5, body .contrast h6, body .contrast a {
  color: #FFF;
}
body .contrast .link-container a {
  border: 3px solid #FFF;
}
body .contact span {
  width: 500px;
  display: inline-block;
}
body .contact span.radio input[type=radio] {
  display: inline;
  width: auto;
  margin: 0 10px;
}
body .contact .error {
  background-color: rgba(255, 0, 0, 0.5);
  border-color: #F00;
  color: #FFF;
}
body .contact .error::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
body .contact input {
  width: calc(100% - 24px);
}
body .contact input[type=submit] {
  width: 100%;
  background-color: #004c98;
  color: #FFF;
  cursor: pointer;
}
body .contact input, body .contact textarea {
  padding: 10px;
  border-radius: 20px;
  margin: 10px 0;
  border: 2px solid #004c98;
  font-size: 15px;
}
body .contact input:focus, body .contact textarea:focus {
  outline-width: 0;
}
body .contact .grow-wrap {
  width: 100%;
  display: grid;
}
body .contact .grow-wrap:after {
  content: attr(data-replicated-value) " ";
  white-space: pre-wrap;
  visibility: hidden;
}
body .contact .grow-wrap textarea {
  resize: none;
  overflow: hidden;
}
body .contact .grow-wrap textarea.error {
  background-color: rgba(255, 0, 0, 0.5);
  border-color: #F00;
  color: #FFF;
}
body .contact .grow-wrap textarea.error::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
body .contact .grow-wrap:after, body .contact .grow-wrap textarea {
  border: 2px solid #004c98;
  padding: 15px;
  font-size: 15px;
  grid-area: 1/1/2/2;
}
body .contact .error-message {
  display: none;
}
body .contact .error-message.visible {
  display: inline-block;
  font-size: 12px;
  top: -10px;
  position: relative;
  color: rgba(255, 0, 0, 0.8);
}
body .message {
  width: 100%;
  margin: 30px auto 0;
  display: inline-block;
  text-align: center;
}
body .message.success {
  color: green;
}
body .message.error {
  color: red;
}
body .message.error a {
  color: #004C98;
  text-decoration: underline;
}
body .home .song h3 {
  opacity: 0.6;
}
body .home .song audio {
  width: 700px;
  max-width: 100%;
  margin: 10px 0;
}
body .members .grid-item.invisible {
  display: none;
}
body .members .filter-container {
  width: 100%;
}
body .members .filter-container .filter {
  cursor: pointer;
  border: 3px solid #004c98;
  border-radius: 30px;
  display: inline-block;
  width: 110px;
  padding: 5px 0;
  margin: 5px;
}
body .members .filter-container .filter.selected {
  background-color: #004c98;
  color: #FFF;
}
body .songs .song {
  display: inline-block;
  vertical-align: top;
  margin: 20px;
}
body .songs .song h3 {
  opacity: 0.6;
}
body .songs .song audio {
  width: 700px;
  max-width: 100%;
  margin: 10px 0;
}
body .detail h2 {
  margin-bottom: 5px;
}
body .detail .subtitle {
  margin: 0 0 5px 0;
}
body .detail .image-container {
  margin-top: -40px;
  position: relative;
  display: inline-block;
}
body .detail .image-container img {
  max-width: 500px;
  max-height: 500px;
}
body .detail .image-container:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 40px;
  color: #FFF;
  background-color: rgba(0, 76, 152, 0.5);
  border-bottom-left-radius: 100%;
  text-align: right;
  font-size: 30px;
  line-height: 30px;
  padding-right: 10px;
  display: inline-block;
}
body .detail .content {
  max-width: 500px;
  display: inline-block;
}
body .grid {
  width: 100%;
}
body .grid .grid-item {
  width: 300px;
  margin: 20px;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
}
body .grid .grid-item h3 {
  margin: 10px 0;
}
body .grid .grid-item .grid-img {
  width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-color: #004c98;
  margin-bottom: 10px;
}
body .grid .grid-item .grid-img:after {
  content: "+";
  position: relative;
  right: calc(-50% + 20px);
  width: 30px;
  height: 40px;
  color: #FFF;
  background-color: rgba(0, 76, 152, 0.5);
  border-bottom-left-radius: 100%;
  text-align: right;
  font-size: 30px;
  line-height: 30px;
  padding-right: 10px;
  display: inline-block;
}
body .grid .grid-item.no-plus {
  cursor: auto;
}
body .grid .grid-item.no-plus .grid-img:after {
  display: none;
}
body .grid .grid-item .grid-item-text p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
body .navigation {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 76, 152, 0.5);
  height: 105px;
  display: inline-block;
  z-index: 100;
}
body .navigation:before {
  content: "";
  width: 100%;
  display: inline-block;
  background-color: #FD0;
  height: 30px;
}
body .navigation .logo {
  margin: -24px 0 0 15px;
  height: 130px;
  display: inline-block;
}
body .navigation .logo img {
  height: 100%;
}
body .navigation .social-button {
  position: relative;
  display: inline-block;
  height: 40px;
  top: -55px;
  margin-left: 20px;
}
body .navigation .social-button img {
  height: 40px;
}
body .navigation .navigation-buttons {
  display: inline-block;
  float: right;
  position: relative;
  z-index: 100;
}
body .navigation .navigation-buttons .button {
  display: inline-block;
  position: relative;
  z-index: 100;
}
body .navigation .navigation-buttons .button.current a {
  border-bottom: 5px solid #FD0;
}
body .navigation .navigation-buttons .button.first {
  position: relative;
}
body .navigation .navigation-buttons .button a {
  padding: 10px;
  margin: 10px;
  display: inline-block;
  text-decoration: none;
  color: #FFF;
  width: calc(100% - 40px);
}
body .navigation .navigation-buttons .button a:visited {
  color: #FFF;
}
body .navigation .navigation-buttons .button.social a {
  padding: 0;
  margin: 0;
}
body .navigation .navigation-buttons .button.social a img {
  width: 20px;
  height: 20px;
}
body .navigation .menu-button-container {
  position: absolute;
  top: 45px;
  right: 20px;
  display: none;
}
body .navigation .menu-button-container #menu-button {
  width: 60px;
  height: 45px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
body .navigation .menu-button-container #menu-button span {
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: #FFF;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
body .navigation .menu-button-container #menu-button span:nth-child(1) {
  top: 0px;
}
body .navigation .menu-button-container #menu-button span:nth-child(2), body .navigation .menu-button-container #menu-button span:nth-child(3) {
  top: 18px;
}
body .navigation .menu-button-container #menu-button span:nth-child(4) {
  top: 36px;
}
body .navigation .menu-button-container #menu-button.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
body .navigation .menu-button-container #menu-button.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
body .navigation .menu-button-container #menu-button.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
body .navigation .menu-button-container #menu-button.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
body .header-image {
  position: absolute;
  width: 100%;
  top: 30px;
}
body .header-image > div {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
}
body .slideshow-container {
  width: 100%;
  display: inline-block;
  margin: 20px 0;
  padding: 20px;
}

@media screen and (max-width: 1140px) {
  body .navigation .menu-button-container {
    display: initial;
  }
  body .navigation .navigation-buttons {
    width: 100%;
    height: 0;
    overflow: hidden;
  }
  body .navigation .navigation-buttons .button {
    display: block;
  }
  body .navigation.open {
    height: auto;
  }
  body .navigation.open .navigation-buttons {
    height: auto;
  }
  body .navigation.open .navigation-buttons .button {
    display: block;
  }
  body .navigation .logo {
    margin: -14px 0 0 5px;
    height: 110px;
  }
  body .navigation .social-button {
    top: -45px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 500px) {
  body #main #content {
    max-width: 100%;
  }
  body #main #content.detail {
    margin: 0 10px;
  }
  body #main #content.detail img {
    max-width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
