.fs-slider {
  width: 100vw;
  height: 440px;
  position: relative;
}

.fs-slider-bg-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.fs-slider-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 300ms;
}

.fs-slider-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-hero-slides-wrapper {
  width: 100%;
  position: absolute;
  top: unset;
  bottom: 32px;
  transform: unset;
  left: 0;
  z-index: 1;
}

.fs-hero-slide {
  display: none;
}

.fs-hero-slide.active {
  display: block;
}

.fs-hero-slide-title {
  margin: 0px;
  line-height: 56px;
  letter-spacing: -0.3px;
  font-size: 32px;
  font-weight: 500;
  color: var(--color-base-surface-secondary);
}

.fs-hero-slide-subtitle {
  margin: 0px;
  line-height: 32px;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-base-action-secondary-hover);
}

.fs-slide-row {
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0px 16px;
}

.fs-hero-slider-mobile-nav {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
}

.fs-hero-slider-nav {
  display: none;
}

.fs-hero-slide-button,
.fs-hero-slider-nav-item {
  display: flex;
  position: relative;
  flex-direction: row;
  flex-shrink: 0;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  transition: 500ms;
  outline: none;
  border-radius: 999px;
  background-color: var(--color-base-action-secondary-default);
  border: none;
  cursor: pointer;
  width: fit-content;
  max-width: 100%;
  height: fit-content;
  gap: 8px;
  padding: 16px 32px;
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-base-content-secondary);

  margin-top: 16px;
}

.fs-hero-slide-button:focus,
.fs-hero-slider-nav-item:focus {
  background-color: var(--color-base-action-secondary-default);
}

.fs-hero-slider-nav-item {
  padding: 10px 24px;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-base-content-secondary);
  letter-spacing: 0;
  text-transform: initial;
  margin-top: 0;
}

.fs-hero-slider-nav-item.active {
  background-color: var(--color-base-action-primary-default);
  color: var(--color-base-surface-primary);
}

.fs-hero-slider-nav-items {
  display: none;
}

.fs-hero-slider-nav-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  transition: 250ms ease 0s;
  border: none;
  border-radius: 50%;
  background-color: var(--color-base-action-secondary-default);
  cursor: pointer;
  padding: 0px;
  width: 40px;
  height: 40px;
}

.fs-hero-slider-nav-btn:focus,
.fs-hero-slider-nav-btn:hover {
  outline: none;
  background-color: var(--color-base-action-secondary-default);
}

.fs-hero-slider-nav-btn.disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

@media (min-width: 768px) {
  .fs-hero-slide-title {
    line-height: 56px;
    font-size: 48px;
  }

  .fs-hero-slides-wrapper {
    width: 100%;
    position: absolute;
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 0;
    z-index: 1;
  }

  .fs-hero-slide-button {
    margin-top: 24px;
  }

  .fs-hero-slider-mobile-nav {
    display: none;
  }

  .fs-hero-slider-nav {
    display: block;
  }

  .fs-hero-slider-nav .fs-hero-slider-nav-btn.prev {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 10;
  }
  
  .fs-hero-slider-nav .fs-hero-slider-nav-btn.next {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 10;
  }

  .fs-slide-row {
    padding: 0px 88px;
  }
}

@media (min-width: 1200px) {
  .fs-hero-slider-nav {
    gap: 32px;
  }

  .fs-hero-slider-nav-items {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .fs-hero-slider-nav .fs-hero-slider-nav-btn.prev {
    left: 48px;
  }
  
  .fs-hero-slider-nav .fs-hero-slider-nav-btn.next {
    right: 48px;
  }

  .fs-slide-row {
    padding: 0px 142px;
  }
}
