:root {
  --black: #0e0e0e;
  --white: #ffffff;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #0e0e0e;
  background-color: #eceae5;
}

a {
  text-decoration: none;
  color: inherit;
}

.slideStyle {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  background: var(--white);
  color: var(--black);
  transition: 0.25s;
}
.slideStyle.darkStyle {
  background: var(--black);
  color: var(--white);
}

.swiperParallax.swiper {
  width: 100%;
  overflow: hidden;
}
.swiperParallax .swiper-wrapper {
  flex-direction: row;
  align-items: center;
  display: flex;
}
.swiperParallax .swiper-slide {
  width: 50vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  flex: none;
}
.swiperParallax .swiper-slide.swiper-slide-active .gallery-img__wrapper {
  opacity: 1;
  transform: scale(1);
}
.swiperParallax .swiper-slide.swiper-slide-active .gallery-info__wrapper {
  opacity: 1;
  transform: translateY(0%);
}
.swiperParallax .gallery-img__wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 66.7%;
  border-radius: 0.75rem;
  opacity: 0.25;
  transform: scale(0.6);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.swiperParallax .gallery-img__wrapper .gallery-img {
  position: absolute;
  top: 0;
  width: 130%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiperParallax .gallery-info__wrapper {
  display: flex;
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(50%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.swiperParallax .gallery-info__wrapper .heading-medium {
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1;
}

/* Toggle direction button */
.toggle {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 99;
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  box-shadow: inset 15px -16px 0px 7px gold;
  border: 0;
  font-size: 0;
}
.toggle.darkStyle {
  background-color: transparent;
  box-shadow: inset -9px -8px 1px 1px var(--white);
}

.copyright {
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 50%;
  width: 100%;
  padding: 15px;
  text-align: center;
  letter-spacing: 1.5px;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: translateX(-50%);
  transition: 0.25s;
}
.copyright a {
  text-decoration: none;
  color: #000;
  transition: 0.25s;
}

.footer.darkStyle .copyright {
  border-color: transparent;
  color: var(--white);
}
.footer.darkStyle .copyright a {
  color: var(--white);
}