@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap");
.slider-section {
  /* Styles specific to the slider section */
  background-color: #ffffff;
  padding: 20px;
}
.slider-section .slider.new {
  /* Styles for the .slider.new class */
  /* Adjust background-color and padding if needed */
  background-color: #ffffff;
  padding: 20px;
}
.slider-section .slider.new .buttons.new {
  z-index: 1;
  right: 50%;
  top: 50%; /* Center the buttons vertically */
  transform: translate(50%, -50%); /* Center the buttons horizontally and vertically */
  width: 80px;
  height: 40px;
  position: absolute;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-section .slider.new .buttons.new .previous,
.slider-section .slider.new .buttons.new .next {
  width: 40px; /* Adjust button size */
  height: 40px; /* Adjust button size */
  position: relative; /* Position relative for button content */
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  background-color: hsl(240, 18%, 77%); /* Change button background color */
  border-radius: 50%; /* Make the buttons circular */
}
.slider-section .slider.new .buttons.new .previous:hover,
.slider-section .slider.new .buttons.new .next:hover {
  transform: scale(1.1); /* Scale button on hover */
}
.slider-section .slider.new .buttons.new .previous {
  left: 0;
  background-image: url("https://alcs-slider.netlify.app/images/icon-prev.svg");
}
.slider-section .slider.new .buttons.new .next {
  right: 0;
  background-image: url("https://alcs-slider.netlify.app/images/icon-next.svg");
}
.slider-section .slider.new .slide {
  display: flex;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.slider-section .slider.new .slide .testimonial {
  padding: 32px 51px;
  background-size: 60px;
  background-position: top;
  background-repeat: no-repeat;
  background-image: url("https://alcs-slider.netlify.app/images/pattern-quotes.svg");
}
.slider-section .slider.new .slide .testimonial blockquote {
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 36px;
}
.slider-section .slider.new .slide .testimonial .author {
  font-size: 15px;
  font-weight: 700;
}
.slider-section .slider.new .slide .testimonial .author span {
  display: block;
  color: hsl(240, 18%, 77%);
  font-weight: 500;
}
.slider-section .slider.new .slide .slider-img {
  width: 50%;
  padding: 30px;
  display: flex;
  margin-bottom: 40px;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("https://alcs-slider.netlify.app/images/pattern-bg.svg");
  position: relative; /* Position relative for button container */
  /* Position the button container */
}
.slider-section .slider.new .slide .slider-img img {
  width: 240px;
  display: block;
  border-radius: 10px;
  box-shadow: 0px 16px 40px 0px rgba(135, 105, 210, 0.4);
}
.slider-section .slider.new .slide .slider-img .buttons.new {
  position: absolute;
  top: 50%; /* Center the buttons vertically */
  left: 50%; /* Center the buttons horizontally */
  transform: translate(-50%, -50%); /* Center the buttons horizontally and vertically */
}
.slider-section .slider.new .slide .active {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.4s;
}/*# sourceMappingURL=slider.css.map */
