.desktop-image {
  display: block;
}

.mobile-image {
  display: none;
}

@media (max-width: 768px) {
  .desktop-image,
  .samin-slider-nav {
      display: none!important;
      
  }
  .mobile-image {
      display: block!important;
  }
}

.samin-slider,
#samin-slider {
  align-items: center;
  min-height: fit-content;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.samin-slider.ready,
#samin-slider.ready {
  opacity: 1;
}

.samin-slider__slide {
  -webkit-tap-highlight-color: transparent;
  align-content: flex-start;
  display: flex;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -khtml-user-select: none;
  width: 100%;
}

.samin-slider__slide .slider-link {
  min-height: auto;
  max-height: 520px;
  aspect-ratio: 7 / 2;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.samin-slider__slide img {
  border-radius: 7px !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .samin-slider__slide .slider-link {
    max-height: 260px;
    aspect-ratio: 16 / 9;
  }
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  position: absolute;
  padding-bottom: 1rem;
align-items: center;
left: 50%;
bottom: 0;
transform: translateX(-50%);

}
.dot {
  width: 0.35rem ;
  height: 0.35rem;
  background: rgb(115 115 115);
  margin-left: 0.35rem;
  border-radius: 1px;
  border-width: 0;

  cursor: pointer;
}
.dot.active {
  background: #e5e5e572;
  border-radius: 0.125rem;
  width: 1rem;

}
.samin-slider-nav {
gap: .75rem;
cursor: pointer;
right: 6.25%;
align-items: center;
display: flex;
bottom: 1rem;
position: absolute;
z-index: 10;
}
.samin-slider-nav span {
  color: rgb(23 23 23);
  padding: 0.25rem;
  background-color: #e5e5e572;
  border-radius: 0.375rem;
  cursor: pointer;

}