*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container-6 {
  width: 25rem;
  height: 35rem;
  position: relative;
  overflow: hidden;
    -webkit-box-shadow:0px 0px 113px 0px rgba(255,46,175,0.34);
-moz-box-shadow: 0px 0px 113px 0px rgba(255,46,175,0.34);
box-shadow: 0px 0px 113px 0px rgba(255,46,175,0.34);   
     
}

.pic-container {
  height: inherit;
  width: inherit; 
    
}

.pic-container,
.pic,
.container-6{
  display: flex;
  align-items: center;
  justify-content: center;
}

.pic {
  width: 100%;
  height: 100%;
  position: absolute;
  
  transition: all 500ms cubic-bezier(.42, .84, 0, 1.06);
}

.pic__img {
  width:90%;
  height: 90%;
  object-fit: cover;
}

.slider-btns {
  display: flex;
  gap: 3rem;
            align-items: center;
            justify-content: center;
            margin-bottom: -400px;
            position: absolute;
}

.btn-left,
.btn-right {
  cursor: pointer;
  background-color: transparent;
  color: #FF00B9;
  opacity: 60%;
  border: none;
  font-size: 3rem;
  font-weight: 700;
  z-index: 10;
}

.btn-left:hover,
.btn-right:hover{
  transform: scale(1.7);
  opacity:100%;
}








