.dp-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.dp-slide {
  display: none;
  box-shadow: 0 10px 16px -4px rgba(0, 0, 0, 0.1), 0 0 6px 0 rgba(0, 0, 0, 0.08);
}
.dp-slide.is-active {
  display: block;
}
.dp-gallery-main .dp-slide img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}
@media (max-width:768px){
	.dp-gallery-main .dp-slide img {
		  height: 350px;
	}	
}
.dp-gallery-thumbs {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
@media (max-width:768px){
	.dp-gallery-thumbs {
		gap:12px;
	}
}
.dp-thumb {
  padding: 0 !important;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  background: transparent !important;
  width: 80px;
  height: 80px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
@media (max-width:768px){
	.dp-thumb {
	 width: 50px;
  height: 50px;
		}
}
.dp-thumb.is-active {
  border-color: #35f;
}
.dp-thumb:focus {
  outline: none;
  box-shadow: 0 0 0 2px #2a7de133;
  border-color: #2a7de1;
}
.dp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dp-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 3;
}

.dp-gallery-dots .dp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #f2f2f2 !important;
  padding: 0 !important;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.dp-gallery-dots .dp-dot.is-active {
  background: #35f !important;
  transform: scale(1.3);
}

.dp-gallery-dots .dp-dot:focus {
  outline: 2px solid #0035f0;
}
