.feature-section-body {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.dual-flex-container {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 50px;
}

.dual-flex-container-element {
  max-width: 450px;
}

.dual-flex-container-element p {
  text-align: justify;
  padding: 0 5px;
}

/* IMAGE SLIDER */
.single-slider-container {
  width: 500px;
  height: 500px;
  position: relative;
  padding: 0 34px 0 0;
  display: flex;
  justify-content: center;
}

.single-slider-slide {
  visibility: hidden;
  position: absolute;
  width: 500px;
  height: 500px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  transform: translateY(-10%);
}

.single-slider-show {
  visibility: visible;
  opacity: 1;
}

.single-slider-active {
  display: block;
}

.single-slider-navigation-dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-110%) translateY(62px);
  display: flex;
}

.single-slider-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.single-slider-dot.single-slider-active {
  background-color: #e4b037;
}

@media screen and (min-width: 1100px) {
  .single-slider-container {
    width: 500px;
  }

  .single-slider-slide {
    width: 500px;
    height: 500px;
  }
}

/* IMAGE SLIDER */

@media screen and (max-width: 995px) {
  .image-card-container {
    margin-top: 0;
  }

  .single-slider-container {
    margin-bottom: 100px;
  }

  .single-slider-navigation-dots {
    transform: translateX(-110%) translateY(100px);
  }
}

@media screen and (max-width: 800px) {
  .single-slider-container {
    padding: 0;
  }
  
  .single-slider-navigation-dots {
    transform: translateX(-65%) translateY(100px);
  }
}

@media screen and (max-width: 480px) {
  .single-slider-container {
    width: 360px;
    height: 400px;
  }

  .single-slider-slide {
    height: 360px;
    width: 360px;
  }
}

@media screen and (max-width: 450px) {
  .feature-section-body {
    font-size: 18px;
    font-weight: 400;
  }
}

@media screen and (max-width: 423px) {
  .specification-container {
    width: 330px;
  }
}
