*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 
}




audio {
  display: none;
}

p {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(238, 238, 238, 0.6);
  font-size: 20px;
}

button {
  font-size: 16px;
  color: #eee;
  position: absolute;
  top: 10%;
  left: 90%;
  transform: translate(-50%, -50%);
  width: 50px;
  padding: 15px;
  border: none;
  border-radius: 2px;
  outline: none;
  background: rgba(60, 60, 60, 0.8);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease-out;
}

button.fade:hover {
  opacity: 0.8;
}

.fade {
  opacity: 0.2;
  top: 85%;
  left: 85%;
  transform: translate(0, 0);
}




.container{
    width: 100%;
    height: 72vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .slider{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.container ul{
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.container ul li{
    list-style: none;
    cursor: pointer;
    margin: 10px;
}


.container ul li img{
    width: 200px;
    transition: all 0.3s;
}
.container ul li img:hover{
    transform: scale(1.1);
}
.container ul li video{
    width: 200px;
    transition: all 0.3s;
}
.container ul li video:hover{
    transform: scale(1.1);
}

video{
    width: 30%;
    height: 90%;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  display: flex;
  padding: 0 35px;
  min-height: 72vh;
  align-items: center;
  justify-content: center;

}
.wrapper{
  display: flex;
  max-width:700px;
  position: relative;
   bottom: -260px;

}
.wrapper i{
  top: 50%;
  height: 44px;
  width: 44px;
  color: #343F4F;
  cursor: pointer;
  font-size: 1.15rem;
  position: absolute;
  text-align: center;
  line-height: 44px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper i:active{
  transform: translateY(-50%) scale(0.5);


}
.wrapper i:hover{
  background: #f2f2f2;
}
.wrapper i:first-child{
  left: -50px;
  display: none;
}
.wrapper i:last-child{
  right: -50px;
}
.wrapper .carousel{
  font-size: 0px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}
.carousel.dragging{
  cursor: grab;
  scroll-behavior: auto;
}
.carousel.dragging img{
  pointer-events: none;
}
.carousel img{
  height: 120px;

  object-fit: cover;
  user-select: none;
  margin-left: 14px;
  width: calc(100% / 3);

}
.carousel img:first-child{
  margin-left: 0px;
}

@media screen and (max-width: 900px) {
  .carousel img{
    width: calc(100% / 3);
  }
}

@media screen and (max-width: 550px) {
  .carousel img{
    width: 100%;
  }





  .carousel.dragging video{
  pointer-events: none;

}
.carousel video{
  height: 100px;
  object-fit: cover;
  user-select: none;
  margin-left: 14px;
  width: calc(100% / 3);

}
.carousel video:first-child{
  margin-left: 0px;

}

@media screen and (max-width: 900px) {
  .carousel video{
    width: calc(100% / 2);
  }
}

@media screen and (max-width: 550px) {
  .carousel video{
    width: 100%;
  }


