/* fallback */
@font-face {
  font-family: 'Material Symbols Rounded';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialsymbolsrounded/v146/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOc7TOVpeRL2w5rwZu2rIelXxc.woff2) format('woff2');
}

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #fff;
}
.is-container-fluid {
  padding-top: 70px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  background-color: #fff;
}

.is-container {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.is-slider-wrapper {
  position: relative;
  display: block;
}

.is-slider-wrapper .is-slide-button {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  z-index: 5;
  color: #fff;
  display: flex;
  cursor: pointer;
  font-size: 2.2rem;
  background: #000;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateY(-50%);
}

.is-slider-wrapper .is-slide-button:hover {
  background: #404040;
}

.is-slider-wrapper .is-slide-button#prev-slide {
  left: -25px;
  display: none;
}

.is-slider-wrapper .is-slide-button#next-slide {
  right: -25px;
}

.is-slider-wrapper .is-image-list {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 1.1px;
  font-size: 0;
  list-style: none;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.is-slider-wrapper .is-image-list::-webkit-scrollbar {
  display: none;
}

.is-slider-wrapper .is-image-list .is-image-item {
  width: 265px;
  height: 400px;
  object-fit: cover;
  margin: 5px;
}

.is-container .is-slider-scrollbar {
  height: 24px;
  width: 100%;
  display: none;
  align-items: center;
}

.is-slider-scrollbar .is-scrollbar-track {
  background: #ccc;
  width: 100%;
  height: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  position: relative;
}

.is-slider-scrollbar:hover .is-scrollbar-track {
  height: 4px;
}

.is-slider-scrollbar .is-scrollbar-thumb {
  position: absolute;
  background: #000;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  cursor: grab;
  border-radius: inherit;
}

.is-slider-scrollbar .is-scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}

.is-slider-scrollbar .is-scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}

/*.is-slider-wrapper .is-image-list .is-image-item.prev-frame,
   .is-slider-wrapper .is-image-list .is-image-item.next-frame {
  border: 2px solid #ff4500; /* Adjust the color and thickness as needed */
  /*box-shadow: 0 0 10px rgba(255, 69, 0, 0.5); /* Adjust the color and intensity as needed */
/*}*/

/*.is-image-item figcaption {
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  color: #333;
  gap: 18px;
}*/
/* Styles for mobile and tablets (only screen and)*/
 @media only screen and (max-width: 768px) {

  /*.is-slider-wrapper .is-slide-button {
    display: none;
  }*/

  .is-slider-wrapper .is-image-list {
    display: flex;
    margin-bottom: 10px;
    scroll-snap-type: x mandatory; 
    overflow-x: auto; 
    gap: 0.08; 
  }

  .is-slider-wrapper .is-image-list .is-image-item {
    width: 47.6%;  /* Adjusted to full width */
     height: auto; /* Adjusted for variable height */
     flex: 0 0 auto;
   } 

   .is-slider-scrollbar .is-scrollbar-thumb { 
    display: none;
    /* width: 20%; */
   } 
   
   
 }  
