/***** Autoplay Slider Block *****/
.autoplay-slider-bg {
  background-color: var(--secondary-color);
  padding: 5rem 0 5rem 10%;
}
.autoplay-slide {
  flex: 0 0 80%;
  display: flex;
  background-color: white;
  border-radius: 1.75rem 0rem 1.75rem 0rem;
  margin-right: 2.5rem;
  min-height: 20rem;
  position: relative;
  overflow: hidden;
}

.autoplay-slider-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.autoplay-slide-content {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.autoplay-slide-content * {
  margin: 0;
}
.autoplay-slide-content h3 {
  color: var(--secondary-color);
}
.autoplay-slide-content a.wire-gradient-btn {
  color: var(--secondary-color);
  width: fit-content;
}

.autoplay-slide-image {
  flex: 2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.autoplaySlider-block-container {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}

.autoplay-slider-controls {
  display: flex;
  gap: 1.75rem;
  margin-top: 2.5rem;
  position: relative;
}

.autoplay-slider-dots-container {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.autoplay-slider-dots-container .slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: border-box;
}
.autoplay-slider-dots-container .slider-dot.active {
  background-color: white;
}

.left-chevron-container,
.right-chevron-container {
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
}
.left-chevron-container .left-chevron,
.right-chevron-container .right-chevron {
  width: 100%;
}

@media only screen and (max-width: 980px) {
  .autoplay-slide {
    flex-direction: column;
  }
  .autoplay-slide .autoplay-slide-image {
    flex: none;
    height: 11.5rem;
  }
}

@media only screen and (max-width: 479px) {
  .autoplay-slider-bg {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .autoplay-slide {
    margin-right: 1.25rem;
  }
  .autoplay-slide-content {
    padding: 1.75rem;
  }
}
