.collections-detail-head {
  display: flex;
  border-radius: 10px;
  background: #F7F7F7;
  width: 100%;
  margin-bottom: 100px;
}

.collections-detail-head > div {
  width: 50%;
}

.collections-detail-head-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px;
}

.collections-detail-head-right img {
  width: 100%;
}

.collections-detail-head-right {
  position: relative;
}

.collections-detail-name {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 20px;
}

.collections-detail-text {
  font-size: 15px;
}

.collections-detail-head-right .slick-dots {
  position: absolute;
  bottom: 100px;
  right: 300px;
  background: #F7F7F7;
  border-radius: 50px;
  padding: 7px;
  bottom: 20px;
  gap: 7px;
}

.collections-detail-head-right .slick-dots li {
  height: 10px;
  display: flex;
}

.collections-detail-head-right .slick-dots li button {
  background-color: #DCDCDC;
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  border: none;
}

.collections-detail-head-right .slick-dots li.slick-active button:before {
  background: #808080;
  border-radius: 50%;
}

.collections-detail-head-right img {
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .collections-detail-head {
    flex-direction: column;
  }

  .collections-detail-head > div {
    width: 100%;
  }

  .collections-detail-head-left {
    padding: 30px;
  }

  .collections-detail-name {
    font-size: 26px;
  }

  .collections-detail-text {
    text-align: center;
  }

  .collections-detail-head-right .slick-dots {
    right: 50%;
    transform: translateX(50%);
  }

}
@media screen and (max-width: 480px) {
  .collections-detail-head-right .slick-dots {
    bottom: 10px;
  }
}