.slider-bottom-section {
  background-color: #202a79;
  /* background: linear-gradient(270deg, #b20d5d, #4a0ab4);
  background-size: 200% 200%;
  animation: gradientMove 8s ease-in-out infinite; */
}
.sliderBottomContainer {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2%;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media screen and (max-width: 576px) {
  .sliderBottomContainer {
    height: 50px;
  }
}
.btn-sBottom {
  border: 1px solid rgb(229, 229, 229);
  border-radius: 1px;
  color: rgb(229, 229, 229);
  transition: 0.3s all ease-in-out;
  text-transform: uppercase;

  /* display: block; */
  /* justify-items: center; */
}
.btn-sBottom:hover {
  background-color: rgb(229, 229, 229);
  color: #202a79;
}
@media screen and (max-width: 576px) {
  .btn-sBottom {
    font-size: 13.5px;
  }
}
