.slider-div{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px;
  padding-left: 0px;
  padding-right: 0px;
}
.slider-direction{
  text-align: center;
}
.slider-direction button{
  font-family: cursive;
  font-weight: bold;
  background-color: #ffffff44;
  border:none;
  width:50px;
  height:50px;
  border-radius: 50%;
  transition: 0.5s;
  margin:0 10px;
}
.slider-direction button:hover{
  background-color: #ffffff;
}
.item-slider{
  width: 300px;
  overflow: hidden;
  transition: 0.5s;
  scroll-snap-align: start;
}
.item-slider .avatar{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
}
.item-slider .content{
  padding:30px;
  font-family: monospace;
}
.item-slider .content table td{
  padding:10px 0;
  border-bottom: 1px solid #AEC0CE;
}
.item-slider .content table td:nth-child(2){
  text-align: right;
}
.item-slider .nameGroup{
  text-align: center;
  border-bottom:none!important;
}
#slider-list{
  display: flex;
  width:max-content;
  transition: transform 8s ease; /* Smooth transition of 8 seconds */

}
#slider-formList{
  width:1280px;
  max-width: 100%;
  overflow: auto;
  scroll-behavior: smooth;
  scroll-snap-type: none;
}
#slider-formList::-webkit-scrollbar{
  display: none;
}
@media screen and (max-width: 1024px){
  .item-slider{
      width: 100vw;
  }
  .slider-direction{
      display: none;
  }
}
@media screen and (max-width: 768px){
  .item-slider{
      width: 100vw;
  }
  .slider-direction{
      display: none;
  }
  .slider-div{
    height: 620px;
  }
}
.instagram-link{
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 1vw;
}
.instagram-link h1{
  margin-top: 10px;
  font-size: 28px;
}





/* external css: flickity.css */
.carousel {
}
:root {
  color-scheme: light only;
}

.carousel .carousel-cell {
  width: 300px;
  height: 200px;
  /* flex-box, center image in cell */
  display: -webkit-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.carousel .carousel-cell img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  /* dim unselected */
  opacity: 0.7;
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s, transform 0.3s, -webkit-filter 0.3s, filter 0.3s;
  transition: opacity 0.3s, transform 0.3s, filter 0.3s;
}

/* brighten selected image */
.carousel .carousel-cell.is-selected img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-filter: none;
  filter: none;
}

@media screen and ( min-width: 768px ) {
  .carousel .carousel-cell {
    height: 400px;
  }
}

@media screen and ( max-width: 768px ) {
  .carousel .carousel-cell {
    width: 100%;
    height: 400px;
  }
  .instagram-link{
    /* margin-top: 80px; */
  }
}

/* buttons, no circle */
.carousel .flickity-prev-next-button {
  width: 60px;
  height: 60px;
  background: transparent;
  opacity: 0.6;
}
.carousel .flickity-prev-next-button:hover {
  background: transparent;
  opacity: 1;
}
/* arrow color */
.carousel .flickity-prev-next-button .arrow {
  fill: white;
}
.carousel .flickity-prev-next-button.no-svg {
  color: white;
}
/* closer to edge */
.carousel .flickity-prev-next-button.previous { left: 0; }
.carousel .flickity-prev-next-button.next { right: 0; }
/* hide disabled button */
.carousel .flickity-prev-next-button:enabled {
  display: none;
}
.carousel .flickity-page-dots{
  visibility: hidden;
}
.carousel{
  margin-top: 130px;
}
@media screen and (max-width:768px) {
  .carousel{
    margin-top: 110px;
  }
  .instagram-link{
    margin-top: 6%;
  }
}


 