@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Geologica:wght@100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
}

ul li, ol li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

p, ul, ol {
  margin: 0;
}

.sw_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  overflow: hidden;
}
.sw_background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.sw_background.darker::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.sw_background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(var(--bg-blur));
}
.sw_inner {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.sw_slider-wrapper {
  padding: 70px 15px;
  text-align: center;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}
.sw_slider {
  height: 100%;
  width: 100%;
  margin: 30px auto;
  padding: 0 15px;
}
.sw_slider-start {
  max-width: 400px;
}
.sw_slider-image {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 3/4;
  position: relative;
  display: inline-block;
  font-family: "Libre Baskerville", serif;
}
.sw_slider-image:after {
  content: var(--slide-index);
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  color: white;
  padding: 5px 10px;
  text-shadow: 1px 1px 1px #000;
}
.sw_slider-image-marker {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 10px 10px 40px;
  background-color: rgba(0, 0, 0, 0.44);
  color: #fff;
  border-radius: 50px;
}
.sw_slider-image-marker.small {
  top: 5px;
  left: 5px;
  font-size: 1rem;
  padding: 5px 5px 5px 20px;
}
.sw_slider-image-marker.small:before {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: #00bf63;
  left: 8px;
  top: 32%;
}
.sw_slider-image-marker:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background-color: #00bf63;
  left: 15px;
}
.sw_slider-image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  object-position: center 20%;
}
.sw_slider-controls {
  margin-top: 25px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
  max-width: 400px;
}
.sw_final-slide {
  max-width: 700px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(53, 42, 31, 0.8);
  border-radius: 30px;
}
.sw_final-slide-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}
.sw_final-slide-text li {
  padding-left: 20px;
  font-size: 18px;
  position: relative;
  color: var(--yellow-color, #dfbf4d);
}
.sw_final-slide-text li::before {
  content: "";
  position: absolute;
  left: 0px;
  background-color: var(--yellow-color, #dfbf4d);
  width: 8px;
  height: 8px;
  top: 25%;
  border-radius: 50px;
}
.sw_final-slide-text.mob {
  display: none;
}
.sw_final-slide-title {
  font-size: 24px;
}
.sw_final-slide .chosen-photo {
  max-width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
  margin: 20px auto;
}
.sw_final-slide-a {
  position: relative;
}
.sw_final-slide-a-inner {
  padding-top: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.sw_final-slide-a .sw_cards_wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  top: -60px;
  transform: translate(-50%, 0);
  margin-bottom: 20px;
}
.sw_final-slide-a .sw_cards_wrapper .card {
  position: relative;
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 -20px;
  transition: transform 0.3s ease, z-index 0.3s ease;
}
.sw_final-slide-a .sw_cards_wrapper .card:nth-child(1) {
  transform: rotate(-15deg) translateY(20px);
  z-index: 1;
}
.sw_final-slide-a .sw_cards_wrapper .card:nth-child(2) {
  transform: rotate(-7deg) translateY(10px);
  z-index: 2;
}
.sw_final-slide-a .sw_cards_wrapper .card:nth-child(3) {
  transform: rotate(7deg) translateY(10px);
  z-index: 2;
}
.sw_final-slide-a .sw_cards_wrapper .card:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 5;
}
.sw_final-slide-a .sw_cards_wrapper .card img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-red, .btn-yellow {
  width: 100%;
  padding: 15px;
  text-align: center;
  border-radius: 50px;
  font-weight: bold;
  color: black;
  transition: all 0.3s ease-in-out;
}
.btn-red:hover, .btn-yellow:hover {
  color: #fff;
}
.btn-red.final, .btn-yellow.final {
  max-width: 300px;
}

.btn-red {
  font-size: 18px;
}

.btn-yellow {
  font-size: 22px;
}

.hidden {
  display: none;
}

@media (max-width: 578px) {
  .sw_slider-wrapper {
    padding: 70px 0;
  }
  .sw_slider-start {
    padding: 0 15px;
  }
  .sw_final-slide-text.mob {
    display: flex;
  }
  .sw_final-slide-text.desk {
    display: none;
  }
  .sw_final-slide-a-inner {
    padding-top: 100px;
  }
}

/*# sourceMappingURL=swiper-preview.css.map */
