:root {
  --clip-path: polygon(50% 0, 100% 0, 100% 100%, 49% 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 10px;
}

body {
  color: black;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 1.5rem;
}

h1, h2, h3, h4, h5 {
  font-family: "Forum", serif;
}

.hidden {
  display: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.btn,
button {
  padding: 1rem 2rem;
  border-radius: 2rem;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-weight: 500;
  cursor: pointer;
}

.swiper {
  position: absolute;
  width: 100dvw;
  height: 100dvh;
  background: black;
}
.swiper .swiper-slide {
  position: relative;
}
.swiper .swiper-slide .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.swiper .swiper-slide .bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper .swiper-slide .ai-versions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.swiper .swiper-slide .ai-versions:has(.style:not(.hidden)) .drag-handle {
  display: block;
}
.swiper .swiper-slide .ai-versions .style {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: var(--clip-path);
          clip-path: var(--clip-path);
}
.swiper .swiper-slide .ai-versions .drag-handle {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8rem;
  height: 4rem;
  text-align: center;
  transform: translate(-50%, -50%);
  cursor: grab;
  z-index: 1;
}
.swiper .swiper-slide .ai-versions .drag-handle:before, .swiper .swiper-slide .ai-versions .drag-handle:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 50dvh;
  background: white;
}
.swiper .swiper-slide .ai-versions .drag-handle:after {
  top: auto;
  bottom: 100%;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: white;
}
.swiper .swiper-pagination-bullet-active {
  background: white;
}
.swiper .ai-menu-toggle {
  position: absolute;
  top: 5dvh;
  right: 5dvw;
  z-index: 1;
}
.swiper .ai-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: absolute;
  bottom: calc(-100% - 5dvh);
  left: 50%;
  width: clamp(200px, 80%, 400px);
  padding: 20px;
  border-radius: 2rem;
  border: 2px solid white;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transform: translateX(-50%);
  transition: all 0.5s ease-out;
  z-index: 1;
}
.swiper .ai-menu.open {
  bottom: 5dvh;
}
.swiper .ai-menu .close {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  padding: 0;
  line-height: 4rem;
  text-align: center;
  background: white;
}
.swiper .ai-menu label {
  padding: 10px;
  border-radius: 1rem;
  transition: all 0.5s ease-out;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0);
  cursor: pointer;
}
.swiper .ai-menu label:has(input:checked) {
  border-radius: 2rem;
  border-color: white;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.swiper .ai-menu label input {
  display: none;
}
.swiper .ai-menu p {
  font-size: 1rem;
  color: gray;
}/*# sourceMappingURL=style.css.map */