.hero-swiper {
  width: 100%;
  height: 100vh;
}
@media (max-width: 999px) {
  .hero-swiper {
    height: 100svh;
  }
}
.hero-swiper .swiper-wrapper {
  height: 100%;
}
.hero-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.hero-swiper .swiper-slide .hero-inner {
  max-width: 1360px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 20px 40px 20px;
  width: 100%;
  z-index: 3;
}
@media (max-width: 999px) {
  .hero-swiper .swiper-slide .hero-inner {
    padding: 0 20px 112px 20px;
  }
}
.hero-swiper .swiper-slide .hero-inner h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 2%;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 999px) {
  .hero-swiper .swiper-slide .hero-inner h1 {
    font-size: 32px;
  }
}
.hero-swiper .swiper-slide .hero-inner p {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 10%;
  color: #ffffff;
  margin: 10px 0 30px 0;
}
@media (max-width: 999px) {
  .hero-swiper .swiper-slide .hero-inner p {
    font-size: 18px;
    margin: 4px 0 18px 0;
  }
}
.hero-swiper .swiper-slide .hero-inner .cta_button {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 4%;
  padding: 8px 24px 9px 24px;
  border-radius: 16px;
  color: #2D4228;
  background-color: #A1D499;
  text-decoration: none;
}
.hero-swiper .swiper-slide .hero-inner .cta_button:hover {
  color: #A1D499;
  background-color: #2F2317;
}
.hero-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.hero-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(54, 39, 25, 0) 0%, rgb(36, 31, 26) 100%);
  z-index: 2;
}
.hero-swiper .hero-tiles {
  display: flex;
  gap: 30px;
}
@media (max-width: 999px) {
  .hero-swiper .hero-tiles {
    display: none;
  }
}
.hero-swiper .hero-tiles .hero-tile {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
  border-radius: 16px;
  background-color: rgba(250, 245, 240, 0.1);
  width: 100%;
  cursor: pointer;
}
.hero-swiper .hero-tiles .hero-tile.active {
  background-color: #2F2317;
}
.hero-swiper .hero-tiles .hero-tile.active h3,
.hero-swiper .hero-tiles .hero-tile.active p {
  color: #A1D499;
}
.hero-swiper .hero-tiles .hero-tile h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin: 0;
  color: #ffffff;
}
.hero-swiper .hero-tiles .hero-tile p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 6%;
  margin: 0;
  color: #ffffff;
}
.hero-swiper .swiper-pagination {
  bottom: 32px !important;
}
@media (min-width: 999px) {
  .hero-swiper .swiper-pagination {
    display: none;
  }
}
.hero-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 40px;
  border: 1px solid #D6B89A;
  border-radius: 50%;
  background: #2F2317;
  position: relative;
}
.hero-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.hero-swiper .swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #D6B89A;
  border-radius: 50%;
}/*# sourceMappingURL=slider.css.map */