* {
  box-sizing: border-box;
}

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

body.locked {
  overflow: hidden;
  height: 100vw;
}

.sr-only, footer .footer-top .gform_wrapper label, main .gform_wrapper .gfield_label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  z-index: 1;
}
@media (orientation: landscape) {
  .section {
    min-height: 50vh;
  }
}
.section.section--row {
  flex-direction: row;
}
.section.section--columns {
  flex-direction: column;
}
.section .section--half {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .section .section--half {
    width: 50%;
  }
}

.flex-row, .main-navigation .social {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.two-up > * {
  display: block;
  width: 50%;
}

.full-height {
  height: 100%;
  min-height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.full-height .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #feffff;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  text-align: center;
  padding: 5px 0;
  margin: 0;
}

.four-up > * {
  display: block;
  width: 25%;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1320px) {
  .container {
    padding: 0 25px;
  }
}

.desktop {
  display: none;
}

@media (min-width: 767px) {
  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }
}
body {
  margin: 0;
  padding: 0;
  color: #5f6263;
  font-family: din-2014, sans-serif;
  font-size: 18px;
  line-height: 32px;
}

b,
strong {
  font-weight: bold;
}

label {
  display: block;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: bold;
}

h1,
h2 {
  font-size: 36px;
  line-height: 45px;
  font-weight: 300;
  margin: 15px 0 30px;
}

p {
  font-size: 18px;
  line-height: 32px;
  margin: 0 0 1.5em;
}

header {
  background: #fff;
  position: relative;
  z-index: 1;
}
header .container {
  position: relative;
}
header .brand__logo {
  display: block;
  width: 331px;
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: 90px;
  z-index: 10;
  left: 10%;
}
@media (min-width: 414px) and (max-width: 991px) {
  header .brand__logo {
    left: 50%;
    margin-left: -165.5px;
  }
}
@media (min-width: 991px) {
  header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    padding: 60px 0;
    width: 100%;
    z-index: 10;
  }
  header .brand__logo {
    position: static;
    top: auto;
    left: auto;
  }
}

.main-navigation {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(108, 172, 228, 0.81);
  z-index: 99;
  overflow-x: scroll;
}
.main-navigation .nav-inner {
  margin-top: 22vh;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 991px) {
  .main-navigation .nav-inner {
    margin-top: 15vh;
  }
}
.main-navigation .social {
  margin-top: 50px;
}
.main-navigation .social li {
  display: inline-block;
  text-align: center;
  padding: 10px 0;
}
.main-navigation .social li a {
  color: #fff;
  transition: 0.15s ease-in-out transform;
}
.main-navigation .social li a:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.main-navigation form {
  position: relative;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .main-navigation form {
    padding: 0 20px;
  }
}
.main-navigation form:before {
  font-size: 45px;
  line-height: 72px;
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 22px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .main-navigation form:before {
    font-size: 28px;
    line-height: 54px;
  }
}
.main-navigation form label {
  display: inline-block;
  width: 475px;
  padding-right: 20px;
}
@media (max-width: 991px) {
  .main-navigation form label {
    width: calc(100% - 80px);
  }
}
.main-navigation form input[type=search] {
  display: inline-block;
  background: transparent;
  height: 72px;
  line-height: 45px;
  font-size: 45px;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  max-width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}
.main-navigation form input[type=search]:focus {
  outline: #fff auto 5px;
}
.main-navigation form input[type=submit] {
  display: none;
}
.main-navigation .menu {
  display: block;
}
@media (max-width: 991px) {
  .main-navigation .menu {
    padding: 0 20px;
  }
}
.main-navigation .menu li {
  display: block;
}
.main-navigation .menu li a {
  font-size: 45px;
  line-height: 72px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  width: auto;
}
@media (max-width: 991px) {
  .main-navigation .menu li a {
    font-size: 28px;
    line-height: 54px;
  }
}
.main-navigation .menu li a:before {
  content: "\f061";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 22px;
  transition: 0.15s ease-out all;
  visibility: hidden;
}
.main-navigation .menu li.has-dropdown a:before {
  visibility: visible;
}
.main-navigation .menu li.open a:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.main-navigation .menu li.open ul {
  max-height: 50vh;
}
@media (min-width: 991px) {
  .main-navigation .menu li:hover a:before {
    margin-right: 30px;
  }
}
.main-navigation .menu li ul {
  width: 100%;
  float: none;
  position: relative;
  padding-left: 71px;
  top: auto;
  left: auto;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-in-out all;
}
.main-navigation .menu li ul li {
  margin-left: 0;
  transition: 0.15s ease-out margin-left;
}
.main-navigation .menu li ul li a {
  font-size: 18px;
  line-height: 30px;
}
.main-navigation .menu li ul li a:before {
  content: none;
}
.main-navigation .menu li ul li:hover {
  margin-left: 8px;
}

button.menu-toggle {
  display: block;
  background-color: white;
  width: 72px;
  height: 72px;
  box-shadow: 2px 3.464px 7px 0px rgba(0, 0, 0, 0.2);
  font-family: din-2014, sans-serif;
  color: #888b8d;
  padding: 35px 20px 0;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  position: absolute;
  right: 0;
  top: 10px;
  border: none;
  cursor: pointer;
  z-index: 100;
}
@media (max-width: 1320px) {
  button.menu-toggle {
    right: 20px;
  }
}
button.menu-toggle .burger {
  position: absolute;
  top: 19px;
  height: 2px;
  width: 32px;
  left: 20px;
  display: block;
  background: #5f6263;
  transition: 0.15s ease-in-out all;
}
button.menu-toggle .burger:before, button.menu-toggle .burger:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 32px;
  display: block;
  background: #5f6263;
  transition: 0.15s ease-in-out all;
}
button.menu-toggle .burger:before {
  top: 7px;
}
button.menu-toggle .burger:after {
  top: 14px;
}
@media (max-width: 991px) {
  button.menu-toggle {
    position: relative;
    margin-left: calc(50vw - 56px);
    box-shadow: none;
    top: 0;
    right: auto;
  }
}
button.menu-toggle.active .burger {
  top: 24px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  color: #fff;
}
button.menu-toggle.active .burger:before {
  display: none;
}
button.menu-toggle.active .burger:after {
  top: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.section--hero {
  position: relative;
  z-index: 0;
  min-height: 100vh;
}
@media (max-width: 991px) {
  .section--hero {
    min-height: calc(100vh - 130px);
    background-attachment: initial !important;
  }
}
@media (max-width: 800px) and (orientation: landscape) {
  .section--hero {
    min-height: 500px;
  }
}
.section--hero .page-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}
.section--hero .arrow {
  position: absolute;
  bottom: 10vh;
  left: 50%;
  margin-left: -50px;
}
.section--hero .play-button {
  color: #fff;
  position: absolute;
  top: 25vh;
  left: 50%;
  margin-left: -27px;
}
@media (min-width: 991px) {
  .section--hero .play-button {
    top: 40vh;
  }
}
.section--hero video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

@media (max-width: 991px) {
  .section--welcome {
    align-items: flex-start;
  }
}
.section--welcome .icon {
  display: block;
  text-decoration: none;
  color: #5f6263;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  padding: 40px 0 20px;
}
.section--welcome .icon img,
.section--welcome .icon i {
  display: block;
  margin: 0 auto 30px;
  color: #6cace4;
  transition: 0.3s ease-in-out color;
}
.section--welcome .icon:hover i {
  color: #b5bd00;
}
.section--welcome .icon + .icon {
  border-left: 1px solid #e0e0e0;
}
@media (max-width: 991px) {
  .section--welcome .flex-row, .section--welcome .main-navigation .social, .main-navigation .section--welcome .social {
    background: #6cace4;
    margin: 0 -25px;
    width: calc(100% + 50px);
  }
  .section--welcome .icon {
    padding: 15px 0;
  }
  .section--welcome .icon i {
    color: #fff;
    margin: 0;
  }
  .section--welcome .icon span {
    display: none;
  }
  .section--welcome .icon + .icon {
    border: none;
  }
}
.section--welcome .welcome--text {
  text-align: center;
  color: #5f6263;
  margin-top: 65px;
  padding-top: 65px;
  border-top: 1px solid #e0e0e0;
}
.section--welcome .welcome--text .welcome--text-inner {
  max-width: 865px;
  margin-left: auto;
  margin-right: auto;
}
.section--welcome .welcome--text .arrow {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .section--welcome .welcome--text {
    margin-top: 0;
    border: none;
  }
}

.section--featured-event {
  padding: 30px 0;
}
@media (max-width: 991px) {
  .section--featured-event {
    background-attachment: initial !important;
  }
}

.home .section--slider {
  margin-bottom: 0;
  min-height: 0;
}
.home .section--slider .slick-prev {
  left: 50px;
}
.home .section--slider .slick-next {
  right: 50px;
}
.home .section--slider .full-height {
  position: relative;
  min-height: 500px;
}
.home .section--slider .full-height img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .section--slider .slick-prev,
.home .section--slider .slick-next {
  z-index: 99;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: 0.15s ease-in-out background;
}
@media (max-width: 767px) {
  .home .section--slider .slick-prev,
.home .section--slider .slick-next {
    top: 45%;
    width: 50px;
    height: 50px;
  }
}
.home .section--slider .slick-prev:before,
.home .section--slider .slick-next:before {
  color: #fff;
  background: transparent;
}
.home .section--slider .slick-prev:hover,
.home .section--slider .slick-next:hover {
  background: rgba(255, 255, 255, 0.5);
}
.home .section--slider .slick-next {
  background: rgba(150, 150, 150, 0.25);
}
@media (max-width: 767px) {
  .home .section--slider .slick-next {
    right: 10px;
  }
}
.home .section--slider .slick-next:hover {
  background: rgba(150, 150, 150, 0.5);
}
.home .section--slider .slick-prev {
  background: rgba(150, 150, 150, 0.25);
}
@media (max-width: 767px) {
  .home .section--slider .slick-prev {
    left: 10px;
  }
}
.home .section--slider .slick-prev:hover {
  background: rgba(150, 150, 150, 0.5);
}
.home .section--slider .slick-prev:before {
  content: "\f060";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.home .section--slider .slick-next:before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.home .section--slider .slick-dots {
  bottom: 25px;
}
@media (min-width: 991px) {
  .home .section--slider .slick-dots {
    bottom: 100px;
    width: 50vw;
    left: 50vw;
  }
}
.home .section--slider .slick-dots li {
  margin: 0 7.5px;
}
.home .section--slider .slick-dots li button {
  width: 18px;
  height: 18px;
  padding: 0;
}
.home .section--slider .slick-dots li button:before {
  width: 18px;
  height: 18px;
  content: "";
  opacity: 1;
  display: inline-block;
  border-radius: 50%;
  background: #c0c2c3;
  box-sizing: border-box;
}
.home .section--slider .slick-dots li.slick-active button:before {
  opacity: 1;
  background: transparent;
  border: 2px solid #c0c2c3;
}

.modal.home-page-popup {
  background: rgba(0, 0, 0, 0.8);
}

.modal.home-page-popup .modal-content {
  position: absolute;
  width: 50%;
  left: 50%;
  top: 50%;
  background: #fff;
  padding: 50px 30px;
  min-width: 320px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.modal.home-page-popup .modal-content .modal-close {
  position: absolute;
  color: #6cace4;
  transition: 0.15s ease-in-out color;
  top: 20px;
  right: 20px;
}

@media (min-width: 991px) {
  .modal.home-page-popup .modal-content {
    padding: 50px;
  }
}
.page-content {
  padding: 65px 0;
}
@media (min-width: 991px) {
  .page-content {
    padding: 100px 0;
  }
}
.page-content.narrow {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.page-content.narrow form {
  max-width: 414px;
  margin-left: auto;
  margin-right: auto;
}
.page-content.narrow form .gform_footer input[type=submit] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.page-content.normal {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.page-content.center {
  text-align: center;
}
.page-content p > label {
  margin-bottom: -27px;
}

.page main {
  background: #f9f9f9;
}
.page main h2 {
  margin-bottom: 0.5em;
}

.page-template-art .section--welcome .welcome--text {
  border-top: 0;
  margin-top: 0;
}

.explore-grid {
  min-height: 0;
  flex-wrap: wrap;
}
.explore-grid h3 {
  font-weight: 300;
  font-size: 28px;
  line-height: 32px;
  max-width: 90%;
  margin: 0 auto 15px;
}
@media (min-width: 991px) {
  .explore-grid h3 {
    max-width: 60%;
    font-size: 60px;
    line-height: 52px;
  }
}
.explore-grid .full-height {
  order: unset !important;
  padding: 0 !important;
  min-height: 50vw;
  height: auto;
}
.explore-grid .full-height > * {
  min-height: 50vw;
}
@media (min-width: 991px) {
  .explore-grid .full-height {
    min-height: 100vh;
  }
  .explore-grid .full-height > * {
    min-height: 100vh;
  }
}
.explore-grid.shrinker .full-height {
  min-height: 50vh;
}
.explore-grid.shrinker .full-height > * {
  min-height: 50vh;
}
.explore-grid .half-height {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  flex: 1;
}
@media (min-width: 991px) {
  .explore-grid .half-height {
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
  }
}
.explore-grid .half-height > * {
  width: 50vw;
  min-height: 50vw;
}
@media (min-width: 991px) {
  .explore-grid .half-height > * {
    width: 100%;
    height: 50%;
    min-height: 0;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}
@media (max-width: 991px) {
  .modal {
    overflow-x: scroll;
  }
}
.modal .flex-row, .modal .main-navigation .social, .main-navigation .modal .social {
  height: 100vh;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 991px) {
  .modal .flex-row, .modal .main-navigation .social, .main-navigation .modal .social {
    flex-direction: row;
  }
}
.modal.feature-content {
  height: 100vh;
  background: #fff;
  width: 100vw;
}
.modal.feature-content img {
  position: static;
  opacity: 1;
  top: auto;
  left: auto;
}
.modal.feature-content img,
.modal.feature-content .modal-content {
  height: 100vh;
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal.feature-content .modal-content {
  padding: 65px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: scroll;
}
.modal.feature-content .modal-content .modal-close {
  position: absolute;
  top: 50px;
  right: 50px;
  color: #6cace4;
  transition: 0.15s ease-in-out color;
}
.modal.feature-content .modal-content .modal-close:hover {
  color: #b5bd00;
}
@media (min-width: 1100px) {
  .modal.feature-content .modal-content .modal-close {
    top: 100px;
    right: 100px;
  }
}
@media (max-width: 991px) {
  .modal.feature-content img,
.modal.feature-content .modal-content {
    height: auto;
    width: 100%;
  }
  .modal.feature-content .modal-content {
    padding: 20px;
  }
  .modal.feature-content .modal-content .modal-close {
    top: 20px;
    right: 20px;
  }
}

.section--map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section--map-legend {
  padding: 80px 0;
  counter-reset: legend;
}
.section--map-legend .flex-row, .section--map-legend .main-navigation .social, .main-navigation .section--map-legend .social {
  align-items: flex-start;
}
@media (max-width: 991px) {
  .section--map-legend .flex-row, .section--map-legend .main-navigation .social, .main-navigation .section--map-legend .social {
    flex-direction: column;
  }
  .section--map-legend .flex-row > *, .section--map-legend .main-navigation .social > *, .main-navigation .section--map-legend .social > * {
    width: 100%;
  }
}
.section--map-legend .legend-col {
  padding-right: 40px;
}
.section--map-legend .legend-col li {
  counter-increment: legend;
  color: #989898;
  padding-left: 35px;
  position: relative;
  list-style: none;
  font-size: 18px;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section--map-legend .legend-col li span {
  font-size: 18px;
}
@media (max-width: 990px) {
  .section--map-legend .legend-col li span {
    margin-bottom: 0 !important;
  }
}
.section--map-legend .legend-col li:before {
  content: counter(legend) ". ";
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.section--map-legend .legend-col li.parking:before {
  content: "";
  width: 25px;
  height: 25px;
  margin-left: -3px;
  background: url("../img/map-icons/marker-parking.svg") no-repeat center center/contain;
}
.section--map-legend .legend-col li.trams:before {
  content: "";
  width: 25px;
  height: 25px;
  margin-left: -3px;
  background: url("../img/map-icons/marker-tram.svg") no-repeat center center/contain;
}
.section--map-legend .legend-col li.infokiosks:before {
  content: "";
  width: 25px;
  height: 25px;
  margin-left: -3px;
  background: url("../img/map-icons/marker-infokiosk.svg") no-repeat center center/contain;
}
.section--map-legend .legend-col li.restrooms:before {
  content: "";
  width: 25px;
  height: 25px;
  margin-left: -3px;
  background: url("../img/map-icons/marker-restroom-new.svg") no-repeat center center/contain;
}
.section--map-legend .legend-col li.route:before {
  content: "";
  width: 25px;
  height: 25px;
  margin-left: -3px;
  background: url("../img/map-icons/marker-route.svg") no-repeat center center/contain;
}


.home .section--hero,
.error404 .section--hero {
  background: url("/wp-content/uploads/2019/09/welcome-plaza.jpg") no-repeat center center;
  background-size: cover;
}
@media (min-width: 1025px) {
  .home .section--hero,
.error404 .section--hero {
    background-attachment: fixed;
  }
}

.section--featured-event {
  background: url("/wp-content/themes/kelp-child/assets/img/fireworks.jpg") no-repeat center center;
  background-size: cover;
}
@media (min-width: 1025px) {
  .section--featured-event {
    background-attachment: fixed;
  }
}

#swipebox-title {
  font-size: 16px;
  line-height: 22px;
  padding: 10px;
}
@media (min-width: 1025px) {
  #swipebox-title {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.section--news .flex-row, .section--news .main-navigation .social, .main-navigation .section--news .social,
.section--events .flex-row,
.section--events .main-navigation .social,
.main-navigation .section--events .social {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 0;
  border-bottom: 1px solid #e0e0e0;
  flex-direction: column;
}
.section--news .flex-row img, .section--news .main-navigation .social img, .main-navigation .section--news .social img,
.section--events .flex-row img,
.section--events .main-navigation .social img,
.main-navigation .section--events .social img {
  margin-bottom: 25px;
}
.section--news .flex-row label, .section--news .main-navigation .social label, .main-navigation .section--news .social label,
.section--events .flex-row label,
.section--events .main-navigation .social label,
.main-navigation .section--events .social label {
  display: block;
  margin-bottom: 10px;
}
.section--news .flex-row .article-content p, .section--news .main-navigation .social .article-content p, .main-navigation .section--news .social .article-content p,
.section--news .flex-row .event-content p,
.section--news .main-navigation .social .event-content p,
.main-navigation .section--news .social .event-content p,
.section--events .flex-row .article-content p,
.section--events .main-navigation .social .article-content p,
.main-navigation .section--events .social .article-content p,
.section--events .flex-row .event-content p,
.section--events .main-navigation .social .event-content p,
.main-navigation .section--events .social .event-content p {
  margin-top: 10px;
}
@media (min-width: 991px) {
  .section--news .flex-row, .section--news .main-navigation .social, .main-navigation .section--news .social,
.section--events .flex-row,
.section--events .main-navigation .social,
.main-navigation .section--events .social {
    padding: 65px 0;
    flex-direction: row;
  }
  .section--news .flex-row img, .section--news .main-navigation .social img, .main-navigation .section--news .social img,
.section--events .flex-row img,
.section--events .main-navigation .social img,
.main-navigation .section--events .social img {
    margin-bottom: 0;
  }
  .section--news .flex-row .article-content, .section--news .main-navigation .social .article-content, .main-navigation .section--news .social .article-content,
.section--news .flex-row .event-content,
.section--news .main-navigation .social .event-content,
.main-navigation .section--news .social .event-content,
.section--events .flex-row .article-content,
.section--events .main-navigation .social .article-content,
.main-navigation .section--events .social .article-content,
.section--events .flex-row .event-content,
.section--events .main-navigation .social .event-content,
.main-navigation .section--events .social .event-content {
    width: 66.66%;
    padding-right: 20%;
  }
  .section--news .flex-row .featured, .section--news .main-navigation .social .featured, .main-navigation .section--news .social .featured,
.section--events .flex-row .featured,
.section--events .main-navigation .social .featured,
.main-navigation .section--events .social .featured {
    width: 24%;
  }
}
.section--news .flex-row label a, .section--news .main-navigation .social label a, .main-navigation .section--news .social label a,
.section--events .flex-row label a,
.section--events .main-navigation .social label a,
.main-navigation .section--events .social label a {
  color: #5f6263;
  text-decoration: none;
}
.section--news .flex-row label a:hover, .section--news .main-navigation .social label a:hover, .main-navigation .section--news .social label a:hover,
.section--events .flex-row label a:hover,
.section--events .main-navigation .social label a:hover,
.main-navigation .section--events .social label a:hover {
  text-decoration: underline;
}
.section--news .flex-row .article-title, .section--news .main-navigation .social .article-title, .main-navigation .section--news .social .article-title,
.section--news .flex-row .event-title,
.section--news .main-navigation .social .event-title,
.main-navigation .section--news .social .event-title,
.section--events .flex-row .article-title,
.section--events .main-navigation .social .article-title,
.main-navigation .section--events .social .article-title,
.section--events .flex-row .event-title,
.section--events .main-navigation .social .event-title,
.main-navigation .section--events .social .event-title {
  margin-top: 0;
  margin-bottom: 10px;
}
.section--news .flex-row .article-title a, .section--news .main-navigation .social .article-title a, .main-navigation .section--news .social .article-title a,
.section--news .flex-row .event-title a,
.section--news .main-navigation .social .event-title a,
.main-navigation .section--news .social .event-title a,
.section--events .flex-row .article-title a,
.section--events .main-navigation .social .article-title a,
.main-navigation .section--events .social .article-title a,
.section--events .flex-row .event-title a,
.section--events .main-navigation .social .event-title a,
.main-navigation .section--events .social .event-title a {
  color: #5f6263;
  text-decoration: none;
}
.section--news .flex-row .article-title a:hover, .section--news .main-navigation .social .article-title a:hover, .main-navigation .section--news .social .article-title a:hover,
.section--news .flex-row .event-title a:hover,
.section--news .main-navigation .social .event-title a:hover,
.main-navigation .section--news .social .event-title a:hover,
.section--events .flex-row .article-title a:hover,
.section--events .main-navigation .social .article-title a:hover,
.main-navigation .section--events .social .article-title a:hover,
.section--events .flex-row .event-title a:hover,
.section--events .main-navigation .social .event-title a:hover,
.main-navigation .section--events .social .event-title a:hover {
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 70px 0;
  padding: 0;
}
.pagination li {
  list-style: none;
}
.pagination li a {
  text-decoration: none;
}
.pagination li .page-number {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 2px solid #6cace4;
  background: transparent;
  margin: 0 7.5px;
  text-align: center;
  color: #5f6263;
  font-size: 14px;
  line-height: 34px;
  transition: 0.15s ease-in-out all;
}
.pagination li .page-number.current, .pagination li .page-number.active, .pagination li .page-number:hover {
  background: #6cace4;
  color: #fff;
}
.pagination li .page-next,
.pagination li .page-previous {
  font-size: 14px;
  color: #5f6263;
  margin: 0 17.5px;
  vertical-align: middle;
}
.pagination li .page-next:hover,
.pagination li .page-previous:hover {
  text-decoration: underline;
}
.pagination li .page-next .fa,
.pagination li .page-previous .fa {
  margin: 0 3px;
  vertical-align: middle;
}

.single .section--hero {
  flex-direction: column;
  padding: 0 20px;
  position: relative;
}
.single .section--hero:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.single .section--hero label {
  color: #fff;
}
.single .section--news .container,
.single .section--events .container {
  max-width: 850px;
}
.single .post-content {
  margin: 65px 0;
}

.event h2 {
  margin: 0 0 10px;
}
.event .featured {
  position: relative;
}
.event .featured .date {
  position: absolute;
  text-align: center;
  background: #6cace4;
  width: 72px;
  height: 72px;
  color: #fff;
  padding-top: 10px;
}
.event .featured .date .date-number {
  display: block;
  font-size: 36px;
  line-height: 38px;
}
.event .featured .date .date-month {
  display: block;
  font-size: 18px;
  line-height: 18px;
  margin-top: -3px;
}
@media (max-width: 991px) {
  .event .btn, .event main .gform_wrapper .gform_footer input.button, main .gform_wrapper .gform_footer .event input.button,
.event main .gform_wrapper .gform_footer input[type=submit],
main .gform_wrapper .gform_footer .event input[type=submit],
.event main .gform_wrapper .gform_page_footer input.button,
main .gform_wrapper .gform_page_footer .event input.button,
.event main .gform_wrapper .gform_page_footer input[type=submit],
main .gform_wrapper .gform_page_footer .event input[type=submit], .event input[type=submit] {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 991px) and (max-width: 1200px) {
  .event .event-content {
    padding-left: 8.5%;
  }
}

.single-poi .section--news .container {
  max-width: 976px;
}
.single-poi .section--news .post-content {
  text-align: center;
}

.input, main .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
main .gform_wrapper textarea, main .gform_wrapper select,
main .gform_wrapper select.medium, input[type=text],
input[type=search],
input[type=email],
input[type=number] {
  background: #fff;
  padding: 18px;
  width: 100%;
  border: 1px solid #e0e0e0;
  -webkit-appearance: none;
}

input[type=submit] {
  margin: 1em 0;
}

main .gform_wrapper select,
main .gform_wrapper select.medium {
  width: 100% !important;
  color: #757575;
  padding-left: 18px !important;
  height: 62px;
  border-radius: 0;
  margin-left: 0 !important;
}
main .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) ::-webkit-input-placeholder,
main .gform_wrapper textarea ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #888b8d;
}
main .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) ::-moz-placeholder,
main .gform_wrapper textarea ::-moz-placeholder {
  /* Firefox 19+ */
  color: #888b8d;
}
main .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) :-ms-input-placeholder,
main .gform_wrapper textarea :-ms-input-placeholder {
  /* IE 10+ */
  color: #888b8d;
}
main .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) :-moz-placeholder,
main .gform_wrapper textarea :-moz-placeholder {
  /* Firefox 18- */
  color: #888b8d;
}

.arrow {
  display: block;
  height: 110px;
  width: 100px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  margin-left: auto;
  margin-right: auto;
}
.arrow img {
  display: block;
  margin: 23px auto 0;
  -webkit-animation: bounce 2s 3s infinite cubic-bezier(0.28, 0.84, 0.42, 1);
          animation: bounce 2s 3s infinite cubic-bezier(0.28, 0.84, 0.42, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.section--grid .content {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section--grid .content h2 {
  padding: 0 80px;
}
@media (min-width: 991px) {
  .section--grid:nth-of-type(even) .full-height:first-child {
    order: 2;
  }
  .section--grid:nth-of-type(even) .full-height:last-child {
    order: 1;
  }
}
@media (max-width: 991px) {
  .section--grid .content {
    padding: 30px;
  }
  .section--grid .content h2 {
    padding: 0;
  }
  .section--grid .flex-row, .section--grid .main-navigation .social, .main-navigation .section--grid .social {
    flex-direction: column;
  }
  .section--grid .flex-row .full-height, .section--grid .main-navigation .social .full-height, .main-navigation .section--grid .social .full-height {
    padding: 30px 0;
    width: 100%;
  }
}
@media (max-width: 991px) and (min-width: 991px) {
  .section--grid .flex-row .full-height, .section--grid .main-navigation .social .full-height, .main-navigation .section--grid .social .full-height {
    min-height: 50vh;
  }
}

@media (min-width: 991px) {
  .section--grid {
    min-height: 100vh;
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
  }
  .section--grid.shrinker {
    min-height: 50vh;
  }
  .section--grid:first-of-type, .section--grid:nth-child(4) {
    border-top: 15px solid #fff;
  }
  .section--grid:last-of-type {
    border-bottom: 15px solid #fff;
  }
}

.section--slider {
  display: block;
}
.section--slider .slider {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section--slider .slider h2 {
  padding: 0 80px;
}
.section--slider.full-width .slide {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .section--slider .slider {
    padding: 30px;
  }
  .section--slider .slider h2 {
    padding: 0;
  }
  .section--slider .flex-row, .section--slider .main-navigation .social, .main-navigation .section--slider .social {
    flex-direction: column;
  }
  .section--slider .flex-row .full-height, .section--slider .main-navigation .social .full-height, .main-navigation .section--slider .social .full-height {
    padding: 30px 0;
    min-height: 50vh;
    width: 100%;
  }
}

.feature {
  background: #000;
  display: flex;
  flex-direction: column;
  color: #fff;
  flex: 1;
  position: relative;
  text-align: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 15px solid #fff;
}
.feature h3,
.feature span {
  position: relative;
  z-index: 100;
  transition: 0.3s ease-in-out opacity;
}
.feature .view-feature {
  text-transform: uppercase;
}
.feature:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 15px solid transparent;
  transition: 0.3s ease-in-out border;
  box-sizing: border-box;
  z-index: 10;
}
.feature:after {
  content: "\f00e";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 48px;
  color: inherit;
  vertical-align: middle;
  color: #6cace4;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
  opacity: 0;
  transition: 0.3s ease-in-out opacity;
}
.feature img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  transition: 0.3s ease-in-out opacity;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature:hover:before {
  border-color: #6cace4;
}
.feature:hover h3,
.feature:hover span {
  opacity: 0;
}
.feature:hover:after,
.feature:hover img {
  opacity: 1;
}

.featured-content {
  width: 832px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  background: #fff;
  padding: 35px;
  box-shadow: 5px 8.66px 9px 0px rgba(0, 0, 0, 0.3);
  text-align: center;
}
@media (min-width: 991px) {
  .featured-content {
    padding: 65px;
  }
  .featured-content h1 {
    margin-left: 40px;
    margin-right: 40px;
  }
}
.featured-content p {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.featured-content i {
  display: block;
  margin-bottom: 20px;
  color: #6cace4;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  10% {
    -webkit-transform: scale(1.1, 0.9) translateY(0);
            transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    -webkit-transform: scale(0.9, 1.1) translateY(-15px);
            transform: scale(0.9, 1.1) translateY(-15px);
  }
  50% {
    -webkit-transform: scale(1.05, 0.95) translateY(0);
            transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    -webkit-transform: scale(1, 1) translateY(-3px);
            transform: scale(1, 1) translateY(-3px);
  }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  10% {
    -webkit-transform: scale(1.1, 0.9) translateY(0);
            transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    -webkit-transform: scale(0.9, 1.1) translateY(-15px);
            transform: scale(0.9, 1.1) translateY(-15px);
  }
  50% {
    -webkit-transform: scale(1.05, 0.95) translateY(0);
            transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    -webkit-transform: scale(1, 1) translateY(-3px);
            transform: scale(1, 1) translateY(-3px);
  }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}
.btn, input[type=submit], main .gform_wrapper .gform_footer input.button,
main .gform_wrapper .gform_footer input[type=submit],
main .gform_wrapper .gform_page_footer input.button,
main .gform_wrapper .gform_page_footer input[type=submit] {
  display: inline-block;
  border-width: 2px;
  border-color: #6cace4;
  border-style: solid;
  border-radius: 36px;
  width: 244px;
  max-width: 100%;
  color: #5f6263;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 18px;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.15s ease-in-out all;
  background: transparent;
}
.btn:hover, input[type=submit]:hover, main .gform_wrapper .gform_footer input.button:hover,
main .gform_wrapper .gform_footer input[type=submit]:hover,
main .gform_wrapper .gform_page_footer input.button:hover,
main .gform_wrapper .gform_page_footer input[type=submit]:hover {
  background: #6cace4;
  color: #fff;
}

.clear-btn {
  display: block;
  font-size: 18px;
  line-height: 32px;
  color: #6cace4;
  text-transform: uppercase;
  margin: 15px 0;
  text-decoration: none;
  transition: 0.15s ease-in-out color;
}
.clear-btn:hover {
  color: #b5bd00;
}

footer {
  padding: 30px 0;
  background: #f9f9f9;
  position: relative;
  z-index: 1;
}
@media (min-width: 991px) {
  footer {
    padding: 72px 0 65px;
  }
}
footer .menu {
  display: inline-block;
}
footer .menu li {
  display: inline-block;
  margin-right: 20px;
}
footer .menu li a {
  color: #888b8d;
  text-decoration: none;
}
footer .menu li a:hover {
  text-decoration: underline;
}
@media (max-width: 991px) {
  footer .footer-top .menu {
    margin-bottom: 25px;
  }
}
footer .footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 991px) {
  footer .footer-top {
    flex-direction: column;
  }
}
footer .footer-top .menu li a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
}
@media (max-width: 991px) {
  footer .footer-top .menu li {
    text-align: center;
    display: block;
    margin: 10px 0;
  }
}
footer .footer-top .gform_wrapper {
  width: 390px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 991px) {
  footer .footer-top .gform_wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}
footer .footer-top .gform_wrapper form {
  position: relative;
  margin: 0;
}
footer .footer-top .gform_wrapper .gform_footer {
  margin: 0;
  padding: 0;
}
footer .footer-top .gform_wrapper .top_label div.ginput_container,
footer .footer-top .gform_wrapper .gfield {
  margin: 0;
}
footer .footer-top .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  width: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  height: 54px;
  padding-left: 18px;
  font-size: 16px;
  margin: 0;
}
footer .footer-top .gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0;
}
footer .footer-top .gform_wrapper .gform_footer input[type=submit] {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  font-family: din-2014, sans-serif;
  font-size: 16px;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #fff;
  background: #6cace4;
  margin-top: 10px;
  padding-top: 11px;
  padding-bottom: 11px;
  border-radius: 0;
  transition: 0.15s ease-out background;
}
footer .footer-top .gform_wrapper .gform_footer input[type=submit]:hover {
  background: #b5bd00;
}
@media (min-width: 991px) {
  footer .footer-top .gform_wrapper .gform_footer {
    height: 15px;
  }
  footer .footer-top .gform_wrapper .gform_footer input[type=submit] {
    height: 36px;
    position: absolute;
    right: 0;
    top: 9px;
    background: transparent;
    color: #888b8d;
    border-left: 1px solid #e0e0e0;
    width: 110px;
    padding: 0;
    margin: 0;
    transition: 0.15s ease-in-out color;
  }
  footer .footer-top .gform_wrapper .gform_footer input[type=submit]:hover {
    background: transparent;
    color: #6cace4;
  }
}
footer .footer-top .gform_wrapper.gform_validation_error .gform_footer input[type=submit] {
  top: 143px;
}
footer .footer-top .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}
footer .footer-bottom {
  font-size: 12px;
  padding: 10px 0;
  border-top: 1px solid #e0e0e0;
  font-weight: bold;
  color: #888b8d;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .footer-bottom .menu {
  margin-left: 20px;
  font-weight: normal;
}
footer .footer-bottom .menu li a {
  font-size: 12px;
}
footer .footer-bottom .menu .icon a {
  width: 32px;
  height: 32px;
  display: inline-block;
  white-space: nowrap;
  text-indent: -9999px;
  overflow: hidden;
  position: relative;
}
footer .footer-bottom .menu .icon a:before {
  width: 32px;
  height: 32px;
  display: inline-block;
  content: "\f368";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
footer .footer-bottom .social {
  margin: 5px 0 0;
  padding: 0;
}
@media (min-width: 991px) {
  footer .footer-bottom .social {
    justify-content: flex-end;
  }
}
footer .footer-bottom .social li {
  display: inline-block;
  margin-left: 50px;
  text-align: center;
  list-style: none;
}
@media (max-width: 991px) {
  footer .footer-bottom .social li {
    margin-top: 20px;
  }
  footer .footer-bottom .social li:first-child {
    margin-left: 0;
  }
}
footer .footer-bottom .social li a {
  color: #5f6263;
  transition: 0.15s ease-in-out color;
}
footer .footer-bottom .social li a:hover {
  color: #6cace4;
}
footer .footer-bottom .bottom-left,
footer .footer-bottom .bottom-right {
  width: 50%;
}
@media (max-width: 991px) {
  footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  footer .footer-bottom .bottom-left,
footer .footer-bottom .bottom-right {
    width: 100%;
  }
}

.instagram {
  position: relative;
  background: #fff;
  z-index: 1;
}
.instagram .ri-grid {
  margin: 0;
}
.instagram .ri-grid ul li a {
  background-size: cover;
}
.instagram .flex-contain {
  display: flex;
  flex-direction: row;
}
.instagram .ig-post {
  display: block;
  width: 25%;
  height: 0;
  padding-bottom: 25%;
  border: 15px solid #fff;
}
