.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
  height: 70vh;
}
.hero-slider .swiper {
  width: 100%;
  background: #FFFFFF;
}
.hero-slider .swiper-wrapper {
  min-height: 500px;
}
.hero-slider .swiper-slide {
  height: auto !important;
}
@media (min-width: 768px) {
  .hero-slider .swiper-wrapper {
    min-height: 600px;
  }
}
@media (min-width: 1200px) {
  .hero-slider .swiper-wrapper {
    min-height: 700px;
  }
}
.hero-slide {
  position: relative;
  height: 500px;
  width: 100%;
  background: #FFFFFF;
}
.hero-slide .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .hero-slide {
    height: 600px;
  }
  .hero-slide .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .hero-slide {
    height: 700px;
  }
  .hero-slide .container {
    max-width: 1400px;
    padding: 0 40px;
    gap: 60px;
  }
}
.hero-slide__image {
  order: 1;
  height: 280px;
  overflow: hidden;
  position: relative;
}
.hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero-slide:hover .hero-slide__img {
  transform: scale(1.05);
}
@media (min-width: 768px) {
  .hero-slide__image {
    order: 2;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
}
.hero-slide__content {
  order: 2;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .hero-slide__content {
    order: 1;
    padding: 40px 0;
    background: transparent;
  }
}
@media (min-width: 1200px) {
  .hero-slide__content {
    padding: 60px 0;
  }
}
.hero-slide__text-content {
  max-width: 600px;
}
.hero-slide__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #2B2B2B;
  text-transform: math-auto;
}
.hero-slide__title-highlight {
  color: #FFFFFF;
  display: inline;
  font-weight: 900;
}
.hero-slide__description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #2E2E2E;
  opacity: 0.95;
}
.hero-slide__button-wrapper {
  display: flex;
  margin-top: 10px;
}
.swiper-pagination {
  bottom: 25px !important;
  text-align: center;
  z-index: 4;
}
.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(43, 43, 43, 0.7);
  opacity: 0.6;
  margin: 0 6px;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #E31E24;
  transform: scale(1.2);
}
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(43, 43, 43, 0.8);
  border-radius: 50%;
  margin-top: -25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 4;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px;
  font-weight: 700;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #E31E24;
  transform: scale(1.1);
}
.swiper-button-prev {
  left: 10px;
}
.swiper-button-next {
  right: 10px;
}
@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}
@media (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: flex;
  }
}
/*# sourceMappingURL=style.css.map */