.testimonial-slider-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  position: relative;
}
.testimonial-slider-wrapper .testimonial-slider {
  width: 100%;
  height: 100%;
  padding: 1.25rem 0;
}
.testimonial-slider-wrapper .testimonial-slider .swiper-wrapper {
  align-items: stretch;
  box-sizing: border-box;
}
.testimonial-slider-wrapper .testimonial-slider .swiper-slide {
  height: auto;
  transition: opacity 0.3s ease;
  padding: 0.5rem;
}
.testimonial-slider-wrapper .testimonial-slider .swiper-slide-active {
  opacity: 1;
}
@media (max-width: 1024px) {
  .testimonial-slider-wrapper .testimonial-slider .swiper-slide {
    width: calc(33.333% - 20px);
  }
}
@media (max-width: 768px) {
  .testimonial-slider-wrapper .testimonial-slider .swiper-slide {
    width: calc(50% - 15px);
  }
}
@media (max-width: 320px) {
  .testimonial-slider-wrapper .testimonial-slider .swiper-slide {
    width: 100%;
    opacity: 1;
  }
}
.testimonial-slider-wrapper .testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid rgba(90, 90, 90, 0.4);
  background: #111;
  padding: 48px;
}
.testimonial-slider-wrapper .testimonial-card .testimonial-content {
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.testimonial-slider-wrapper .testimonial-card .testimonial-content .testimonial-text {
  color: #9D9FA1;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Inter" sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.testimonial-slider-wrapper .testimonial-card .testimonial-content .testimonial-text::before, .testimonial-slider-wrapper .testimonial-card .testimonial-content .testimonial-text::after {
  content: '"';
  font-size: 1.5rem;
  color: #9D9FA1;
  line-height: 0;
  vertical-align: middle;
}
.testimonial-slider-wrapper .testimonial-card .testimonial-meta .testimonial-name {
  margin: 0;
  color: #FFF;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Inter" sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}
.testimonial-slider-wrapper .testimonial-card .testimonial-meta .testimonial-position {
  color: #9D9FA1;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Inter" sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.testimonial-slider-wrapper .testimonial-card .testimonial-meta .testimonial-company {
  color: #9D9FA1;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Inter" sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.testimonial-slider-wrapper .swiper-button-next,
.testimonial-slider-wrapper .swiper-button-prev {
  color: #222;
  background: #111;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.testimonial-slider-wrapper .swiper-button-next::after,
.testimonial-slider-wrapper .swiper-button-prev::after {
  font-size: 1.125rem;
  font-weight: bold;
}
.testimonial-slider-wrapper .swiper-pagination {
  position: relative;
  margin-top: 1.875rem;
}
.testimonial-slider-wrapper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
}
.testimonial-slider-wrapper .swiper-pagination-bullet-active {
  background: #333;
}

.hero-videos {
  position: relative;
  width: 100%;
}
.hero-videos .hero-video-wrapper {
  width: 100%;
}
.hero-videos .hero-video-wrapper .hero-video {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-videos .hero-video-wrapper .hero-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-videos .hero-text-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 10;
  text-align: right;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  padding-right: 15px;
  padding-bottom: 15px;
}
.hero-videos .hero-text-wrapper .hero-text {
  color: #FFF;
  text-align: right;
  font-family: "MontrealSerialExtraBold", Sans-serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 1.5px;
  transform: scale(1);
  transition: transform 0.5s linear;
  transform-origin: right center;
  line-height: 85%;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .hero-videos .hero-text-wrapper .hero-text {
    font-size: 85px;
  }
}
@media (max-width: 768px) {
  .hero-videos .hero-text-wrapper .hero-text {
    font-size: 45px;
  }
}
@media (max-width: 320px) {
  .hero-videos .hero-text-wrapper .hero-text {
    font-size: 35px;
  }
}

.hero-slider-flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: 80px 0;
  flex-wrap: wrap;
}
.hero-slider-flex-wrapper .center-swiper-button-prev {
  width: 46px;
  height: 46px;
  background: #FBAA00;
  border-radius: 100%;
  border: none !important;
  display: block;
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 768px) {
  .hero-slider-flex-wrapper .center-swiper-button-prev {
    left: 0;
  }
}
@media (max-width: 320px) {
  .hero-slider-flex-wrapper .center-swiper-button-prev {
    left: 0;
  }
}
.hero-slider-flex-wrapper .center-swiper-button-prev svg {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-slider-flex-wrapper .center-swiper-button-next {
  width: 46px;
  height: 46px;
  background: #FBAA00;
  border-radius: 100%;
  border: none !important;
  display: block;
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 768px) {
  .hero-slider-flex-wrapper .center-swiper-button-next {
    right: 0;
  }
}
@media (max-width: 320px) {
  .hero-slider-flex-wrapper .center-swiper-button-next {
    right: 0;
  }
}
.hero-slider-flex-wrapper .center-swiper-button-next svg {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-slider-flex-wrapper .swiper {
  flex: 1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-slider-flex-wrapper .hero-left-swiper,
  .hero-slider-flex-wrapper .hero-right-swiper {
    display: none;
  }
}
@media (max-width: 320px) {
  .hero-slider-flex-wrapper .hero-left-swiper,
  .hero-slider-flex-wrapper .hero-right-swiper {
    display: none;
  }
}
.hero-slider-flex-wrapper .hero-left-swiper .swiper-wrapper,
.hero-slider-flex-wrapper .hero-right-swiper .swiper-wrapper {
  gap: 0;
}
.hero-slider-flex-wrapper .hero-left-swiper .swiper-wrapper .swiper-slide,
.hero-slider-flex-wrapper .hero-right-swiper .swiper-wrapper .swiper-slide {
  margin: 0 !important;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
}
.hero-slider-flex-wrapper .hero-left-swiper .swiper-wrapper .swiper-slide .image-wrapper,
.hero-slider-flex-wrapper .hero-right-swiper .swiper-wrapper .swiper-slide .image-wrapper {
  height: 308px;
  padding: 0 10px;
}
.hero-slider-flex-wrapper .hero-left-swiper .swiper-wrapper .swiper-slide .image-wrapper img,
.hero-slider-flex-wrapper .hero-right-swiper .swiper-wrapper .swiper-slide .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.hero-slider-flex-wrapper .hero-center-swiper {
  max-width: 320px;
}
.hero-slider-flex-wrapper .hero-center-swiper .swiper-slide {
  height: 430px;
  max-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
}
.hero-slider-flex-wrapper .hero-center-swiper .swiper-slide .image-wrapper {
  height: 430px;
}
.hero-slider-flex-wrapper .hero-center-swiper .swiper-slide .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
