html,
body {
  background: #fff;
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

a {
  -webkit-transition: all .5s;
  transition: all .5s;
}

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

.text-center {
  text-align: center;
}

figure {
  text-align: center;
}

figure figcaption {
  font-size: 14px;
  margin: .5rem auto;
}

#header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

@media (max-width: 767px) {
  #header {
    background: #c9ced1;
    width: 320px;
    height: 100%;
    left: -320px;
    -webkit-transition: left .5s;
    transition: left .5s;
  }
  #header.visible {
    left: 0;
  }
}

@media (min-width: 768px) {
  #header {
    left: 0;
    background: #49607a;
    width: 100%;
    height: 100px;
  }
}

#header .header-wrapper {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  #header .header-wrapper {
    display: block;
    height: 100%;
  }
}

@media (min-width: 768px) {
  #header .header-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1440px;
    height: 100px;
  }
}

#header #mobile-nav {
  background: rgba(0, 0, 0, 0.5);
}

#header #nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 20px;
}

#header #nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  #header #nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 768px) {
  #header #nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#header #nav li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

#header #nav a {
  display: block;
  text-decoration: none;
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  #header #nav a {
    color: #111111;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  #header #nav a {
    color: #c9ced1;
  }
}

#header #nav a:hover:not(.btn) {
  color: #fff;
}

#footer {
  background: #111;
}

@media (max-width: 767px) {
  #footer {
    text-align: center;
  }
}

#footer .footer-wrapper {
  margin: 0 auto;
  padding: 1rem;
  max-width: 1440px;
}

#footer a {
  color: #ddd;
}

#footer a:hover {
  color: #fff;
}

#footer p {
  font-size: .75rem;
  color: #fff;
}

#footer .publisher-logo {
  margin: 5px 0;
}

#social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  #social {
    margin: 0 3rem;
  }
}

@media (min-width: 768px) {
  #social {
    margin: 0 1rem;
  }
}

#social a {
  position: relative;
  height: 3rem;
  width: 3rem;
  display: block;
}

#social .icon-wrapper {
  display: block;
  overflow: visible;
  padding: 0 0 100%;
  position: relative;
  height: 0;
  width: 100%;
}

#social .icon-wrapper svg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  fill: #c9ced1;
  -webkit-transition: all .5s;
  transition: all .5s;
}

#social .icon-wrapper:hover svg {
  fill: white;
}

@media (max-width: 767px) {
  #social .icon-wrapper svg {
    fill: #111111;
  }
}

@media (min-width: 768px) {
  #social .icon-wrapper svg {
    fill: #c9ced1;
  }
}

section {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 767px) {
  section {
    height: auto;
  }
}

@media (min-width: 768px) {
  section {
    height: 90vh;
  }
}

section .section-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

section .section-background img {
  width: 100%;
  height: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

section .content-wrapper {
  padding: 5%;
  width: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

section .content {
  color: #111111;
  line-height: 1.4;
}

#hero {
  background: #c9ced1;
}

@media (max-width: 767px) {
  #hero {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    min-height: 40vh;
  }
  #hero h1 {
    font-size: 2.5vw;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
  }
  #hero h1 span {
    color: #fff;
    display: block;
    font-size: 5.5vw;
    line-height: 1.2;
  }
  #hero p {
    font-size: 5vw;
  }
  #hero .date-text {
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    font-size: 2.5vw;
    font-weight: bold;
  }
  #hero .hover-portrait {
    position: absolute;
    width: 40%;
    left: 50%;
    top: 95%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
}

@media (min-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    margin-left: 35%;
    font-size: 2.5vw;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    text-align: left;
    margin-bottom: 0;
  }
  #hero h1 span {
    font-size: 3.5vw;
    display: block;
  }
  #hero p {
    font-size: 2.5vw;
  }
  #hero .date-text {
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    font-size: 1.5vw;
    margin-left: 35%;
    text-align: left;
    font-weight: bold;
  }
  #hero .hover-portrait {
    position: absolute;
    width: 25%;
    left: 8%;
    top: 0%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
}

@media (min-width: 1400px) {
  #hero p {
    font-size: 20px;
  }
}

#about {
  height: auto;
}

#about h3, #about p, #about ul, #about li {
  color: #111;
}

@media (max-width: 767px) {
  #about h3 {
    font-size: 6.400vw;
  }
  #about p {
    font-size: 4.267vw;
  }
}

@media (min-width: 768px) {
  #about h3 {
    font-size: 1.944vw;
  }
  #about p {
    font-size: 1.429vw;
  }
}

@media (min-width: 1400px) {
  #about h3 {
    font-size: 28px;
  }
  #about p {
    font-size: 20px;
  }
}

#quote {
  height: auto;
}

#quote h3, #quote p, #quote ul, #quote li {
  color: #fff;
}

#quote .content-wrapper {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 767px) {
  #quote h3 {
    font-size: 6.400vw;
  }
  #quote p {
    font-size: 4.267vw;
  }
  #quote p.quote {
    font-size: 5vw;
    padding: 5%;
    text-align: center;
  }
}

@media (min-width: 768px) {
  #quote h3 {
    font-size: 1.944vw;
  }
  #quote p {
    font-size: 1.429vw;
  }
  #quote p.quote {
    font-size: 2.857vw;
    text-align: center;
    padding: 5%;
  }
}

@media (min-width: 1400px) {
  #quote h3 {
    font-size: 28px;
  }
  #quote p {
    font-size: 20px;
  }
  #quote p.quote {
    font-size: 40px;
    padding: 5%;
  }
}

#photo-gallery {
  margin: 0 auto;
  width: 90%;
}

#event-details {
  height: auto;
}

#event-details address {
  color: #fff;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  #event-details h3 {
    font-size: 6.400vw;
    color: #fff;
  }
  #event-details p {
    font-size: 4.267vw;
    color: #fff;
  }
}

@media (min-width: 768px) {
  #event-details h3 {
    font-size: 1.944vw;
    color: #fff;
  }
  #event-details p {
    font-size: 1.429vw;
    color: #fff;
  }
}

@media (min-width: 1400px) {
  #event-details h3 {
    font-size: 28px;
  }
  #event-details p {
    font-size: 20px;
  }
}

#event-details iFrame {
  width: 100%;
}

#tribute {
  height: auto;
}

#tribute h3, #tribute p {
  color: #fff;
}

@media (min-width: 768px) {
  #tribute .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #tribute .content > div:first-child {
    width: 35%;
  }
  #tribute .content > div:last-child {
    width: 65%;
  }
}

#contact {
  height: auto;
}

@media (min-width: 768px) {
  #contact .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #contact .content > div:first-child {
    width: 35%;
  }
  #contact .content > div:last-child {
    width: 60%;
  }
}

/* Elements */
@media (max-width: 767px) {
  .menu-btn {
    position: absolute;
    top: 2%;
    left: 2%;
    z-index: 15;
    padding: 2%;
    background: #233541;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
  }
}

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn svg {
  display: block;
}

.overlay-close-btn {
  display: none;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.overlay-close-btn.visible {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  z-index: 9;
  cursor: pointer;
}

.btn {
  border-radius: 10px;
  background-color: #fff;
  color: #333;
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding: 1.5em 2.2em;
  border: 0;
  opacity: 1;
  font-style: normal;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: nowrap;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: opacity 300ms cubic-bezier(0.694, 0, 0.335, 1), background-color 100ms cubic-bezier(0.694, 0, 0.335, 1), color 100ms cubic-bezier(0.694, 0, 0.335, 1);
  transition: opacity 300ms cubic-bezier(0.694, 0, 0.335, 1), background-color 100ms cubic-bezier(0.694, 0, 0.335, 1), color 100ms cubic-bezier(0.694, 0, 0.335, 1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ebebeb;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-clip-path: polygon(-1% 0%, 0% 0%, -25% 100%, -1% 100%);
  clip-path: polygon(-1% 0%, 0% 0%, -25% 100%, -1% 100%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -webkit-animation: opacityFallbackOut .5s step-end forwards;
  animation: opacityFallbackOut .5s step-end forwards;
  border-radius: 10px;
}

.btn:hover::before {
  -webkit-clip-path: polygon(0% 0%, 101% 0%, 101% 101%, 0% 101%);
  clip-path: polygon(0% 0%, 101% 0%, 101% 101%, 0% 101%);
  -webkit-animation: opacityFallbackIn 0s step-start forwards;
  animation: opacityFallbackIn 0s step-start forwards;
}

.btn span {
  position: relative;
  z-index: 1;
}

/* Animations */
@-webkit-keyframes opacityFallbackIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes opacityFallbackIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes opacityFallbackOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes opacityFallbackOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Utility */
.quote {
  font-family: 'Satisfy', cursive;
}

@media (max-width: 767px) {
  .quote {
    font-size: 5.5vw;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .quote {
    font-size: 3.5vw;
    text-align: center;
  }
}

.slick-prev, .slick-next {
  z-index: 100;
}

.slick-prev {
  left: -10px;
}

.slick-next {
  right: -10px;
}

.slick-dots li.slick-active button::before {
  color: #fff;
}

.slick-dots li button::before {
  color: #fff;
}

.slick-dots {
  position: absolute;
  bottom: -30px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  margin: 0 auto;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  border-radius: 5px;
}

.slick-slide img {
  border: 3px solid #eee;
  -webkit-box-shadow: 0 0 10px;
          box-shadow: 0 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 768px) {
  .slick-prev::before, .slick-next::before {
    font-size: 30px;
  }
}

#contact label {
  display: inline-block;
  margin: 8px 0;
  font-weight: 600;
}

#contact .form-label-block {
  display: block;
  margin: 8px 0;
  font-weight: 600;
}

#contact textarea, #contact input[type="text"], #contact input[type="email"], #contact input[type="number"] {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 8px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contact .form-row {
  padding: 8px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#contact .form-row > div {
  padding: 0 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 50%;
}

#contact input[type=submit] {
  padding: 8px;
  font-size: 1rem;
}

#contact .form-radio-buttons > label {
  display: block;
}

#contact .required-field {
  color: #cc0000;
}

#contact input.error {
  border-color: #cc0000;
}

#thank_you_message {
  display: none;
  text-align: center;
  padding: 16px;
  background: #eee;
  border-top: 3px solid #ccc;
}
/*# sourceMappingURL=main.css.map */