/* - -- --- Gallery --- -- - */

@keyframes pulse {
  0% {
    background-color: #0066a6; /* Start color */
    transform: scale(1);
  }
  50% {
    background-color: #003150; /* Middle color */
    transform: scale(1.1);
  }
  100% {
    background-color: #0066a6; /* End color */
    transform: scale(1);
  }
}

.btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  animation: pulse 2s infinite; /* 2s duration, infinite repetition */
}

body,
* {
  font-family: "Nunito", sans-serif;
  font-size: 105%;
}

p {
  font-size: 16px;
}

ul.gallery {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

ul.gallery li {
  list-style: none;
  margin: 15px 40px 0 0;
  padding: 0;
}

ul.gallery li a.galleryImage {
  display: block;
  padding: 0 0 16px 0;
  background: url(../img/shadow.png) no-repeat center bottom;
}

ul.gallery li a img {
  display: block;
}

ul.gallery li p {
  font-size: 11px;
  font-style: italic;
  line-height: 1.5em;
  font-weight: normal;
  margin: 0;
  color: #666;
}

a {
  text-decoration: none;
  color: #e4bd00;
}

a:hover,
a:focus {
  text-decoration: underline;
  outline: none;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer {
  height: 56px;
  line-height: 56px;
  background: #ffd82a;
  color: #0066a6;
  margin: 0 auto;
  background: url(../img/footer.jpg) no-repeat center bottom;
  text-align: center;
  font-weight: bold;
  color: white;
}

.container {
  max-width: 1096px;
  margin: 0 auto;
  padding: 0 15px;
}

.message {
  padding: 15px 10px 5px 10px;
  text-align: center;
  background-color: #0066a6;
  color: white;
}

.content {
  display: flex;
  justify-content: space-around;
}

.content .sidebar {
  min-width: 300px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sidebar {
  text-align: center;
}

.show-on-mobile {
  display: none;
}

@media (max-width: 676px) {
  .show-on-mobile {
    display: block;
  }

  .content {
    display: block;
  }

  .content > div {
    width: 100%;
  }
}

.btn {
  background: #0066a6;
  -webkit-border-radius: 14;
  -moz-border-radius: 14;
  border-radius: 14px;
  font-weight: bold;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  margin: 20px 0;
  -webkit-box-shadow: 0px 8px 5px -6px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 8px 5px -6px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 8px 5px -6px rgba(0, 0, 0, 0.25);
}

.btn:hover {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}
