.slider-container{
  height:fit-content;
  z-index: 4;

   /* background: rgba(4, 151, 255, 0.26);*/
width: 100%;
max-width: 500px;

padding: 60px 0;
}
.slider{
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: inherit;
  z-index: 4;
}
.slide{
  position: relative;
  display:flex;
  flex-direction: column;
  color: #374d6b;
  background-color: #cce0fa56;
  width: 80%;
  height:200px;
  margin: 25px;
 box-shadow:0 0 8px #00000020;
transform: scale(1);
 border-radius: 20px;
/*box-shadow: inset 0 0 25px #00000094;*/
 
  align-items:center;
  justify-content: center;
  
}
.slide a{
  position: absolute;
  bottom: 10px;
  color: var(--a3);
}
.slide h3{
  
  text-align: center;
  color:#000000;
  font-weight: 400;
  font-size: 28px;
   transform: scale(.9);
  width: 100%;
  padding:30px;
  
  
}
.slider-index{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  height: 40px;
  
  padding-bottom: 60px;
}
.slider-index .circle{
  margin: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 5px;
  transform: scale(1);
  background-color: #cce0fa;
  transition: all 1s;
}
.circleactive{
  transform: scale(.8);
  background-color: #6e87ab;
}