
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: "Neue Haas Grotesk Display Pro 65 Medium";
font-weight: 100;
color: #535353;
letter-spacing: 1px;
}
html, body {
  height: 100%;
  margin: 0;
  font-family: sans-serif;
}

.swiper {
  width: 100%;
  height: auto;
  padding-left: 0;
}

.swiper-slide {
  height: 100%;
  background-color: #f5f5f5;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0.5;
  height: 88vh;
  border: solid white 1.5px;
}


.swiper-slide-active {
  opacity: 1;
  height: auto;
}

.slide-content {
    text-align: center;
    opacity: 0;
    transform: translateY(0px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: left;
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    backdrop-filter: blur(10.9px);
    -webkit-backdrop-filter: blur(10.9px);
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.23) 18%, rgba(0, 0, 0, 1) 100%, rgba(237, 221, 83, 1) 100%);
}

.swiper-slide-active .slide-content {
  opacity: 1;
  transform: translateY(0);
}
@media (max-height: 932px) {
  .swiper-slide {
    height: 78vh;
  }
  .slide-content h2{
    font-size: 20px;
}
}
@media (max-width: 968px) {
  .slide-content h2{
    font-size: 16px;
}
.slide-content p{
    font-size: 14px;
}
}

a{
  text-decoration: none;
}
.footer-links {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.footer-links a:hover{
  color: black;
}
.footer-links p{
  font-size: 12px;
}
header {
    color: #535353;
    background: #eaeaea;
    font-size: 14px;
    padding: 7px 20px;
    font-weight: 100;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 1px;
}
.slide-content h2{
  color: white;
}
.slide-content p{
  color: rgb(171 171 171);
}
span#ampm {
    text-transform: lowercase;
}
.swiper-slide .open {
    visibility: visible;
    background: transparent;
    border: 0;
    position: absolute;
    right: 0;
    padding: 15px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.open p{
  opacity: 0.5;
}
.open p, .open a{
  background: rgba(73, 73, 73, 0.363);
  backdrop-filter: blur(10.9px);
  -webkit-backdrop-filter: blur(10.9px);
  border-radius: 100px;
  padding: 10px;
  color: rgb(255, 255, 255);
}
.swiper-slide-active .open {
    opacity: 1;
    transform: translateY(0);
}
#page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease;
}

#page-overlay img {
  max-width: 100px;
}

#page-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}
